| |||
| Home > Assembler > Directives > LCLL directive | |||
The LCLL directive declares and initializes a
local logical variable. Local variables can be declared only within
a macro. Possible values of a logical variable are {TRUE} and {FALSE}.
The syntax of LCLL is:
LCLLvariable-name
where:
variable-nameis the name of the variable to set. The name mustbe
unique within the macro that contains it. The initial value of the
variable is {FALSE}.
See also MACRO directive. The scope of the variable is limited to a particular instantiation of the macro that contains it.
Using LCLL for a variable that is already defined
re-initializes the variable to {FALSE}.
Set the value of the variable with the SETL directive.
See SETL directive.
See GBLL directive for information on declaring global logical variables.