mirror of
https://github.com/a2-4am/4cade.git
synced 2024-12-23 16:29:34 +00:00
add Pentapus to the collection
This commit is contained in:
parent
9f6414659f
commit
7466c3a64e
@ -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
BIN
res/TITLE.HGR/PENTAPUS
Normal file
Binary file not shown.
@ -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)
|
||||
|
BIN
res/dsk/pentapus 22k file PRODOS (san inc pack).po
Normal file
BIN
res/dsk/pentapus 22k file PRODOS (san inc pack).po
Normal file
Binary file not shown.
@ -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
31
src/prelaunch/pentapus.a
Normal 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 ", *
|
||||
}
|
Loading…
Reference in New Issue
Block a user