.out,.out1,.out2,.outall

Name

.out,.out1,.out2,.outall --  output messages per assembler pass

Syntax

.out 'string'

.out1 'string'

.out2 'string'

.outall 'string'

Description

These directives write a message to the console. The .out1 is performed only during pass 1 of the assembly, .out2 during pass 2, and .out on both passes. The .outall may be used to output a message on all passes of the assembler, including all optimization passes.

The operand field contains the message to be output.

Example

		.out1 'Pass 1'
		.out 'ARG contains bad value'