DEFINED(n)

The DEFINED function will return true if argument arg is a defined label. It returns false otherwise.
e.g.

	.if	DEFINED(fred)

	.db	"fred defined"

	.else

	.db	"fred NOT defined"

	.endif

NOTE:
Argument arg of the DEFINED function can be an expression that returns either a label or a string.