diff --git a/kernel.c b/kernel.c index 9eee839..7990802 100644 --- a/kernel.c +++ b/kernel.c @@ -5,11 +5,13 @@ #include "pit.h" #include "stlio.h" #include "gdt.h" +#include "kbd.h" void kinit() { //gdt_configure(); init_idt(); pit_install_timer(); + //kbd_install_keyboard(); test_dispatcher(); } @@ -17,5 +19,5 @@ void kinit() { // Should kmain return, we fall back to the loader which then just keeps in a hung state void kmain() { kinit(); - timer_wait(50); // in ms + pit_timer_wait(50); // in ms }