;;;;; ; ; Test delimiters of .ASCII and .ASCIZ CR = 13. LF = 10. SOH = 1 .asciz // ; 2 bytes and a string .asciz // ; only a string .asciz || ; the same string .ascii ; 3 bytes .asciz ;ABC;/DEF/ ; ABCDEF, not recommended practice .asciz /ABC/;DEF; ; ABC, not recommended practice .asciz /ABC/=DEF= ; ABCDEF, not recommended practice .asciz &###& ; another weird delimiter .asciz =DEF= ; syntax error: assignment .asciz =###= ; syntax error: assignment .even .asciz :SOH: ; syntax error: colon not allowed .asciz :###: ; syntax error: colon not allowed .asciz ^###^ ; previous versions of this macro11 ; used ^/.../ quoting as an extension; however this should be ^...^.