mirror of
https://github.com/a2-4am/4cade.git
synced 2025-01-06 02:30:06 +00:00
22 lines
359 B
Plaintext
22 lines
359 B
Plaintext
;license:MIT
|
|
;(c) 2019 by qkumba
|
|
|
|
!cpu 6502
|
|
!to "build/PRELAUNCH.INDEXED/RM",plain
|
|
*=$106
|
|
|
|
!source "src/macros.a"
|
|
|
|
+ENABLE_ACCEL
|
|
lda #$60
|
|
sta $890
|
|
jsr $800 ; decompress
|
|
|
|
+NEW_RESET_VECTOR $190
|
|
+DISABLE_ACCEL
|
|
jmp $7600
|
|
|
|
!if * > $1C0 {
|
|
!error "code is too large, ends at ", *
|
|
}
|