mirror of
https://github.com/a2-4am/4cade.git
synced 2024-11-17 20:06:03 +00:00
24 lines
417 B
Plaintext
Executable File
24 lines
417 B
Plaintext
Executable File
;license:MIT
|
|
;(c) 2019 by Frank M.
|
|
|
|
!cpu 6502
|
|
!to "build/PRELAUNCH.INDEXED/SPACE.RAIDERS",plain
|
|
*=$106
|
|
|
|
!source "src/prelaunch/common.a"
|
|
|
|
+ENABLE_ACCEL
|
|
lda #$60
|
|
sta $8F09
|
|
jsr $8EF1 ; decompress
|
|
|
|
lda #1
|
|
sta $401A ; reset vector patch
|
|
+DISABLE_ACCEL
|
|
|
|
jmp $4000
|
|
|
|
!if * > $1C0 {
|
|
!error "code is too large, ends at ", *
|
|
}
|