From bb93010716f5f4889996a00b2565ce24037d52a2 Mon Sep 17 00:00:00 2001 From: Wayne Warthen Date: Wed, 19 Nov 2025 13:44:18 -0800 Subject: [PATCH] Fix RomLdr "O" Option Return, Issue #630 - Removed interrupts disable prior to invoking hardware monitor from RomLdr. Co-Authored-By: HubertH <51236138+hubertushirsch@users.noreply.github.com> --- Source/HBIOS/romldr.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/HBIOS/romldr.asm b/Source/HBIOS/romldr.asm index 5fd3f908..a8560235 100644 --- a/Source/HBIOS/romldr.asm +++ b/Source/HBIOS/romldr.asm @@ -1732,7 +1732,7 @@ hwmon: ;;;hwmon1: ; Launch Hardware Monitor from ROM Bank 3 call ldelay ; wait for UART buf to empty - di ; suspend interrupts + ;;;di ; suspend interrupts ld a,HWMON_BNK + BID_IMG0 ; hardware monitor bank offset by start of ROM APP banks ld ix,HWMON_IMGLOC ; execution resumes here jp HB_BNKCALL ; do it