Chapter 5 Using Asssembler

5.3.1Output File Options

o file_name

Specify the relocatable object file name to be output

Functional description

This option specifies the relocatable object file name to be output by the assembler. If the specified file already exists, its previous contents will be erased. If a path name that does not exist is specified, the assembler will display an error message and suspend processing.

NOTE:

Because the @ symbol is used as the character for specifying parameter files, it

 

 

cannot be used as the first character of file names.

 

 

 

Rules of Use

This option is specified with the hyphen (-) option specification character, followed by the lower-case letter 'o', then either immediately followed by the file name or a space and the file name. If the file is to be output to the current directory, only the file name needs to be specified. If the file is to be output to a different directory, both a path name and a file name must be specified.

as103 -o /user/obj/test.rf main.asm

Default Specification

The assembler creates a file with the same name as the input file, but with the extension changed to .rf in the current directory.

Operation Example

The following command line assembles the source file samp1.asm in the current directory and creates the relocatable object file /user/obj/samp1.rf. It does not create a listing file.

as103 -o/user/obj/sampl.rf sampl.asm

64 Command Options

Page 76
Image 76
Panasonic MN1030 user manual Output File Options, Functional description, Rules of Use, Operation Example