X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=3sys;a=blobdiff_plain;f=sys1%2Fkern%2Fsrc%2Fvga.h;fp=sys1%2Fkern%2Fsrc%2Fvga.h;h=e8be27aa9cfebf7b4c481bb29eda51a580284a62;hp=19571f34c225baa5e0e235aad6753fe870f95e3c;hb=d49aa763f9b7c4ae66cf80f0cbfc3456789fc0ac;hpb=3e2e8a9156d288d230bbcd722bc91c4b3e4b21e1 diff --git a/sys1/kern/src/vga.h b/sys1/kern/src/vga.h index 19571f3..e8be27a 100644 --- a/sys1/kern/src/vga.h +++ b/sys1/kern/src/vga.h @@ -11,9 +11,14 @@ enum { VGA_YELLOW, VGA_WHITE }; -#define VGA_BRIGHT 0x80 +#define VGA_BRIGHT 8 void vga_setcolor(int fg, int bg); void vga_setcursor(int x, int y); +void vga_setstart(int start); + +void vga_reset(void); + +void vga_drawchar(int x, int y, int c); #endif /* VGA_H_ */