initial commit
This commit is contained in:
11
kernel.c
Normal file
11
kernel.c
Normal 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.
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user