summaryrefslogtreecommitdiff
path: root/kernel/kernel.c
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2014-09-08 18:36:27 +0200
committerMichal Idziorek <m.i@gmx.at>2014-09-08 18:36:27 +0200
commit52f3e224fb4d3e05202134f7747fdee00a03ed61 (patch)
tree1af9c1fd2d61e628ac2f25f6fb4025890337ef16 /kernel/kernel.c
parent907ddb48aa8896fc9564990484d562a328c9215f (diff)
started with mouse driver and double buffer
Diffstat (limited to 'kernel/kernel.c')
-rw-r--r--kernel/kernel.c8
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.