NOLIST

Turn listfile generation OFF.

The NOLIST directive tells the Assembler to turn listfile generation OFF. The Assembler normally generates a listfile, which is a combination of assembly source code, addresses, and opcodes. Listfile generation is turned on by default, but can be disabled by using this directive. The directive can also be used together with the LIST directive in order to only generate listfile of selected parts of an assembly source file.

Syntax
.NOLIST
Example
.NOLIST ; Disable listfile generation 
.INCLUDE "macro.inc" ; The included files will not 
.INCLUDE "const.def" ; be shown in the listfile 
.LIST ; Reenable listfile generation