add Pharoah's Revenge to the collection

This commit is contained in:
Peter Ferrie 2020-05-07 12:00:57 -07:00
parent 1f188ae63b
commit cd1649d4bd
6 changed files with 34 additions and 1 deletions

View File

@ -181,6 +181,7 @@
1001,PENETRATOR
0001,PEST.PATROL
1000,PHANTOMS.FIVE
0001,PHAROAHS.REVNG=Pharoah's Revenge
0000,PHASER.FIRE
0000,PHOTAR
0000,PICNIC.PARANOIA

Binary file not shown.

View File

@ -165,6 +165,7 @@ PAPERBOY=Type(06),AuxType(4000),Access(C3)
PENETRATOR=Type(06),AuxType(4000),Access(C3)
PEST.PATROL=Type(06),AuxType(4000),Access(C3)
PHANTOMS.FIVE=Type(06),AuxType(4000),Access(C3)
PHAROAHS.REVNG=Type(06),AuxType(4000),Access(C3)
PHASER.FIRE=Type(06),AuxType(4000),Access(C3)
PHOTAR=Type(06),AuxType(4000),Access(C3)
PICNIC.PARANOIA=Type(06),AuxType(4000),Access(C3)

Binary file not shown.

View File

@ -50,7 +50,6 @@ Jawbreaker
Lemmings
Lunar Leepers
Peeping Tom
Pharoah's Revenge [priority]
Pulsar II
Realm of Impossibility [priority]
Retro-Ball

View File

@ -0,0 +1,32 @@
;license:MIT
;(c) 2020 by qkumba
!cpu 6502
!to "build/PRELAUNCH/PHAROAHS.REVNG",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
lda #$60
sta $3D61
jsr $3AFE ; decompress
lda MachineStatus
and #CHEATS_ENABLED
php
jsr DisableAccelerator
lda #$60
sta $85F
jsr $862
jsr $844
plp
beq +
lda #$a5
sta $CF7 ; patch - don't decrease lives
+
jmp $A00
!if * > $1C0 {
!error "code is too large, ends at ", *
}