mirror of
https://github.com/a2-4am/4cade.git
synced 2025-01-15 20:30:11 +00:00
29 lines
678 B
Plaintext
Executable File
29 lines
678 B
Plaintext
Executable File
;license:MIT
|
|
;(c) 2019 by 4am/Frank M.
|
|
|
|
!cpu 6502
|
|
!to "build/PRELAUNCH/CRIME.WAVE",plain
|
|
*=$106
|
|
|
|
!source "src/prelaunch/common.a"
|
|
|
|
+ENABLE_ACCEL
|
|
lda #$60
|
|
sta $244B
|
|
jsr $2400 ; decompress
|
|
+GET_MACHINE_STATUS
|
|
and #CHEATS_ENABLED
|
|
beq +
|
|
lda #$A5
|
|
sta $9D89 ; patch - don't decrease lives
|
|
sta $9DF4 ; patch - don't increase lives
|
|
+
|
|
; reset vector in high score file
|
|
; gets loaded directly to $300
|
|
+DISABLE_ACCEL
|
|
jmp $0800
|
|
|
|
!if * > $1C0 {
|
|
!error "code is too large, ends at ", *
|
|
}
|