mirror of
https://github.com/fadden/6502bench.git
synced 2024-12-04 11:49:58 +00:00
7ca11b0889
I had missed the existence of Merlin 32's PUTBIN directive, which provides the binary include feature.
17 lines
291 B
ArmAsm
17 lines
291 B
ArmAsm
org $1000
|
|
L1000 ldy #$28
|
|
lda :L1017,y
|
|
sta $2000,y
|
|
dey
|
|
bpl L1000
|
|
lda :L103F
|
|
lda :L103F+1
|
|
lda done-1
|
|
jmp done
|
|
|
|
:L1017 putbin 20300-1.bin
|
|
:L103F putbin 20300sub/20300-2.bin
|
|
|
|
done rts
|
|
|