NOLIST
NOL
Suppresses the printing of the following instructions in the assembly listing and debug file until a LIST - Enable Listing assembler directive is reached.
See the following listing for an example of using 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:
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
LIST - Enable Listing assembler directive