add Ski Crazed to the collection

This commit is contained in:
Peter Ferrie 2020-05-20 16:34:50 -07:00
parent c648df641a
commit d4d5fb585a
6 changed files with 29 additions and 1 deletions

View File

@ -233,6 +233,7 @@
0000,SHORT.CIRCUIT
0000,SHUFFLEBOARD
0000,SITUATION.CRTCL=Situation Critical
0000,SKI.CRAZED
1000,SKYFOX
0000,SNACK.ATTACK
0000,SNAKE.BYTE

BIN
res/TITLE.HGR/SKI.CRAZED Normal file

Binary file not shown.

View File

@ -210,6 +210,7 @@ SHAMUS=Type(06),AuxType(4000),Access(C3)
SHORT.CIRCUIT=Type(06),AuxType(4000),Access(C3)
SHUFFLEBOARD=Type(06),AuxType(4000),Access(C3)
SITUATION.CRTCL=Type(06),AuxType(4000),Access(C3)
SKI.CRAZED=Type(06),AuxType(4000),Access(C3)
SKYFOX=Type(06),AuxType(4000),Access(C3)
SMURFEN=Type(06),AuxType(4000),Access(C3)
SNACK.ATTACK=Type(06),AuxType(4000),Access(C3)

Binary file not shown.

View File

@ -26,7 +26,6 @@ Congo
Frazzle
Galactic Attack
Rear Guard
Ski Crazed
Space Kadet
//TODO(woz-imaged but uncracked)

View File

@ -0,0 +1,27 @@
;license:MIT
;(c) 2020 by qkumba
!cpu 6502
!to "build/PRELAUNCH/SKI.CRAZED",plain
*=$106
!source "src/prelaunch/common.a"
lda #$60
sta $A23
jsr $800 ; load "DOS"
lda #0
sta $E084
lsr $E08F
lda #$82
sta $101
lda #$A6
sta $104
lda #$FA
sta $105 ; update reset hook to reboot
inc $3F4 ; force reboot
jmp $E03A
!if * > $1C0 {
!error "code is too large, ends at ", *
}