From 52f3e224fb4d3e05202134f7747fdee00a03ed61 Mon Sep 17 00:00:00 2001 From: Michal Idziorek Date: Mon, 8 Sep 2014 18:36:27 +0200 Subject: started with mouse driver and double buffer --- kernel/kernel.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'kernel/kernel.c') 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. -- cgit v1.2.3