4cade/src/prelaunch/cubit.a

32 lines
657 B
Plaintext
Raw Permalink Normal View History

2019-09-17 02:15:37 +00:00
;license:MIT
2021-08-02 18:06:19 +00:00
;(c) 2021 by qkumba
2019-09-17 02:15:37 +00:00
!cpu 6502
!to "build/PRELAUNCH.INDEXED/CUBIT",plain
2019-09-17 02:15:37 +00:00
*=$106
!source "src/macros.a"
2019-09-17 02:15:37 +00:00
+ENABLE_ACCEL
2019-09-17 02:15:37 +00:00
lda #$60
2021-08-02 18:06:19 +00:00
sta $0813
2019-09-17 02:15:37 +00:00
jsr $0800 ; decompress
+GET_MACHINE_STATUS
and #CHEATS_ENABLED
beq +
2019-09-17 02:15:37 +00:00
lda #$AD
2021-08-02 18:06:19 +00:00
sta $428C ; patch - don't decrease lives
sta $7B73 ; patch - don't increase lives
+
2021-08-02 18:06:19 +00:00
ldx #0
stx $4064
inx
stx $4069 ; reset vector patch
2019-12-17 14:46:30 +00:00
+DISABLE_ACCEL
2019-09-17 02:15:37 +00:00
jmp $4000
2019-12-13 05:51:54 +00:00
!if * > $1C0 {
!error "code is too large, ends at ", *
}