fix: preserve bootinfo pointer in kernel _start
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
#include <OS/Log.h>
|
||||
#include "../Common/bootinfo.h"
|
||||
|
||||
void KernelMain(void) {
|
||||
OSLog("Hi meow! ;3\n");
|
||||
void KernelMain(Bootinfo* bootinfo) {
|
||||
OSLog("DTB located at 0x%x\n", bootinfo->dtb);
|
||||
OSLog("Kernel located at 0x%x\n", bootinfo->kernelInfo.kernelAddress);
|
||||
}
|
||||
Reference in New Issue
Block a user