add Pentapus to the collection

This commit is contained in:
Peter Ferrie 2020-05-08 15:00:43 -07:00
parent 9f6414659f
commit 7466c3a64e
6 changed files with 33 additions and 1 deletions

View File

@ -182,6 +182,7 @@
0000,PAC.MAN=Pac-Man
0100,PAPERBOY
1001,PENETRATOR
1001,PENTAPUS
0001,PEST.PATROL
1000,PHANTOMS.FIVE
0001,PHARAOHS.REVNG=Pharaoh's Revenge

BIN
res/TITLE.HGR/PENTAPUS Normal file

Binary file not shown.

View File

@ -167,6 +167,7 @@ OUTWORLD=Type(06),AuxType(4000),Access(C3)
PAC.MAN=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)
PEST.PATROL=Type(06),AuxType(4000),Access(C3)
PHANTOMS.FIVE=Type(06),AuxType(4000),Access(C3)
PHARAOHS.REVNG=Type(06),AuxType(4000),Access(C3)

Binary file not shown.

View File

@ -33,7 +33,6 @@ Bop N Wrestle
Congo
Frazzle
Galactic Attack
Pentapus
Rear Guard
Ski Crazed
Space Kadet

31
src/prelaunch/pentapus.a Normal file
View File

@ -0,0 +1,31 @@
;license:MIT
;(c) 2020 by qkumba
!cpu 6502
!to "build/PRELAUNCH/PENTAPUS",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
lda #<callback
sta $5412
lda #>callback
sta $5413
jmp $800 ; decompress
callback
jsr $200
+GET_MACHINE_STATUS
and #CHEATS_ENABLED
beq +
lda #$ad
sta $685F ; patch - don't increase lives
sta $8F2B ; patch - don't decrease lives
+
+DISABLE_ACCEL
jmp $800
!if * > $1C0 {
!error "code is too large, ends at ", *
}