diff --git a/kernel.c b/kernel.c index 04071fd..c36ffec 100644 --- a/kernel.c +++ b/kernel.c @@ -6,15 +6,21 @@ #include "kbd.h" #include "stlio.h" #include "mem.h" -#include "tests.h" -#include "shell.h" + +#ifdef TESTING + #include "tests.h" +#endif + +#include "jank-shell/shell.h" void kinit() { //gdt_configure(); init_idt(); pit_install_timer(); kbd_install_keyboard(); +#ifdef TESTING test_dispatcher(); +#endif }