| <<< EQU directive | Index | >>> |
name EQU expression
Assigns the result of expression to name.
The expression is evaluated at assembly time.
More examples:
NUM_OF_ROWS EQU 50
NUM_OF_COLS EQU 10
ARRAY_SIZE EQU NUM_OF_ROWS * NUM_OF_COLS
| <<< EQU directive | Index | >>> |