LIST

Turn the listfile generation on.

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

Syntax
.LIST
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