add Slicks to the collection

This commit is contained in:
Peter Ferrie 2020-05-23 09:43:17 -07:00
parent 2d3fbea571
commit 8bfac3e235
5 changed files with 48 additions and 0 deletions

View File

@ -238,6 +238,7 @@
0000,SITUATION.CRTCL=Situation Critical
0000,SKI.CRAZED
1000,SKYFOX
1110,SLICKS
0000,SNACK.ATTACK
0000,SNAKE.BYTE
0001,SNEAKERS

BIN
res/TITLE.DHGR/SLICKS Normal file

Binary file not shown.

View File

@ -23,6 +23,7 @@ RADWARRIOR=Type(06),AuxType(4000),Access(C3)
RAMPAGE=Type(06),AuxType(4000),Access(C3)
RENEGADE=Type(06),AuxType(4000),Access(C3)
ROBOCOP=Type(06),AuxType(4000),Access(C3)
SLICKS=Type(06),AuxType(4000),Access(C3)
SOKO.BAN=Type(06),AuxType(4000),Access(C3)
SPIDERBOT=Type(06),AuxType(4000),Access(C3)
SS.BASEBALL=Type(06),AuxType(4000),Access(C3)

Binary file not shown.

46
src/prelaunch/slicks.a Normal file
View File

@ -0,0 +1,46 @@
;license:MIT
;(c) 2020 by qkumba
!cpu 6502
!to "build/PRELAUNCH/SLICKS",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
lda #$60
sta $5612
jsr $800 ; decompress
lda #$88
sta $BF0E ; don't bank out
inc $3F4 ; reboot on reset
+READ_RAM2_NO_WRITE
lda MockingboardStuff
cmp #1
ora #$C0
bcc skipmb
cpx #$C4
beq skipmb
txa
ldy #0
- ldx $1D77,Y ;find #$C4s
cpx #$C4
bne +
sta $1D77,Y ;Replace #$C4 with detected slot
+ ldx $1E77,Y ;find #$C4s
cpx #$C4
bne +
sta $1E77,Y ;Replace #$C4 with detected slot
+ iny
bne -
skipmb
jsr DisableAccelerator
+READ_ROM_NO_WRITE
jmp $803
!if * > $1C0 {
!error "code is too large, ends at ", *
}