4cade/src/prelaunch/spindizzy.a

32 lines
573 B
Plaintext
Raw Normal View History

2020-04-26 17:14:27 +00:00
;license:MIT
2020-04-27 14:22:02 +00:00
;(c) 2020 by qkumba/Frank M.
2020-04-26 17:14:27 +00:00
!cpu 6502
!to "build/PRELAUNCH/SPINDIZZY",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
2020-04-27 14:22:02 +00:00
+READ_RAM1_WRITE_RAM1
+LC_REBOOT
+READ_ROM_NO_WRITE
2020-04-26 17:14:27 +00:00
lda #$60
sta $855
jsr $800 ; decompress
2020-04-27 14:22:02 +00:00
ldx #0
stx $9344
inx
stx $934F ; fix reboot
2020-04-26 17:14:27 +00:00
+DISABLE_ACCEL
2020-07-14 17:15:32 +00:00
sta $C05F ; fix //c and //c+ HGR color
2020-04-26 17:14:27 +00:00
jmp $9300
!if * > $1C0 {
!error "code is too large, ends at ", *
}