From 3c8062ef17fa4134f6f163d98f97d48d60daa51f Mon Sep 17 00:00:00 2001 From: shockrahwow Date: Fri, 29 Nov 2019 13:08:26 -0800 Subject: [PATCH] renamed timer call --- kernel.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 }