mirror of
https://github.com/a2-4am/4cade.git
synced 2025-01-21 00:31:52 +00:00
32 lines
590 B
Plaintext
32 lines
590 B
Plaintext
;license:MIT
|
|
;(c) 2020 by qkumba
|
|
|
|
!cpu 6502
|
|
!to "build/PRELAUNCH.INDEXED/PB",plain
|
|
*=$106
|
|
|
|
!source "src/macros.a"
|
|
|
|
+ENABLE_ACCEL
|
|
lda #$60
|
|
sta $833
|
|
sta $85A
|
|
jsr $800 ; decompress
|
|
+DISABLE_ACCEL
|
|
jsr $85D
|
|
+ENABLE_ACCEL
|
|
jsr $836
|
|
|
|
+GET_MACHINE_STATUS
|
|
and #CHEATS_ENABLED
|
|
beq +
|
|
lda #$ad
|
|
sta $158D ; patch - don't decrease lives
|
|
+
|
|
+DISABLE_ACCEL
|
|
jmp $7BC8
|
|
|
|
!if * > $1C0 {
|
|
!error "code is too large, ends at ", *
|
|
}
|