.LSTR or .LSTRING

Directives that specify the byte values in the resulting code based on the specified string of characters. A word that contains the lengthof string characters is placed at the beginning. The total string is limited to 1016 characters.

Syntax:

[<label>[:]]     .LSTR expr { , expr }
[<label>[:]]     .LSTRING expr { , expr }

Example:

alpha:    .LSTRING "ABC", $D    ; will generate 4,0, 'A', 'B', 'C', $0D
beta:    .LSTR "Trial Inscription", $D, $A
    .LSTR "AB", "CD", 13    ; will generate 5,0,'A', 'B', 'C', 'D', $0D