4cade/src/prelaunch/bejeweled.a
2020-04-02 14:30:23 -07:00

52 lines
1015 B
Plaintext

;license:MIT
;(c) 2020 by qkumba
!cpu 6502
!to "build/PRELAUNCH/BEJEWELED",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
lda #<callback
sta $455C
lda #>callback
sta $455D
jmp $800 ; decompress
helper
lda $86E9
cmp #$CB ; write file
bne nohelp
lda $8AFE ; write address (low)
cmp #$F3 ; erasing save
beq nohelp
cmp #$F5 ; writing "valid"
beq nocall ; ignore it
cmp #$A8 ; writing options
beq nohelp
dec $8AFE ; write address
nohelp
jmp $D670 ; ProDOS_enter
nocall
plp
pla
pla
clc
rts
callback
jsr $BE00
lda #<helper
sta $BF0B
lda #>helper
sta $BF0C
+DISABLE_ACCEL
rts
!if * > $1C0 {
!error "code is too large, ends at ", *
}