mirror of
https://github.com/a2-4am/4cade.git
synced 2025-02-10 08:31:12 +00:00
21 lines
392 B
Plaintext
21 lines
392 B
Plaintext
;license:MIT
|
|
;(c) 2021 by qkumba
|
|
|
|
!cpu 6502
|
|
!to "build/PRELAUNCH.INDEXED/LEMMINGS",plain
|
|
*=$106
|
|
|
|
!source "src/prelaunch/common.a"
|
|
|
|
+ENABLE_ACCEL
|
|
lda #$60
|
|
sta $41B0
|
|
jsr $4000 ; decompress
|
|
inc $C9 ; RNG requires non-zero
|
|
+DISABLE_ACCEL
|
|
jmp $8C8
|
|
|
|
!if * > $1C0 {
|
|
!error "code is too large, ends at ", *
|
|
}
|