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 listing from the assembler source code

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

    1    1   000000 01          aaa: NOP

    3    3   000001 01          bbb: NOP

    4    4   000002 01          NOP

    9    9   000005 01          ddd: NOP

   10   10   000006 01          NOP
See also

LIST - Enable Listing assembler directive