start of page allocation

This commit is contained in:
Liam Kerr 2026-02-08 23:51:37 +00:00
parent a0973fe49d
commit e64cf1ef72
5 changed files with 52 additions and 1 deletions

View file

@ -3,8 +3,12 @@
#include <drivers/uart.h>
#include <syscon/syscon.h>
#include <kernel/panic.h>
#include <kernel/memory.h>
void kmain() {
kprint("Hello, OS World!\n");
kputs("Hello, OS World!");
kputs("-------------------");
knewline();
page_init();
poweroff();
}