mirror of
https://github.com/fachat/xa65.git
synced 2025-04-10 00:37:02 +00:00
17 lines
141 B
ArmAsm
17 lines
141 B
ArmAsm
|
|
*=$033c
|
|
|
|
lda #"A"
|
|
lda #'A'
|
|
|
|
.asc "12345"
|
|
.asc '12345'
|
|
|
|
.asc "^"" ; ^ is escape character
|
|
.asc '^''
|
|
.asc "'"
|
|
.asc '"'
|
|
|
|
.asc "^n"
|
|
|