(**************************************** * * * MODULA-2 Multi-Pass Compiler * * **************************** * * * * VAX/VMS Implementation * * * * * * MVCDebug: * * * * Debugger/Linker interface * * in Pass 4 * * * * Version 3.1 of 1-FEB-1983 * * * * * * D-2000 HAMBURG 13 * * * ****************************************) (**************************************** * Updates: see implementation module * ****************************************) DEFINITION MODULE MVCDebug; (* E. Kisicki *) FROM MVCompiler IMPORT Idptr; EXPORT QUALIFIED PutModuleStart, PutModuleEnd, PutProcedureStart, PutProcedureEnd, PutSourceFileCorrelation; PROCEDURE PutModuleStart; PROCEDURE PutModuleEnd; PROCEDURE PutProcedureStart (fidptr: Idptr); PROCEDURE PutProcedureEnd (procnum, entrypoint, flc: CARDINAL); PROCEDURE PutSourceFileCorrelation; END MVCDebug.