add Planetoids to the collection

This commit is contained in:
Peter Ferrie 2021-08-11 09:55:30 -07:00
parent 39052b45cb
commit ef7df0c2b5
6 changed files with 46 additions and 0 deletions

18
res/GAMEHELP/PLANETOIDS Normal file
View File

@ -0,0 +1,18 @@
Shoot asteroids and enemy spaceships
joystick to rotate
button 1 to thrust
Return to teleport randomly
any other key to fire
[eof]

View File

@ -255,6 +255,7 @@
0110,PIPE.DREAM
1000,PITFALL.II
0000,PITSTOP.II
1001,PLANETOIDS
0000,PLASMANIA
1110,PLATOON
1000,POLLYWOG

BIN
res/TITLE.HGR/PLANETOIDS Normal file

Binary file not shown.

View File

@ -245,6 +245,7 @@ PICNIC.PARANOIA=Type(06),AuxType(4000),Access(C3)
PIG.PEN=Type(06),AuxType(4000),Access(C3)
PITFALL.II=Type(06),AuxType(4000),Access(C3)
PITSTOP.II=Type(06),AuxType(4000),Access(C3)
PLANETOIDS=Type(06),AuxType(4000),Access(C3)
PLASMANIA=Type(06),AuxType(4000),Access(C3)
PM=Type(06),AuxType(4000),Access(C3)
POLLYWOG=Type(06),AuxType(4000),Access(C3)

Binary file not shown.

View File

@ -0,0 +1,26 @@
;license:MIT
;(c) 2021 by qkumba
!cpu 6502
!to "build/PRELAUNCH/PLANETOIDS",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
lda #$60
sta $2013
jsr $2000 ; decompress
+GET_MACHINE_STATUS
and #CHEATS_ENABLED
beq +
dec $111D
lda #$A9
sta $1570
+
+DISABLE_ACCEL
jmp $800
!if * > $1C0 {
!error "code is too large, ends at ", *
}