diff options
Diffstat (limited to 'kernel/kernel.c')
| -rw-r--r-- | kernel/kernel.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/kernel/kernel.c b/kernel/kernel.c index d1de73f..ae5036a 100644 --- a/kernel/kernel.c +++ b/kernel/kernel.c @@ -142,6 +142,9 @@ void kernel_main(uint32_t initial_stack, int mp) // init spinlocks init_spinlocks(); + // + //vesa_init_doublebuff(); + // // Start the other Processors (also before paging !) // @@ -165,7 +168,7 @@ void kernel_main(uint32_t initial_stack, int mp) // We are interested in the E1000 Network Adapter in particular // Its driver will be hopefully implemented one day ;) TODO // - // pci_init(); + //pci_init(); // // Initialize Floppy Disk if activated in config.h @@ -183,6 +186,8 @@ void kernel_main(uint32_t initial_stack, int mp) // shell_init(); + mouse_init(); + // // Initialize Multitasking // @@ -191,6 +196,7 @@ void kernel_main(uint32_t initial_stack, int mp) // task_init(); + // // Just hang around here, if its reached. // we do our tasks anyway. on the next clock tick. |
