jankos/kernel.c
2019-10-30 18:40:07 -07:00

19 lines
251 B
C

#include "kernel.h"
#include "types.h"
#include "tests.h"
#include "interrupts.h"
#include "stlio.h"
#include "gdt.h"
void kinit() {
gdt_configure();
init_idt();
test_dispatcher();
}
void kmain() {
kinit();
for(;;); // the most amazing loop
}