add Deathbounce to the collection

This commit is contained in:
Peter Ferrie 2025-01-14 07:50:04 -08:00
parent b276ddef41
commit 640863c3ec
9 changed files with 31 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -155,6 +155,7 @@
000100,DU=Darkstar Unhinged
100001,DM=David's Midnight Magic
000011,DAWN.TREADER=Dawn Treader
000100,DEATHBOUNCE=Deathbounce
011001,DEATH.SWORD=Death Sword
100001,DEEP.SPACE=Deep Space
100111,DEFENDER=Defender

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -0,0 +1,28 @@
;license:MIT
;(c) 2025 by qkumba
!cpu 6502
!to "build/PRELAUNCH.INDEXED/DEATHBOUNCE",plain
*=$106
!source "src/macros.a"
+ENABLE_ACCEL
lda #$60
sta $949
jsr $900 ; decompress
+READ_RAM2_NO_WRITE
lda MachineStatus
and #CHEATS_ENABLED
beq +
lda #0
sta $6F44 ; don't decrease lives
+
jsr DisableAccelerator
jsr HideLaunchArtwork
+READ_ROM_NO_WRITE
jmp $7A42
!if * > HideLaunchArtwork {
!error "code is too large, ends at ", *
}