mirror of
https://github.com/a2-4am/4cade.git
synced 2025-02-14 19:33:00 +00:00
23 lines
385 B
Plaintext
23 lines
385 B
Plaintext
;license:MIT
|
|
;(c) 2020 by Frank M.
|
|
|
|
!cpu 6502
|
|
!to "build/PRELAUNCH.INDEXED/SPACE.EGGS",plain
|
|
*=$106
|
|
|
|
!source "src/macros.a"
|
|
|
|
+NEW_RESET_VECTOR $280
|
|
+ENABLE_ACCEL
|
|
|
|
lda #$60
|
|
sta $2056
|
|
jsr $2000 ; decompress
|
|
|
|
+DISABLE_ACCEL
|
|
jmp $4880 ; run it
|
|
|
|
!if * > $1C0 {
|
|
!error "code is too large, ends at ", *
|
|
}
|