add Super Bunny to the collection

This commit is contained in:
Peter Ferrie 2020-04-29 22:29:16 -07:00
parent 9c56c3f943
commit 87f8c26ffa
6 changed files with 41 additions and 1 deletions

View File

@ -240,6 +240,7 @@
0000,SUICIDE=Suicide!
0000,SUMMER.GAMES
0000,SUMMER.GAMES.II=Summer Games II
0001,SUPER.BUNNY
1001,SUPER.ZAXXON
0000,SWASHBUCKLER
0000,TAG.TEAM=Tag Team Wrestling

BIN
res/TITLE.HGR/SUPER.BUNNY Normal file

Binary file not shown.

View File

@ -214,6 +214,7 @@ SUCCESSION=Type(06),AuxType(4000),Access(C3)
SUICIDE=Type(06),AuxType(4000),Access(C3)
SUMMER.GAMES=Type(06),AuxType(4000),Access(C3)
SUMMER.GAMES.II=Type(06),AuxType(4000),Access(C3)
SUPER.BUNNY=Type(06),AuxType(4000),Access(C3)
SUPER.ZAXXON=Type(06),AuxType(4000),Access(C3)
SWASHBUCKLER=Type(06),AuxType(4000),Access(C3)
TAG.TEAM=Type(06),AuxType(4000),Access(C3)

Binary file not shown.

View File

@ -26,7 +26,6 @@ Run For It
Shanghai
Shifty Sam
Shuttle Intercept
Super Bunny [priority]
Super Huey
Super Taxman II
Tharolian Tunnels

View File

@ -0,0 +1,39 @@
;license:MIT
;(c) 2020 by qkumba
!cpu 6502
!to "build/PRELAUNCH/SUPER.BUNNY",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
lda #$60
sta $A32
jsr $800 ; load DOS
+GET_MACHINE_STATUS
and #CHEATS_ENABLED
beq +
lda #<callback
sta $BD26
lda #>callback
sta $BD27
+
+DISABLE_ACCEL
jmp $B700
callback
jsr $BE07
lda $B7EC
cmp #$14
bne +
lda $B7ED
cmp #$06
bne +
lda #$AD
sta $BB01 ; patch - don't decrease lives
+ rts
!if * > $1C0 {
!error "code is too large, ends at ", *
}