removing fluff that is not yet needed

This commit is contained in:
shockrah 2019-10-14 00:47:04 -07:00
parent d68f4b5264
commit 1b9ed26506
2 changed files with 0 additions and 24 deletions

View File

@ -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() {
}

View File

@ -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();