Modula-2 || Compiler & Tools || Library || Search Engine
VAR ProgramEnd, Etext, Edata, Break, Environment: ADDRESS;
| ProgramEnd | designates the end of the program image during loading and equals the initial position of the break (see SysBreak). |
| Etext | points to the beginning of the initialized data segment. |
| Edata | points to the beginning of the bss segment (global variables in Modula-2). |
| Break | is the current position of the break which is maintained by SysBreak and Storage |
| Environment | points to the environment parameters which are better accessed by Environment. |
Modula-2 || Compiler & Tools || Library || Search Engine