Chapter 5 Using Asssembler

Li

Do not output files included by include to the list file

Functional Description

This option suppresses output of source file contents included by assembler directive (include) to the list file. However, the machine language code will be written to the relocatable object file.

This option is convenient when you need a listing only for a particular source file while debugging.

The Li option specification will be ignored for source files that do not have any include statements.

Rules of Use

This option is specified with the hyphen (-) option specification character, followed by the upper-case letter 'L' and lower-case letter 'i'. The pair of characters of Li are handled as a single option.

as103 -Li -l sample.asm

NOTE:

This option is used in conjunction with the l option (lower-case 'l', list output).

 

 

 

Default Specification

Source files included by include will be output to the list file.

Operation Example

The following command line assembles the source file samp1.asm and creates a listing file samp1.lst that suppresses all text merged with the assembler directive include.

as103 -l -Li sampl.asm

NOTE:

Files included with include must not terminate with the end directive.

 

 

 

66 Command Options

Page 78
Image 78
Panasonic MN1030 Do not output files included by include to the list file, As103 -Li -l sample.asm, As103 -l -Li sampl.asm