Chroma/chroma/kernel.c
Curle 822cfc4b9e Complete overhaul of the Legacy system.
Now with reasonable architecture, plus added x86_64.
2020-02-06 20:20:58 +00:00

21 lines
262 B
C

#include <kernel/chroma.h>
void _start(void) {
SerialPrintf("\r\nBooting Chroma..\r\n");
InitPrint();
SetupInitialGDT();
SetupIDT();
InitInterrupts();
InitMemoryManager();
MemoryTest();
InitPaging();
for(;;) { }
}