mirror of
https://github.com/fadden/6502bench.git
synced 2024-12-02 13:51:36 +00:00
e9fbc6c96c
We append an assembler identifier to generated code. For Merlin 32, this was "_Merlin32". All of the other assemblers use a lower-case string, which makes Merlin look a little weird, so it has been changed to "_merlin32". Windows filesystems are generally case-insensitive, so this won't likely affect anything.
26 lines
580 B
ArmAsm
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
|
|
|