compile time tseting flags available in kernel_main

This commit is contained in:
shockrah 2020-05-02 20:43:50 -07:00
parent 6062641ec1
commit 814f361e8b

View File

@ -6,15 +6,21 @@
#include "kbd.h"
#include "stlio.h"
#include "mem.h"
#ifdef TESTING
#include "tests.h"
#include "shell.h"
#endif
#include "jank-shell/shell.h"
void kinit() {
//gdt_configure();
init_idt();
pit_install_timer();
kbd_install_keyboard();
#ifdef TESTING
test_dispatcher();
#endif
}