mirror of
https://github.com/a2-4am/4cade.git
synced 2025-01-15 04:30:18 +00:00
29 lines
612 B
Plaintext
29 lines
612 B
Plaintext
;license:MIT
|
|
;(c) 2019 by 4am
|
|
|
|
!cpu 6502
|
|
!to "build/PRELAUNCH/CL",plain
|
|
*=$106
|
|
|
|
!source "src/prelaunch/common.a"
|
|
|
|
+ENABLE_ACCEL
|
|
lda #$60
|
|
sta $1F74
|
|
jsr $1F00 ; decompress
|
|
+GET_MACHINE_STATUS
|
|
and #CHEATS_ENABLED
|
|
beq +
|
|
; lives in $7D, capped at 255
|
|
lda #$FF
|
|
sta $60DD ; start with 255 lives
|
|
lda #$A5
|
|
sta $61AB ; patch - don't decrease lives
|
|
+
|
|
+DISABLE_ACCEL
|
|
jmp $6000
|
|
|
|
!if * > $1C0 {
|
|
!error "code is too large, ends at ", *
|
|
}
|