16 lines
201 B
C++
16 lines
201 B
C++
#include <kernel/drivers/terminal/terminal.h>
|
|
|
|
extern "C"
|
|
|
|
int kernel_main() {
|
|
|
|
cls();
|
|
showCursor();
|
|
|
|
writeln("Okay, this is pretty epic");
|
|
|
|
for (;;)
|
|
asm("hlt");
|
|
|
|
}
|