os/prog/main.c

13 lines
229 B
C
Raw Normal View History

2019-05-01 09:39:23 -05:00
#include "../libc/string.h"
2019-05-03 08:34:22 -05:00
#include <grub/text_fb_info.h>
2019-05-01 09:39:23 -05:00
2019-05-01 11:55:54 -05:00
int main() {
2019-05-03 08:34:22 -05:00
text_fb_info info;
info.address=(char*)0xC00B8000;
info.width=80;
info.height=25;
vga_init(info);
vga_write_string("INIT VGA\n");
2019-05-01 19:42:46 -05:00
for (;;);
2019-03-17 18:04:50 -05:00
}