SquidgeOS/src/kernel/kernel.c

11 lines
187 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 21:23:47 +00:00
void kmain() {
kprint("Hello, OS World!\n");
poweroff();
2026-02-08 21:23:47 +00:00
}