kern

view src/main.c @ 0:662ff2170531

starting the kernel
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 01 Dec 2010 22:02:42 +0200
parents
children ebe5e0e44a9d
line source
1 /*#include <stdio.h>*/
2 #include "vid.h"
4 void kmain(void)
5 {
6 clear_scr();
7 put_char('a', 0, 0, 4, 0);
8 put_char('b', 40, 12, 1, 7);
9 /*printf("Hello world from kernel space\n");*/
10 }