SquidgeOS/src/kernel/kernel.c

15 lines
278 B
C
Raw Normal View History

2026-02-08 21:23:47 +00:00
#include <stdint.h>
#include <stddef.h>
#include <drivers/uart.h>
#include <syscon/syscon.h>
2026-02-08 22:41:38 +00:00
#include <kernel/panic.h>
2026-02-08 23:51:37 +00:00
#include <kernel/memory.h>
2026-02-08 21:23:47 +00:00
void kmain() {
2026-02-08 23:51:37 +00:00
kputs("Hello, OS World!");
kputs("-------------------");
knewline();
page_init();
poweroff();
2026-02-08 21:23:47 +00:00
}