Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- +----------------------------------------------------------+
- | +------------------------------------------------------+ |
- | | Quafios Kernel 1.0.1. | |
- | | -> IBM PC Host Machine Device Driver. | |
- | +------------------------------------------------------+ |
- +----------------------------------------------------------+
- */
- // This file is part of Quafios 1.0.1 source code.
- // Copyright (C) 2012 Mostafa Abd El-Aziz Mohamed.
- // This program is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- // You should have received a copy of the GNU General Public License
- // along with Quafios. If not, see <http://www.gnu.org/licenses/>.
- // Visit http://www.quafios.com/ for contact information.
- /*
- * IBM Personal Computer/AT Compatibles.
- * --------------------------------------
- * kernel/machine/ibmpc.c
- * This "host machine" driver is responsible for running IBM PC
- * compatible computers. This driver creates the host bus on boot,
- * enables PCI bus (kernel/drivers/pci) support to the system,
- * which is supplied with most modern IBM PC Compatible systems.
- * It also installs the main chip drivers that come with most IBM
- * PC-Compatible, like the i8042 chip (kernel/drivers/ps2/i8042.c)
- * and Intel's 8259A interrupt controller (kernel/drivers/pic/8259A.c).
- * On the other hand, The driver enables support for "system console"
- * during boot, allowing the kernel to print status messages to the
- * system console of the PC, until the actual video drivers are loaded.
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement