fixed kernel.c not being recognised

This commit is contained in:
Chris
2026-04-10 14:06:55 +00:00
parent c6cf1808ad
commit f088e3a4b9
3 changed files with 68 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
#include <stdint.h>
void kernel_main(void) {
for (;;) {
__asm__ volatile ("hlt");
}
}