add Kung Fu Master to the collection

This commit is contained in:
Peter Ferrie 2020-05-05 09:25:12 -07:00
parent 1df502cede
commit e679ae834f
6 changed files with 30 additions and 1 deletions

View File

@ -134,6 +134,7 @@
1000,KARATE.CHAMP
0000,KARATEKA
0001,KID.NIKI
0001,KUNG.FU.MASTER
0000,LABYRINTH
0001,LADY.TUT
0001,LANCASTER

Binary file not shown.

View File

@ -121,6 +121,7 @@ KAMIKAZE=Type(06),AuxType(4000),Access(C3)
KARATE.CHAMP=Type(06),AuxType(4000),Access(C3)
KARATEKA=Type(06),AuxType(4000),Access(C3)
KID.NIKI=Type(06),AuxType(4000),Access(C3)
KUNG.FU.MASTER=Type(06),AuxType(4000),Access(C3)
LABYRINTH=Type(06),AuxType(4000),Access(C3)
LADY.TUT=Type(06),AuxType(4000),Access(C3)
LANCASTER=Type(06),AuxType(4000),Access(C3)

Binary file not shown.

View File

@ -7,7 +7,6 @@ Championship Wrestling
Conquering Worlds
Dive Bomber
GBA Championship Basketball
Kung Fu Master [priority]
Lock 'N' Chase
Mad Rat
Marauder

View File

@ -0,0 +1,28 @@
;license:MIT
;(c) 2020 by qkumba
!cpu 6502
!to "build/PRELAUNCH/KUNG.FU.MASTER",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
lda #$60
sta $9A0
jsr $800 ; decompress
+DISABLE_ACCEL
ldx #0
lda #$C4
jsr $BB00
+GET_MACHINE_STATUS
and #CHEATS_ENABLED
beq +
lda #$2c
sta $805D ; patch - don't decrease lives
+
jmp $9A3
!if * > $1C0 {
!error "code is too large, ends at ", *
}