NOLIST - Disable Listing

Syntax
NOLIST

Synonym
NOL

Description

Suppresses the printing of the following instructions in the assembly listing and debug file until a LIST - Enable Listing assembler directive is reached.

Example

See the following listing for an example of using LIST and NOLIST.

Listing: Examples of LIST and NOLIST

aaa:   NOP
       LIST

bbb:   NOP

       NOP

       NOLIST

ccc:   NOP

       NOP

       LIST

ddd:   NOP

       NOP

The listing above generates the listing file in the following listing:

Listing: Assembler Output

Assembler
Abs. Rel.   Loc    Obj. code   Source line

---- ----   ------ ---------   -----------

    1    1   000000 9D          aaa:    NOP

    2    2

    4    4   000001 9D          bbb:    NOP

    5    5   000002 9D                  NOP

    6    6

   12   12   000005 9D          ddd:    NOP

   13   13   000006 9D                  NOP
See also

LIST - Enable Listing assembler directive