mirror of
https://github.com/a2-4am/4cade.git
synced 2024-11-19 02:10:39 +00:00
30 lines
515 B
Plaintext
Executable File
30 lines
515 B
Plaintext
Executable File
;license:MIT
|
|
;(c) 2019 by qkumba/Frank M.
|
|
|
|
!cpu 6502
|
|
!to "build/PRELAUNCH/STELLAR.7",plain
|
|
*=$106
|
|
|
|
!source "src/prelaunch/common.a"
|
|
|
|
+USES_TEXT_PAGE_2
|
|
+ENABLE_ACCEL
|
|
lda #$60
|
|
sta $863
|
|
jsr $800 ; unpack
|
|
|
|
lda #0
|
|
sta $AE2A
|
|
lda #1
|
|
sta $AE2C
|
|
lda #$A4
|
|
sta $AE28 ; reset vector patch
|
|
|
|
+DISABLE_ACCEL
|
|
jmp $AE27
|
|
|
|
|
|
!if * > $1C0 {
|
|
!error "code is too large, ends at ", *
|
|
}
|