LLEN - Set Line Length

Syntax
  LLEN<n>
  
  
Synonym

None

Description

Sets the number of characters from the source line that are included on the listing line to <n>. The values allowed for <n> are in the range [0 - 132]. If a value smaller than 0 is specified, the line length is set to 0. If a value bigger than 132 is specified, the line length is set to 132.

Lines of the source file that exceed the specified number of characters are truncated in the listing file.

Example

The following listing shows the portion of code which generates the listing file in next listing. Notice that the LLEN 24 directive causes the output at the location-counter line 7 to be truncated.

Listing: Example assembly source code using LLEN

        DC.B  $55
        LLEN  32

        DC.W  $1234, $4567

        LLEN  24

        DC.W  $1234, $4567

        EVEN
Listing: Formatted assembly output listing as a result of using LLEN

 Abs. Rel.   Loc    Obj. code   Source line
 ---- ----   ------ ---------   -----------

    1    1   000000 55                  DC.B  $55

    2    2

    4    4   000001 1234 4567           DC.W  $1234, $4567

    5    5

    7    7   000005 1234 4567           DC.W  $1234, $

    8    8   000009 00                  EVEN