12 lines
322 B
C
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.
|
|
}
|
|
}
|