This commit is contained in:
Adrien Bourmault 2019-03-18 21:14:09 +01:00
parent f9878932a6
commit 672427f310
1 changed files with 5 additions and 1 deletions

View File

@ -38,11 +38,15 @@ noreturn void StartKern(multiboot_info_t *mbInfo, int mbMagic)
// Kernel terminals
InitTerms();
//Hello world because why not
KernLog("%c%c%c OS/K\n\n", 219, 219, 219);
KernLog("[Init] We have magic : %x\n", mbMagic);
//Memory mapping
InitMemoryMap(mbInfo);
// We're out
KernLog("Yup, we have magic : %x", mbMagic);
KernLog("\n[Init] Evil never dies");
CrashSystem(); //yay
}