add Neptune to the collection

This commit is contained in:
Peter Ferrie 2020-05-08 15:52:21 -07:00
parent 7466c3a64e
commit eaff1a0209
5 changed files with 29 additions and 0 deletions

View File

@ -168,6 +168,7 @@
1001,MR.DO=Mr. Do!
1001,MR.ROBOT=Mr. Robot
0001,MS.PACMAN=Ms. Pacman
1001,NEPTUNE
0000,NIBBLER
0005,NIGHT.MISSION=Night Mission Pinball
0000,NIGHT.STALKER

BIN
res/TITLE.HGR/NEPTUNE Normal file

Binary file not shown.

View File

@ -154,6 +154,7 @@ MR.DO=Type(06),AuxType(4000),Access(C3)
MR.ROBOT=Type(06),AuxType(4000),Access(C3)
MS.PACMAN=Type(06),AuxType(4000),Access(C3)
N.O.R.A.D=Type(06),AuxType(4000),Access(C3)
NEPTUNE=Type(06),AuxType(4000),Access(C3)
NIBBLER=Type(06),AuxType(4000),Access(C3)
NIGHT.MISSION=Type(06),AuxType(4000),Access(C3)
NIGHT.STALKER=Type(06),AuxType(4000),Access(C3)

Binary file not shown.

27
src/prelaunch/neptune.a Normal file
View File

@ -0,0 +1,27 @@
;license:MIT
;(c) 2020 by qkumba
!cpu 6502
!to "build/PRELAUNCH/NEPTUNE",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
lda #$60
sta $7E81
jsr $3FF8 ; decompress
+GET_MACHINE_STATUS
and #CHEATS_ENABLED
beq +
lda #$a5
sta $AC30 ; patch - don't decrease lives
sta $AC4E ; patch - don't increase lives
+
+DISABLE_ACCEL
jmp ($20)
!if * > $1C0 {
!error "code is too large, ends at ", *
}