1
0
mirror of https://github.com/fadden/6502bench.git synced 2024-12-02 13:51:36 +00:00
6502bench/SourceGen/SGTestData/Expected/20022-operand-formats_merlin32.S
Andy McFadden 9784ad043e Use '*' for full-line Merlin comments
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 ';'.
2024-06-26 10:54:46 -07:00

26 lines
580 B
ArmAsm

*Project file was edited to force ASCII formatting for some operands.
org $1000
clc
xce
rep #$30
mx %00
lda #$1234
lda #4660
lda #4660
lda #%0001001000110100
lda #$fffe
lda #65534
lda #65534
lda #%1111111111111110
ldal $fffefd
ldal 16776957
ldal 16776957
ldal %111111111111111011111101
lda #'h'
lda #"H"
lda #$6868
ldal 'h'
ldal "H"
rts