1
0
mirror of https://github.com/fachat/xa65.git synced 2024-06-01 22:41:32 +00:00
xa65/xa/tests/chardelimiter/test.s
2023-11-19 21:24:38 +01:00

17 lines
141 B
ArmAsm

*=$033c
lda #"A"
lda #'A'
.asc "12345"
.asc '12345'
.asc "\"" ; \ is escape character
.asc '\''
.asc "'"
.asc '"'
.asc "\n"