.warning

Name

.warning --  generates a warning message

Syntax

.warning 'string'

Description

The .warning directive generates a warning message that is included in the warning count. This directive and the .error directive are useful for parameter checking.

Example

		.if VALUE<16			; test value to see if <16
			ld A,#VALUE		; if so, generate instruction
		.else
			.warning 'value>=16'	; else generate error
		.endif