initial commit

This commit is contained in:
2025-03-21 19:55:17 -07:00
commit 92049a5736
15 changed files with 96 additions and 0 deletions

11
kernel.c Normal file
View File

@@ -0,0 +1,11 @@
/* 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.
}
}