mirror of
https://github.com/a2-4am/4cade.git
synced 2025-02-16 01:32:10 +00:00
31 lines
621 B
Plaintext
31 lines
621 B
Plaintext
;license:MIT
|
|
;(c) 2019-2020 by qkumba
|
|
|
|
!cpu 6502
|
|
!to "build/PRELAUNCH.INDEXED/FALCONS",plain
|
|
*=$106
|
|
|
|
!source "src/macros.a"
|
|
|
|
lda #$60
|
|
sta $3f0b
|
|
jsr $3eba ; decompress
|
|
lda ROM_MACHINEID
|
|
ldx #$CA
|
|
stx $944F
|
|
inx
|
|
stx $9457
|
|
inx
|
|
stx $9453
|
|
+GET_MACHINE_STATUS
|
|
and #CHEATS_ENABLED
|
|
beq +
|
|
dec $9d19 ; patch - don't decrease lives
|
|
dec $9d06 ; patch - don't decrease lives
|
|
+
|
|
jmp $6000
|
|
|
|
!if * > $1C0 {
|
|
!error "code is too large, ends at ", *
|
|
}
|