add Star Cruiser to the collection

This commit is contained in:
Peter Ferrie 2020-05-20 13:33:16 -07:00
parent 72021b4bc7
commit fa6c08c121
6 changed files with 30 additions and 1 deletions

View File

@ -257,6 +257,7 @@
0110,SS.SOCCER=Street Sports Soccer
1000,STARBLASTER
0000,STAR.BLAZER
1001,STAR.CRUISER
1000,STARGATE
1000,STARGLIDER
0000,STAR.THIEF

BIN
res/TITLE.HGR/STAR.CRUISER Normal file

Binary file not shown.

View File

@ -229,6 +229,7 @@ SPY.HUNTER=Type(06),AuxType(4000),Access(C3)
SPY.STRIKES.BAK=Type(06),AuxType(4000),Access(C3)
SPYS.DEMISE=Type(06),AuxType(4000),Access(C3)
STAR.BLAZER=Type(06),AuxType(4000),Access(C3)
STAR.CRUISER=Type(06),AuxType(4000),Access(C3)
STAR.THIEF=Type(06),AuxType(4000),Access(C3)
STARBLASTER=Type(06),AuxType(4000),Access(C3)
STARGATE=Type(06),AuxType(4000),Access(C3)

Binary file not shown.

View File

@ -44,7 +44,6 @@ Retro-Ball
Roach Hotel
The Space Ark
The Snapper
Star Cruiser
Trick Shot
Zargs

View File

@ -0,0 +1,28 @@
;license:MIT
;(c) 2020 by qkumba
!cpu 6502
!to "build/PRELAUNCH/STAR.CRUISER",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
lda #$60
sta $2048
jsr $2000 ; decompress
+GET_MACHINE_STATUS
and #CHEATS_ENABLED
beq +
lda #$ad
sta $1F84 ; patch - don't increase lives
sta $61C8 ; patch - don't decrease lives
sta $62D8 ; patch - don't increase lives
+
+DISABLE_ACCEL
jmp $67B0
!if * > $1C0 {
!error "code is too large, ends at ", *
}