Value assignment directives
Syntax
label = expr
label ASSIGN expr
label DEFINE const_expr
label EQU expr
label SET expr
label VAR expr
Parameters
| Constant value assigned to symbol. |
| Value assigned to symbol or value to be tested. |
| Symbol to be defined. |
Operand modifiers
These prefixes can be used to modify operands:
Prefix | Description |
|---|---|
|
|
| Makes the |
As an example, the operand modifier F: is needed to determine whether
JARL disp22,reg2
or
JARL disp32,reg2
shall be used. For example:
JARL F:max,R2
Description
These directives are used for assigning values to symbols:
Directive | Description |
|---|---|
Assigns a permanent value local to a module. | |
Assigns a temporary value. | |
Defines a file-wide value. |