Tag archive for "module"

This is the last phase of program compilation – linking all modules and creating the executable file for program. Turbo Pascal first marks all symbol table blocks for variables, typed constants, procedures and code blocks as unused, then it iterates through all modules and marks used blocks starting from the main program, after that it …

Each module (program or unit) needs some initialization and finalization: entry and exit code.