From 5f782ac1e975710c18de44ede18f9262391aeba2 Mon Sep 17 00:00:00 2001 From: UzixLS Date: Thu, 24 Jun 2021 13:35:15 +0300 Subject: [PATCH] magic rom: draw boxes after initing cpld at boot --- rom_src/main.asm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rom_src/main.asm b/rom_src/main.asm index b0c4065..6370d8f 100644 --- a/rom_src/main.asm +++ b/rom_src/main.asm @@ -34,10 +34,10 @@ startup_handler: ld ix, #5800 ; draw 4 rygb boxes on left top corner to indicate boot ld (ix+0), #D2 ; r ld (ix+1), #F6 ; y - ld (ix+2), #E4 ; g - ld (ix+3), #C9 ; b call init_config call init_cpld + ld (ix+2), #E4 ; g + ld (ix+3), #C9 ; b ld hl, 0 jp exit_with_jp