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.
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
LIST - Enable Listing assembler directive