mirror of
https://github.com/a2-4am/4cade.git
synced 2025-02-20 12:29:04 +00:00
24 lines
429 B
Plaintext
Executable File
24 lines
429 B
Plaintext
Executable File
;license:MIT
|
|
;(c) 2019 by Frank M.
|
|
|
|
!cpu 6502
|
|
!to "build/PRELAUNCH/INTL.GRAN.PRIX",plain
|
|
*=$106
|
|
|
|
!source "src/prelaunch/common.a"
|
|
|
|
lda #$60 ; RTS instead of JMP
|
|
sta $201A
|
|
jsr $2000 ; decompress
|
|
|
|
lda #0
|
|
sta $6010
|
|
lda #1
|
|
sta $6015 ; reset vector patch
|
|
|
|
jmp $6000
|
|
|
|
!if * > $1C0 {
|
|
!error "code is too large, ends at ", *
|
|
}
|