EQU - Equate a symbol to a value:

label	EQU	expression

The EQU directive assigns the value of the expression in the operand field to the label. The label cannot be redefined anywhere else in the program. The expression cannot contain any forward references or undefined symbols. EQU declarations with forward references are flagged with Phasing Errors.



Example:
mode1	equ	$10	* Assign a constant value
mode2	equ	mode1	* Assign the value of a label
mode3	equ	mode4	* Invalid! Cannot use forward references
mode4	equ	100	* Assign a constant value



See also:
=, SET

Compatibility:
CASM X
CCASM X
OS-9 RMA X
Edt/Asm III X
Edtasm6309 X
Disk Edtasm+ X
Edtasm+ X
Macro-80C X