mirror of
https://github.com/fadden/6502bench.git
synced 2024-12-02 13:51:36 +00:00
9784ad043e
While it's okay to use ';', the classic Merlin editor will treat it as an end-of-line comment and shove the entire thing off to the right side of the screen. This adds a configuration item to the app settings, with a default value of ';'.
15 lines
259 B
ArmAsm
15 lines
259 B
ArmAsm
.cpu "65816"
|
|
* = $1000
|
|
.as
|
|
.xs
|
|
nop
|
|
L1001 bit L1001
|
|
caddr pea caddr-1
|
|
per caddr-1
|
|
lda L1001+2
|
|
lda caddr
|
|
lda caddr+1
|
|
lda caddr+2
|
|
rts
|
|
|