Memory heap and allocator

This commit is contained in:
2026-02-26 20:24:56 +00:00
parent c2dd9d1e89
commit 770526efae
7 changed files with 603 additions and 1 deletions

View File

@@ -3,6 +3,7 @@
#include "boot_info.h"
#include "commands.h"
#include "idt.h"
#include "memory.h"
#define SAFE_PRINT(Boot, ...) \
do { \
@@ -36,6 +37,7 @@ void kmain(BootInfo *Boot)
}
idt_init(Boot);
memory_init(Boot);
SAFE_PRINT(Boot, L"================================================\n\r");
SAFE_PRINT(Boot, L" Welcome to Simple UEFI Operating System!\n\r");