mirror of
https://github.com/a2-4am/4cade.git
synced 2025-02-14 19:33:00 +00:00
26 lines
489 B
Plaintext
26 lines
489 B
Plaintext
;license:MIT
|
|
;(c) 2019 by 4am
|
|
|
|
!cpu 6502
|
|
!to "build/PRELAUNCH.INDEXED/CYCLOD",plain
|
|
*=$106
|
|
|
|
!source "src/macros.a"
|
|
|
|
+ENABLE_ACCEL
|
|
lda #$60
|
|
sta $202A
|
|
jsr $2000 ; decompress
|
|
+GET_MACHINE_STATUS
|
|
and #CHEATS_ENABLED
|
|
beq +
|
|
lda #$AD
|
|
sta $8075 ; patch - don't decrease lives
|
|
+
|
|
+DISABLE_ACCEL
|
|
jmp $8EA6
|
|
|
|
!if * > $1C0 {
|
|
!error "code is too large, ends at ", *
|
|
}
|