 | A166 User's Guide |  |
|
|
| GLOBAL Assembler Statement| Arguments |
GLOBAL symbol <[>, symbol ...<]>
| | Description | The GLOBAL statement specifies that the listed symbols may be used in the any TGROUP in other object modules. The symbols specified are marked as global in the generated object module and are used by the linker to resolve external references from other object modules. The symbols specified must be defined in the source file in which they are marked public. The following types of symbols may be declared global: - Variables such as BYTE, WORD, and BIT.
- Labels defined in NEAR and FAR memory.
- Constants defined using EQU.
| | See Also | EXTRN, PUBLIC | | Example |
GLOBAL myvar, yourvar, thisvar
|
|
|