Clear the screen before doing anything.
This commit is contained in:
parent
60516831b9
commit
afa902d390
6
boot.c
6
boot.c
@ -25,6 +25,12 @@ void _start(void) {
|
|||||||
"ljmp $(0),$(start)\n"
|
"ljmp $(0),$(start)\n"
|
||||||
"start:\n"
|
"start:\n"
|
||||||
);
|
);
|
||||||
|
__asm__ volatile (
|
||||||
|
"int $0x10"
|
||||||
|
:
|
||||||
|
: "a" ((unsigned short)0x0003)
|
||||||
|
: "cc", "memory"
|
||||||
|
);
|
||||||
Cell cur = CROSS;
|
Cell cur = CROSS;
|
||||||
for (uchar i = 0; i < 9; i++)
|
for (uchar i = 0; i < 9; i++)
|
||||||
board[i] = NONE;
|
board[i] = NONE;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user