omos-tcnj2024/sys/drv/vga/video.c

12 lines
191 B
C
Raw Normal View History

2024-02-17 21:06:14 +01:00
#define VGA_START 0xB8000
#define SIZE 4000
2024-02-17 20:34:30 +01:00
2024-02-17 21:06:14 +01:00
void vga_write(char*, char, short) {
2024-02-17 21:18:12 +01:00
2024-02-17 21:06:14 +01:00
}
void vga_clearscreen() {
2024-02-17 21:18:12 +01:00
for (int i = 0; i <= SIZE; i++) {
VGA_START[i] = 0;
}
2024-02-17 21:06:14 +01:00
}