merge conflict

This commit is contained in:
MonkeyGG2 2024-02-17 17:22:21 -05:00
parent a5bc53102d
commit 9086a08555
1 changed files with 6 additions and 0 deletions

View File

@ -14,3 +14,9 @@ vga_write(s8 *sequence, s8 flags)
i++; i++;
} }
} }
void vga_clearscreen() {
for (int i = 0; i <= SIZE; i++) {
VGA_START[i] = 0;
}
}