os/vga_drv/main.c

10 lines
165 B
C
Raw Normal View History

2019-08-31 11:04:30 -05:00
#include <grub/text_fb_info.h>
2019-08-31 10:49:52 -05:00
int main() {
2019-08-31 11:04:30 -05:00
text_fb_info info;
info.address=map_phys((void*)0xB8000,10);
info.width=80;
info.height=25;
vga_init(info);
2019-08-31 10:49:52 -05:00
}