2019-09-16 22:30:46 -04:00
|
|
|
;license:MIT
|
2019-12-25 14:15:36 -08:00
|
|
|
;(c) 2019 by 4am/Frank M.
|
2019-09-16 22:30:46 -04:00
|
|
|
|
|
|
|
!cpu 6502
|
|
|
|
!to "build/PRELAUNCH/CRIME.WAVE",plain
|
|
|
|
*=$106
|
|
|
|
|
|
|
|
!source "src/prelaunch/common.a"
|
|
|
|
|
2019-10-04 21:34:49 -04:00
|
|
|
+ENABLE_ACCEL
|
2019-09-16 22:30:46 -04:00
|
|
|
lda #$60
|
|
|
|
sta $244B
|
|
|
|
jsr $2400 ; decompress
|
2019-10-04 21:34:49 -04:00
|
|
|
+GET_MACHINE_STATUS
|
|
|
|
and #CHEATS_ENABLED
|
|
|
|
beq +
|
2019-09-16 22:30:46 -04:00
|
|
|
lda #$A5
|
|
|
|
sta $9D89 ; patch - don't decrease lives
|
|
|
|
sta $9DF4 ; patch - don't increase lives
|
2019-10-04 21:34:49 -04:00
|
|
|
+
|
2019-12-18 23:22:06 -08:00
|
|
|
; reset vector in high score file
|
|
|
|
; gets loaded directly to $300
|
2019-10-04 21:34:49 -04:00
|
|
|
+DISABLE_ACCEL
|
2019-09-16 22:30:46 -04:00
|
|
|
jmp $0800
|
2019-12-12 21:51:54 -08:00
|
|
|
|
|
|
|
!if * > $1C0 {
|
|
|
|
!error "code is too large, ends at ", *
|
|
|
|
}
|