4cade/src/prelaunch/donkey.kong.a

39 lines
742 B
Plaintext
Raw Permalink Normal View History

2019-09-14 05:30:01 +00:00
;license:MIT
;(c) 2019-2020 by qkumba/Frank M.
2019-09-14 05:30:01 +00:00
!cpu 6502
!to "build/PRELAUNCH.INDEXED/DONKEY.KONG",plain
2019-09-15 02:57:52 +00:00
*=$106
!source "src/macros.a"
2019-09-14 05:30:01 +00:00
+ENABLE_ACCEL
lda #$60
sta $3eab
jsr $3e36 ; decompress
+READ_RAM2_NO_WRITE
lda MachineStatus
pha
and #HAS_JOYSTICK
bne +
inc $7CB7 ; force keyboard
+
pla
and #CHEATS_ENABLED
beq +
lda #$2c
sta $729b
sta $6fea
+
2019-12-17 14:46:30 +00:00
lda #0
sta $4112
lda #1
sta $4117 ; reset vector patch
+DISABLE_ACCEL
jmp $4000
2019-12-13 05:51:54 +00:00
!if * > $1C0 {
!error "code is too large, ends at ", *
}