| |||
| Home > Assembler > Directives > GBLL directive | |||
The GBLL directive declares and initializes a
global logical variable. Possible values of a logical variable are {TRUE} and {FALSE}.
The syntax of GBLL is:
GBLLvariable-name
where:
variable-nameis the name of the logical variable. mustbe
unique amongst symbols within a source file.variable-name
is
initialized to variable-name{FALSE}.
Using GBLL for a variable that is already defined
re-initializes the variable to {FALSE}. The scope
of the variable is limited to the source file that contains it.
Set the value of the variable with the SETL directive.
See SETL directive.
See LCLL directive for information on setting local logical variables.
Global variables can also be set with the -predefine assembler
command-line option. Refer to Command syntax for more information.