mirror of
https://github.com/a2-4am/4cade.git
synced 2024-11-19 02:10:39 +00:00
23 lines
388 B
Plaintext
23 lines
388 B
Plaintext
;license:MIT
|
|
;(c) 2019 by qkumba
|
|
|
|
!cpu 6502
|
|
!to "build/PRELAUNCH/SNAKE.BYTE",plain
|
|
*=$106
|
|
|
|
!source "src/prelaunch/common.a"
|
|
|
|
lda #$60
|
|
sta $0858
|
|
jsr $0800 ; decompress
|
|
+LC_REBOOT
|
|
lda #0
|
|
sta $7a11
|
|
lda #1
|
|
sta $7a19
|
|
jmp $7680
|
|
|
|
!if * > $1C0 {
|
|
!error "code is too large, ends at ", *
|
|
}
|