4cade/src/prelaunch/montezuma.a

26 lines
446 B
Plaintext
Raw Permalink Normal View History

2019-09-14 05:30:01 +00:00
;license:MIT
;(c) 2019 by qkumba
!cpu 6502
!to "build/PRELAUNCH.INDEXED/MZ",plain
2019-09-15 02:57:52 +00:00
*=$106
!source "src/macros.a"
2019-09-14 05:30:01 +00:00
+ENABLE_ACCEL
lda #$60
sta $816
jsr $800 ; decompress
+GET_MACHINE_STATUS
and #CHEATS_ENABLED
beq +
lda #$a5
sta $6d0d
+
+DISABLE_ACCEL
jmp $6004
2019-12-13 05:51:54 +00:00
!if * > $1C0 {
!error "code is too large, ends at ", *
}