wip: dtb:

This commit is contained in:
karina
2026-04-25 14:21:32 +04:00
parent 8ede78359d
commit 7d68e78cb2
4 changed files with 70 additions and 3 deletions
+4 -3
View File
@@ -1,7 +1,8 @@
#include <OS/Log.h>
#include "../Common/bootinfo.h"
#include <Arch/DTB.h>
#include <OS/Log.h>
void KernelMain(Bootinfo* bootinfo) {
OSLog("DTB located at 0x%x\n", bootinfo->dtb);
OSLog("Kernel located at 0x%x\n", bootinfo->kernelInfo.kernelAddress);
OSLog("Kernel started.\n");
DTBParse(bootinfo->dtb);
}