add Penetrator to the collection

This commit is contained in:
Peter Ferrie 2020-02-18 22:17:05 -08:00
parent 810ba4c195
commit 07d6444e72
3 changed files with 26 additions and 1 deletions

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,25 @@
;license:MIT
;(c) 2020 by qkumba
!cpu 6502
!to "build/PRELAUNCH/PENETRATOR",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
lda #$60
sta $82D
jsr $800 ; decompress
+GET_MACHINE_STATUS
and #CHEATS_ENABLED
beq +
dec $7602 ; patch - don't decrease lives
+
+DISABLE_ACCEL
jmp $6000
!if * > $1C0 {
!error "code is too large, ends at ", *
}