mirror of
https://github.com/a2-4am/4cade.git
synced 2025-01-28 15:31:51 +00:00
23 lines
409 B
Plaintext
23 lines
409 B
Plaintext
;license:MIT
|
|
;(c) 2020 by qkumba
|
|
|
|
!cpu 6502
|
|
!to "build/PRELAUNCH/ALIENS",plain
|
|
*=$106
|
|
|
|
!source "src/prelaunch/common.a"
|
|
|
|
+ENABLE_ACCEL
|
|
lda #$60
|
|
sta $B9B
|
|
jsr $800 ; load "DOS"
|
|
lda #$60
|
|
sta $2429
|
|
jsr $22AA ; decrypt
|
|
+DISABLE_ACCEL
|
|
jmp $1FA0
|
|
|
|
!if * > $1C0 {
|
|
!error "code is too large, ends at ", *
|
|
}
|