replace Cubit with alt. version

This commit is contained in:
Peter Ferrie 2021-08-02 11:06:19 -07:00
parent 741f267882
commit ee01085a42
3 changed files with 8 additions and 6 deletions

Binary file not shown.

View File

@ -1,5 +1,5 @@
;license:MIT ;license:MIT
;(c) 2019 by 4am/Frank M. ;(c) 2021 by qkumba
!cpu 6502 !cpu 6502
!to "build/PRELAUNCH/CUBIT",plain !to "build/PRELAUNCH/CUBIT",plain
@ -9,17 +9,19 @@
+ENABLE_ACCEL +ENABLE_ACCEL
lda #$60 lda #$60
sta $0818 sta $0813
jsr $0800 ; decompress jsr $0800 ; decompress
+GET_MACHINE_STATUS +GET_MACHINE_STATUS
and #CHEATS_ENABLED and #CHEATS_ENABLED
beq + beq +
lda #$AD lda #$AD
sta $4292 ; patch - don't decrease lives sta $428C ; patch - don't decrease lives
sta $7C1F ; patch - don't increase lives sta $7B73 ; patch - don't increase lives
+ +
lda #1 ldx #0
sta $406F ; reset vector patch stx $4064
inx
stx $4069 ; reset vector patch
+DISABLE_ACCEL +DISABLE_ACCEL
jmp $4000 jmp $4000