diff --git a/kernel.c b/kernel.c deleted file mode 100644 index 94046ce..0000000 --- a/kernel.c +++ /dev/null @@ -1,16 +0,0 @@ -#include "kernel.h" -#include "types.h" -#include "gdt.h" -#include "idt.h" - -GDT GDT_PTR; -GDT _GDT[6]; // because there are only 6 segments we care about - -u32 kinit() { - init_segment_selectors(); // found in gdt.s -} - -// called by the loader to do lots of fun things -void kmain() { -} - diff --git a/kernel.h b/kernel.h deleted file mode 100644 index bf7a4ff..0000000 --- a/kernel.h +++ /dev/null @@ -1,8 +0,0 @@ -#include "types.h" -#include "interrupts.h" - - -// handles the main initialization things for the main kernel routine later on -u32 kinit(); - -void kmain();