acadia/zion/zion.cpp
Drew Galbraith 03fe4d8c2e Load our own GDT.
Replace the GDT from limine with our own.
2023-05-17 21:41:08 -07:00

13 lines
183 B
C++

#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)
;
}