mirror of
https://github.com/a2-4am/4cade.git
synced 2024-11-18 11:08:26 +00:00
25 lines
449 B
Plaintext
25 lines
449 B
Plaintext
;license:MIT
|
|
;(c) 2020 by 4am/Frank M.
|
|
|
|
!cpu 6502
|
|
!to "build/PRELAUNCH.INDEXED/MINER.2049ER",plain
|
|
*=$106
|
|
|
|
!source "src/prelaunch/common.a"
|
|
|
|
+ENABLE_ACCEL
|
|
+NEW_RESET_VECTOR $BFF0
|
|
lda #>callback
|
|
sta $2076
|
|
lda #<callback
|
|
sta $2075
|
|
jmp $2000 ; decompress
|
|
|
|
callback
|
|
+DISABLE_ACCEL
|
|
jmp $0918
|
|
|
|
!if * > $1C0 {
|
|
!error "code is too large, ends at ", *
|
|
}
|