Load our own GDT.

Replace the GDT from limine with our own.
This commit is contained in:
Drew Galbraith 2023-05-17 21:41:08 -07:00
parent 872e6f3392
commit 03fe4d8c2e
6 changed files with 119 additions and 10 deletions

View file

@ -1,9 +1,12 @@
#include <stdint.h>
#include "common/gdt.h"
#include "debug/debug.h"
extern "C" void zion() {
dbgln("Hello World!");
InitGdt();
dbgln("New GDT Loaded!");
while (1)
;