mirror of
https://github.com/a2-4am/4cade.git
synced 2024-11-26 17:49:43 +00:00
add Slicks to the collection
This commit is contained in:
parent
2d3fbea571
commit
8bfac3e235
@ -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
BIN
res/TITLE.DHGR/SLICKS
Normal file
Binary file not shown.
@ -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)
|
||||
|
BIN
res/dsk/slicks PRODOS (san inc pack).po
Normal file
BIN
res/dsk/slicks PRODOS (san inc pack).po
Normal file
Binary file not shown.
46
src/prelaunch/slicks.a
Normal file
46
src/prelaunch/slicks.a
Normal 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 ", *
|
||||
}
|
Loading…
Reference in New Issue
Block a user