Compare commits

...

1 Commits

Author SHA1 Message Date
Wayne Warthen
0efd08539e Fix Interrupt Management in CBIOS Initialization
There was a path through CBIOS initialization where interrupts were left disabled.  This only became apparent in the new "romless" configuration.
2022-03-23 14:52:49 -07:00
3 changed files with 3 additions and 3 deletions

View File

@@ -2055,7 +2055,7 @@ INIT:
.DB "\r\nStarting INIT....$"
#ENDIF
;
DI ; NO INTERRUPTS FOR NOW
;DI ; NO INTERRUPTS FOR NOW
; ADJUST BOOT VECTOR TO REBOOT ROUTINE
LD HL,REBOOT ; GET REBOOT ADDRESS

View File

@@ -2,4 +2,4 @@
#DEFINE RMN 1
#DEFINE RUP 1
#DEFINE RTP 0
#DEFINE BIOSVER "3.1.1-pre.162"
#DEFINE BIOSVER "3.1.1-pre.163"

View File

@@ -3,5 +3,5 @@ rmn equ 1
rup equ 1
rtp equ 0
biosver macro
db "3.1.1-pre.162"
db "3.1.1-pre.163"
endm