add Jawbreaker ][ to the collection

This commit is contained in:
Peter Ferrie 2020-04-06 10:31:35 -07:00
parent 35c378e609
commit 7458935f1a
6 changed files with 34 additions and 1 deletions

View File

@ -114,6 +114,7 @@
1000,INTL.GRAN.PRIX=International Gran Prix
0111,EAGLES.NEST=Into the Eagle's Nest
0000,I.O.SILVER=I.O. Silver
0001,JAWBREAKER.II=Jawbreaker ][
0001,JOUST
0000,JUGGLER
0001,JUMPMAN

BIN
res/TITLE.HGR/JAWBREAKER.II Normal file

Binary file not shown.

View File

@ -104,6 +104,7 @@ I.O.SILVER=Type(06),AuxType(4000),Access(C3)
IKARI.WARRIORS=Type(06),AuxType(4000),Access(C3)
IMPOSSIBLE.MISS=Type(06),AuxType(4000),Access(C3)
INTL.GRAN.PRIX=Type(06),AuxType(4000),Access(C3)
JAWBREAKER.II=Type(06),AuxType(4000),Access(C3)
JOUST=Type(06),AuxType(4000),Access(C3)
JUGGLER=Type(06),AuxType(4000),Access(C3)
JUMPMAN=Type(06),AuxType(4000),Access(C3)

Binary file not shown.

View File

@ -54,7 +54,6 @@ Space Cadette
//qkumba crack
Bandits
Jawbreaker ][ [priority]
//other
Battle Chess [DHGR]

View File

@ -0,0 +1,32 @@
;license:MIT
;(c) 2020 by qkumba
!cpu 6502
!to "build/PRELAUNCH/JAWBREAKER.II",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
lda #$60
sta $85B
jsr $800 ; decompress
+GET_MACHINE_STATUS
and #CHEATS_ENABLED
beq +
lda #<callback
sta $35C
lda #>callback
sta $35D
+
+DISABLE_ACCEL
jmp $301
callback
ldx #$a5
stx $110c ; patch - don't decrease lives
jmp $BD00
!if * > $1C0 {
!error "code is too large, ends at ", *
}