Deleted several unused modules and some commented code Reorganized some routines to clean up modules Moved some memory into mirrored WRAM Refactored NMI hook aux routine Removed old fake flipper fix
48 lines
1.4 KiB
NASM
48 lines
1.4 KiB
NASM
;================================================================================
|
|
; Frame Hook
|
|
;--------------------------------------------------------------------------------
|
|
FrameHookAction:
|
|
JSL $0080B5 ; Module_MainRouting
|
|
JSL CheckMusicLoadRequest
|
|
PHP : REP #$30 : PHA
|
|
|
|
SEP #$20
|
|
|
|
LDA.l StatsLocked : BNE ++
|
|
REP #$20 ; set 16-bit accumulator
|
|
LDA.l LoopFrames : INC : STA.l LoopFrames : BNE +
|
|
LDA.l LoopFrames+2 : INC : STA.l LoopFrames+2
|
|
+
|
|
LDA.l $10 : CMP.w #$010E : BNE + ; move this to nmi hook?
|
|
LDA.l MenuFrames : INC : STA.l MenuFrames : BNE +
|
|
LDA.l MenuFrames+2 : INC : STA.l MenuFrames+2
|
|
+
|
|
++
|
|
REP #$30 : PLA : PLP
|
|
RTL
|
|
;--------------------------------------------------------------------------------
|
|
NMIHookAction:
|
|
PHA : PHX : PHY : PHD ; thing we wrote over, push stuff
|
|
|
|
LDA.l StatsLocked : AND.w #$00FF : BNE ++
|
|
LDA.l NMIFrames : INC : STA.l NMIFrames : BNE +
|
|
LDA.l NMIFrames+2 : INC : STA.l NMIFrames+2
|
|
+
|
|
++
|
|
|
|
JML.l NMIHookReturn
|
|
;--------------------------------------------------------------------------------
|
|
PostNMIHookAction:
|
|
LDA.w NMIAux : BEQ +
|
|
|
|
PHK : PEA .return-1 ; push stack for RTL return
|
|
JMP.w [NMIAux]
|
|
|
|
.return
|
|
STZ.w NMIAux ; zero bank byte of NMI hook pointer
|
|
+
|
|
|
|
LDA.b $13 : STA.w INIDISP ; thing we wrote over, turn screen back on
|
|
JML.l PostNMIHookReturn
|
|
;--------------------------------------------------------------------------------
|