mirror of
https://github.com/a2-4am/4cade.git
synced 2025-02-10 08:31:12 +00:00
27 lines
507 B
Plaintext
27 lines
507 B
Plaintext
;license:MIT
|
|
;(c) 2020-2021 by qkumba
|
|
|
|
!cpu 6502
|
|
!to "build/PRELAUNCH.INDEXED/MANIC.MINER",plain
|
|
*=$106
|
|
|
|
!source "src/prelaunch/common.a"
|
|
|
|
+ENABLE_ACCEL
|
|
lda #$60
|
|
sta $83E
|
|
jsr $800 ; decompress
|
|
|
|
+GET_MACHINE_STATUS
|
|
and #CHEATS_ENABLED
|
|
beq +
|
|
lda #$a5
|
|
sta $87FE ; patch - don't decrease lives
|
|
+
|
|
+DISABLE_ACCEL
|
|
jmp $6000
|
|
|
|
!if * > $1C0 {
|
|
!error "code is too large, ends at ", *
|
|
}
|