From afa902d390a51cc8e04647c1a11e42a79a956a02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?b=CA=B0edoh=E2=82=82=20sw=C3=A9?= Date: Sat, 26 Jul 2025 18:45:10 +0500 Subject: [PATCH] Clear the screen before doing anything. --- boot.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/boot.c b/boot.c index f2d7ec3..d824e3f 100644 --- a/boot.c +++ b/boot.c @@ -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;