kern

view src/main.c @ 1:ebe5e0e44a9d

pretty much finished the code for article 1, might do minor adjustments though
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 02 Dec 2010 08:45:41 +0200
parents 662ff2170531
children 86781ef20689
line source
1 #include <stdio.h>
2 #include "vid.h"
3 #include "term.h"
5 void kmain(void)
6 {
7 clear_scr(0);
8 set_text_color(LTRED);
9 puts("hello world!");
10 }