Remove stuff that services made obsolete from Globals.h
This commit is contained in:
@ -12,12 +12,9 @@
|
|||||||
|
|
||||||
namespace Kernel {
|
namespace Kernel {
|
||||||
|
|
||||||
CGA_Stream kout; // Ausgabe-Strom fuer Kernel
|
const Device::BIOS &bios = Device::BIOS::instance();
|
||||||
const Device::BIOS &bios = Device::BIOS::instance(); // Schnittstelle zum 16-Bit BIOS
|
Device::VESA vesa;
|
||||||
Device::VESA vesa; // VESA-Treiber
|
|
||||||
|
|
||||||
Device::PIC pic; // Interrupt-Controller
|
|
||||||
IntDispatcher intdis; // Unterbrechungsverteilung
|
|
||||||
Device::PIT pit(10000); // 10000
|
Device::PIT pit(10000); // 10000
|
||||||
Device::PCSPK pcspk; // PC-Lautsprecher
|
Device::PCSPK pcspk; // PC-Lautsprecher
|
||||||
Device::Keyboard kb; // Tastatur
|
Device::Keyboard kb; // Tastatur
|
||||||
|
|||||||
@ -31,12 +31,9 @@ namespace Kernel {
|
|||||||
|
|
||||||
// I wanted to make more of these singletons but there were problems with atexit missing because of nostdlib I guess
|
// I wanted to make more of these singletons but there were problems with atexit missing because of nostdlib I guess
|
||||||
|
|
||||||
extern CGA_Stream kout; // Ausgabe-Strom fuer Kernel
|
|
||||||
extern const Device::BIOS &bios; // Schnittstelle zum 16-Bit BIOS
|
extern const Device::BIOS &bios; // Schnittstelle zum 16-Bit BIOS
|
||||||
extern Device::VESA vesa; // VESA-Treiber
|
extern Device::VESA vesa; // VESA-Treiber
|
||||||
|
|
||||||
extern Device::PIC pic; // Interrupt-Controller
|
|
||||||
extern IntDispatcher intdis; // Unterbrechungsverteilung
|
|
||||||
extern Device::PIT pit; // Zeitgeber
|
extern Device::PIT pit; // Zeitgeber
|
||||||
extern Device::PCSPK pcspk; // PC-Lautsprecher
|
extern Device::PCSPK pcspk; // PC-Lautsprecher
|
||||||
extern Device::Keyboard kb; // Tastatur
|
extern Device::Keyboard kb; // Tastatur
|
||||||
|
|||||||
Reference in New Issue
Block a user