mirror of
https://github.com/a2-4am/4cade.git
synced 2024-12-26 04:33:10 +00:00
add Super Bunny to the collection
This commit is contained in:
parent
9c56c3f943
commit
87f8c26ffa
@ -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
BIN
res/TITLE.HGR/SUPER.BUNNY
Normal file
Binary file not shown.
@ -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)
|
||||
|
BIN
res/dsk/super bunny PRODOS (san inc pack).po
Normal file
BIN
res/dsk/super bunny PRODOS (san inc pack).po
Normal file
Binary file not shown.
@ -26,7 +26,6 @@ Run For It
|
||||
Shanghai
|
||||
Shifty Sam
|
||||
Shuttle Intercept
|
||||
Super Bunny [priority]
|
||||
Super Huey
|
||||
Super Taxman II
|
||||
Tharolian Tunnels
|
||||
|
39
src/prelaunch/super.bunny.a
Normal file
39
src/prelaunch/super.bunny.a
Normal 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 ", *
|
||||
}
|
Loading…
Reference in New Issue
Block a user