Clear the screen before doing anything.

This commit is contained in:
bʰedoh₂ swé 2025-07-26 18:45:10 +05:00
parent 60516831b9
commit afa902d390

6
boot.c
View File

@ -25,6 +25,12 @@ void _start(void) {
"ljmp $(0),$(start)\n"
"start:\n"
);
__asm__ volatile (
"int $0x10"
:
: "a" ((unsigned short)0x0003)
: "cc", "memory"
);
Cell cur = CROSS;
for (uchar i = 0; i < 9; i++)
board[i] = NONE;