mirror of
https://github.com/a2-4am/4cade.git
synced 2025-01-28 15:31:51 +00:00
28 lines
542 B
Plaintext
28 lines
542 B
Plaintext
;license:MIT
|
|
;(c) 2021 by 4am/xot
|
|
|
|
!cpu 6502
|
|
!to "build/PRELAUNCH.INDEXED/MC",plain
|
|
*=$106
|
|
|
|
!source "src/prelaunch/common.a"
|
|
|
|
+ENABLE_ACCEL
|
|
lda #$60
|
|
sta $83C
|
|
jsr $800 ; decompress
|
|
|
|
+GET_MACHINE_STATUS
|
|
and #CHEATS_ENABLED
|
|
beq +
|
|
lda #$2C
|
|
sta $4C47 ; patch - don't decrease lives
|
|
sta $562F ; patch - don't increase lives
|
|
|
|
+ +DISABLE_ACCEL
|
|
jmp $4000
|
|
|
|
!if * > $1C0 {
|
|
!error "code is too large, ends at ", *
|
|
}
|