Files
blankos/kmain.c
2024-05-22 11:54:59 +02:00

15 lines
224 B
C

#include "stdio.h"
#include "serial.h"
int kmain(int retvalue)
{
init_serial();
log("serial connection established", 3);
log("Kernel started", 2);
clear();
puts("hello\nbrave\nnew\nworld");
return retvalue;
}