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