add Dino Smurf to the collection

This commit is contained in:
Peter Ferrie 2020-04-02 14:15:37 -07:00
parent 2af1a0a076
commit 1f7c227e4e
6 changed files with 26 additions and 1 deletions

View File

@ -68,6 +68,7 @@
0001,DIAMOND.MINE
0001,DIG.DUG
1001,DINO.EGGS
1001,DINO.SMURF
1001,DONKEY.KONG
1001,DRELBS
0001,DROL

BIN
res/TITLE.HGR/DINO.SMURF Normal file

Binary file not shown.

View File

@ -61,6 +61,7 @@ DEFENDER=Type(06),AuxType(4000),Access(C3)
DIAMOND.MINE=Type(06),AuxType(4000),Access(C3)
DIG.DUG=Type(06),AuxType(4000),Access(C3)
DINO.EGGS=Type(06),AuxType(4000),Access(C3)
DINO.SMURF=Type(06),AuxType(4000),Access(C3)
DONKEY.KONG=Type(06),AuxType(4000),Access(C3)
DRELBS=Type(06),AuxType(4000),Access(C3)
DROL=Type(06),AuxType(4000),Access(C3)

Binary file not shown.

View File

@ -60,7 +60,6 @@ Jawbreaker ][ [priority]
//other
Battle Chess [DHGR]
Dino Smurf [priority]
//TODO(woz-imaged but uncracked)
Alien Lander

View File

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