add Battle Cruiser to the collection

This commit is contained in:
Peter Ferrie 2020-02-27 18:14:10 -08:00
parent fee336b98f
commit 223ce59388
4 changed files with 28 additions and 1 deletions

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -0,0 +1,27 @@
;license:MIT
;(c) 2020 by qkumba
!cpu 6502
!to "build/PRELAUNCH/BATTLE.CRUISER",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
lda #$60
sta $2027
jsr $2000 ; decompress
callback
+GET_MACHINE_STATUS
and #CHEATS_ENABLED
beq +
lda #$a5
sta $A22 ; patch - don't decrease lives
+
+DISABLE_ACCEL
jmp $845
!if * > $1C0 {
!error "code is too large, ends at ", *
}