4cade/src/prelaunch/lancaster.a

27 lines
502 B
Plaintext
Raw Normal View History

2019-10-01 16:12:03 +00:00
;license:MIT
;(c) 2019 by qkumba
!cpu 6502
!to "build/PRELAUNCH/LANCASTER",plain
*=$106
!source "src/prelaunch/common.a"
+GET_MACHINE_STATUS
and #CHEATS_ENABLED
sta cheat+1
lda #<cheat
sta $10da
lda #>cheat
sta $10db
jmp $1000
2019-10-01 16:12:03 +00:00
cheat
lda #0 ; SMC (will be non-zero if cheats are enabled)
beq +
lda #$ad
sta $1661
sta $1476
+
jmp $1000