add Pandora's Box to the collection

This commit is contained in:
Peter Ferrie 2020-06-01 18:13:51 -07:00
parent e8f8139747
commit b3fd361740
7 changed files with 34 additions and 2 deletions

View File

@ -198,6 +198,7 @@
0000,OUTPOST
0000,OUTWORLD
0001,PACMAN
0001,PANDORAS.BOX=Pandora's Box
0100,PAPERBOY
1001,PENETRATOR
1001,PENTAPUS

BIN
res/TITLE.HGR/PANDORAS.BOX Normal file

Binary file not shown.

View File

@ -184,6 +184,7 @@ ORILEYS.MINE=Type(06),AuxType(4000),Access(C3)
OUTPOST=Type(06),AuxType(4000),Access(C3)
OUTWORLD=Type(06),AuxType(4000),Access(C3)
PACMAN=Type(06),AuxType(4000),Access(C3)
PANDORAS.BOX=Type(06),AuxType(4000),Access(C3)
PAPERBOY=Type(06),AuxType(4000),Access(C3)
PENETRATOR=Type(06),AuxType(4000),Access(C3)
PENTAPUS=Type(06),AuxType(4000),Access(C3)

View File

@ -9,7 +9,6 @@ MIRV
The Movie Monster Game
Neutrons
Oil's Well
Pandora's Box [priority]
Pegasus ][
Roundabout [priority]
Shuttle Intercept

View File

@ -0,0 +1,31 @@
;license:MIT
;(c) 2020 by qkumba
!cpu 6502
!to "build/PRELAUNCH/PANDORAS.BOX",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
lda #$60
sta $833
sta $85A
jsr $800 ; decompress
+DISABLE_ACCEL
jsr $85D
+ENABLE_ACCEL
jsr $836
+GET_MACHINE_STATUS
and #CHEATS_ENABLED
beq +
lda #$ad
sta $158D ; patch - don't decrease lives
+
+DISABLE_ACCEL
jmp $7BC8
!if * > $1C0 {
!error "code is too large, ends at ", *
}

View File

@ -2,7 +2,7 @@
;(c) 2019 by qkumba
!cpu 6502
!to "build/PRELAUNCH/GOONIES",plain
!to "build/PRELAUNCH/THE.GOONIES",plain
*=$106
!source "src/prelaunch/common.a"