4cade/src/prelaunch/gremlins.a

34 lines
863 B
Plaintext
Raw Permalink Normal View History

2019-09-30 18:22:50 +00:00
;license:MIT
2022-05-23 14:36:54 +00:00
;(c) 2019, 2022 by 4am, qkumba
2019-09-30 18:22:50 +00:00
!cpu 6502
!to "build/PRELAUNCH.INDEXED/GREMLINS",plain
2019-09-30 18:22:50 +00:00
*=$106
!source "src/macros.a"
2019-09-30 18:22:50 +00:00
+ENABLE_ACCEL
2022-05-23 14:36:54 +00:00
lda #$4C
2022-05-28 03:08:37 +00:00
sta $0839
2022-05-23 14:36:54 +00:00
sta $0863
2019-09-30 18:22:50 +00:00
jsr $0800 ; decompress
2022-05-23 14:36:54 +00:00
+DISABLE_ACCEL
jsr $211 ; music
2022-05-28 03:08:37 +00:00
jsr $83C ; check key
+GET_MACHINE_STATUS
and #CHEATS_ENABLED
beq +
2019-10-06 14:39:59 +00:00
; lives in $76 and $084A,X (0/1 for player 1/2)
2019-09-30 18:22:50 +00:00
lda #$A5
sta $54B2 ; patch - don't decrease lives
sta $5165 ; patch - don't increase lives
lda #$BD
sta $54B6 ; patch - don't decrease lives
sta $5162 ; patch - don't increase lives
+
2019-09-30 18:22:50 +00:00
jmp $4000
2019-12-13 05:51:54 +00:00
!if * > $1C0 {
!error "code is too large, ends at ", *
}