Files
OS/kernel.c
2025-03-21 19:55:17 -07:00

12 lines
322 B
C

/* kernel.c */
#include "multiboot.h"
// Define the kernel entry point. It must be declared extern "C" if you use C++.
void kmain(void) {
// Your kernel initialization and code here.
// For example, a simple infinite loop.
while (1) {
// Optionally, add code to print something to the screen.
}
}