add Trompers to the collection

This commit is contained in:
Peter Ferrie 2021-09-09 11:20:44 -07:00
parent 8dc262db89
commit 108c4cca87
6 changed files with 44 additions and 0 deletions

15
res/GAMEHELP/TROMPERS Normal file
View File

@ -0,0 +1,15 @@
Catch the Trompers!
keyboard or joystick
< left right >
Stop: Q or joystick down
Jump: W or button 0
S * * * * * * * * * * * * * * * * pause
[eof]

View File

@ -365,6 +365,7 @@
1000,TOMAHAWK
0000,TRACK.ATTACK
0000,TRIAD
0001,TROMPERS
1001,TB=Tubeway ][
0000,TUNNEL.TERROR
0001,TWERPS

BIN
res/TITLE.HGR/TROMPERS Normal file

Binary file not shown.

View File

@ -341,6 +341,7 @@ TITAN.CRONUS=Type(06),AuxType(4000),Access(C3)
TOMAHAWK=Type(06),AuxType(4000),Access(C3)
TRACK.ATTACK=Type(06),AuxType(4000),Access(C3)
TRIAD=Type(06),AuxType(4000),Access(C3)
TROMPERS=Type(06),AuxType(4000),Access(C3)
TU=Type(06),AuxType(4000),Access(C3)
TUNNEL.TERROR=Type(06),AuxType(4000),Access(C3)
TWERPS=Type(06),AuxType(4000),Access(C3)

Binary file not shown.

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

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