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
|
||||
.proc ACCEL
|
||||
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
|
||||
sei
|
||||
phy
|
||||
@ -600,6 +604,6 @@ msg1 = ::amenu1
|
||||
msg2 = ::amenu2
|
||||
.endif
|
||||
.endproc ; AMENU
|
||||
; check for run into vector area
|
||||
; check for run into vector and ROM checksum area
|
||||
.assert * < $ffe0, error, "accel5x overran $ffe0"
|
||||
.endif
|
||||
|
Loading…
Reference in New Issue
Block a user