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