From 365455a76706a779e995d59ef3b33b183d0e8169 Mon Sep 17 00:00:00 2001 From: Ry Date: Thu, 30 Mar 2023 16:23:18 -0700 Subject: [PATCH] Initialize the monitor X and Y coords on startup --- main.asm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.asm b/main.asm index 3d0d180..5617757 100644 --- a/main.asm +++ b/main.asm @@ -59,6 +59,10 @@ entry_seed_done: ; ensure the event queue gets initialized properly mov [EVENT_QUEUE_POINTER], 0 + ; initialize the monitor X and Y coordinates + mov.8 [MONITOR_CONSOLE_X], 0 + mov.8 [MONITOR_CONSOLE_Y], 28 + ; enable interrupts ise