add Lock 'n' Chase to the collection

This commit is contained in:
Peter Ferrie 2020-05-29 18:06:42 -07:00
parent 0bcfc06056
commit 05ed8a4bfd
5 changed files with 33 additions and 1 deletions

View File

@ -156,6 +156,7 @@
1000,LASER.BOUNCE
0001,LAZER.SILK
0000,LITTLE.COMP.PPL=Little Computer People
0001,LOCK.N.CHASE=Lock 'n' Chase
0001,LODE.RUNNER
1000,LOST.TOMB
1000,MAD.BOMBER

BIN
res/TITLE.HGR/LOCK.N.CHASE Normal file

Binary file not shown.

View File

@ -3,7 +3,6 @@ The American Challenge
C'est La Vie
Conquering Worlds
Dive Bomber
Lock 'N' Chase [priority]
Mad Rat
Marauder
MIRV

View File

@ -0,0 +1,32 @@
;license:MIT
;(c) 2020 by qkumba
!cpu 6502
!to "build/PRELAUNCH/LOCK.N.CHASE",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
lda #$60
sta $4326
sta $4345
jsr $800 ; decompress
lda #$60
sta $647B
jsr $6400
jsr $BE16
+GET_MACHINE_STATUS
and #CHEATS_ENABLED
beq +
lda #$ad
sta $11C0 ; patch - don't increase lives
sta $1595 ; patch - don't decrease lives
+
+DISABLE_ACCEL
jmp $800
!if * > $1C0 {
!error "code is too large, ends at ", *
}