mirror of
https://github.com/open-simh/simtools.git
synced 2026-01-14 07:39:37 +00:00
13 lines
240 B
Plaintext
13 lines
240 B
Plaintext
;;;;;
|
|
;
|
|
; Test delimiters of .ASCII and .ASCIZ
|
|
|
|
CR = 13.
|
|
LF = 10.
|
|
SOH = 1
|
|
|
|
.asciz <cr><lf>/<SOH>/ ; 2 bytes and a string
|
|
.asciz /<cr><lf><SOH>/ ; only a string
|
|
.asciz |<cr><lf><SOH>| ; the same string
|
|
.asciz <cr><lf><SOH> ; 3 bytes
|