add Run For It to the collection

This commit is contained in:
Peter Ferrie 2020-05-15 12:44:13 -07:00
parent 40202e6e00
commit ab680d6054
6 changed files with 32 additions and 1 deletions

View File

@ -216,6 +216,7 @@
0000,ROADBLOCK
0110,ROBOCOP
0000,ROBOTRON.2084
0001,RUN.FOR.IT
0000,RUSSKI.DUCK
0002,SABOTAGE
0001,SAMMY.LIGHTFOOT

1
res/TITLE.HGR/RUN.FOR.IT Normal file

File diff suppressed because one or more lines are too long

View File

@ -193,6 +193,7 @@ RESCUE.RAIDERS=Type(06),AuxType(4000),Access(C3)
RIBBIT=Type(06),AuxType(4000),Access(C3)
ROADBLOCK=Type(06),AuxType(4000),Access(C3)
ROBOTRON.2084=Type(06),AuxType(4000),Access(C3)
RUN.FOR.IT=Type(06),AuxType(4000),Access(C3)
RUSSKI.DUCK=Type(06),AuxType(4000),Access(C3)
SABOTAGE=Type(06),AuxType(4000),Access(C3)
SAMMY.LIGHTFOOT=Type(06),AuxType(4000),Access(C3)

Binary file not shown.

View File

@ -17,7 +17,6 @@ Oil's Well
Pandora's Box
Pegasus ][
Roundabout
Run For It [priority]
Shuttle Intercept
Super Huey
Super Taxman II

View File

@ -0,0 +1,29 @@
;license:MIT
;(c) 2020 by qkumba
!cpu 6502
!to "build/PRELAUNCH/RUN.FOR.IT",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
lda #$60
sta $9DC
jsr $800 ; load DOS
lda #$60
sta $B727
jsr $B700 ; load game
+GET_MACHINE_STATUS
and #CHEATS_ENABLED
beq +
lda #$a5
sta $906
sta $1286
+
+DISABLE_ACCEL
jmp $800
!if * > $1C0 {
!error "code is too large, ends at ", *
}