Syncboot/kernel/kernel.c

20 lines
344 B
C
Executable File

//#include <stdio.h>
#include "kernel/tty.h"
int kernel_main(void) {
//Prepare the screen, and blank it out.
screen_initialize();
//Print a copyright message.
puts("(c)");
term_setcolor(GREEN);
puts(" Project");
term_setcolor(RED);
puts("RED");
term_setcolor(WHITE);
puts(", 2019\n");
for(;;) {}
return 0;
}