main kernel startup, libc, console tty, asmops, build flags fixes
[bootcensus] / src / kmain.c
1 #include <stdio.h>
2 #include "contty.h"
3
4 static int foo = 42;
5
6 void pcboot_main(void)
7 {
8         con_init();
9
10         printf("hello world: %d\n", foo);
11 }