tianole/kernel/main.c
Microindole e3782144b8
refactor(build): split makefiles and normalize internal API names
- align makefile layout with Linux-style directories
2026-05-08 21:00:24 +08:00

13 lines
239 B
C

#include "tianole/early_log.h"
#include "tianole/kernel_init.h"
void kernel_main(const boot_info_t *boot_info)
{
early_log_puts("kernel_main entered\n");
kernel_report_boot_state(boot_info);
for (;;) {
__asm__ volatile("hlt");
}
}