vga_clearscreen

This commit is contained in:
MonkeyGG2 2024-02-17 15:18:12 -05:00
parent a127d78ce9
commit 55f0657bdd
1 changed files with 4 additions and 2 deletions

View File

@ -6,5 +6,7 @@ void vga_write(char*, char, short) {
}
void vga_clearscreen() {
for (int i = 0; i <= SIZE; i++) {
VGA_START[i] = 0;
}
}