mirror of
https://github.com/mgcaret/rom4x.git
synced 2024-12-22 03:29:18 +00:00
allow disabling accelerator menu to actually build
This commit is contained in:
parent
f489231464
commit
740044802d
@ -99,7 +99,11 @@ SWRTS2 = $C784
|
|||||||
.endif
|
.endif
|
||||||
.proc ACCEL
|
.proc ACCEL
|
||||||
bra accel1
|
bra accel1
|
||||||
jmp AMENU
|
.if ::ACCMENU
|
||||||
|
jmp AMENU ; entry point for menu
|
||||||
|
.else
|
||||||
|
rts ; otherwise return to caller if they want menu
|
||||||
|
.endif
|
||||||
accel1: php
|
accel1: php
|
||||||
sei
|
sei
|
||||||
phy
|
phy
|
||||||
@ -600,6 +604,6 @@ msg1 = ::amenu1
|
|||||||
msg2 = ::amenu2
|
msg2 = ::amenu2
|
||||||
.endif
|
.endif
|
||||||
.endproc ; AMENU
|
.endproc ; AMENU
|
||||||
; check for run into vector area
|
; check for run into vector and ROM checksum area
|
||||||
.assert * < $ffe0, error, "accel5x overran $ffe0"
|
.assert * < $ffe0, error, "accel5x overran $ffe0"
|
||||||
.endif
|
.endif
|
||||||
|
Loading…
Reference in New Issue
Block a user