IMPLEMENTATION MODULE LinkTable ;
(*
        Title:          Relocatable Loader for PANOS.
        Author:         Keith Rautenbach.
        History:
          30-Aug-84     Initial version.

   This module contains a compile time generated data structure
   used by the Loader to find all the PANOS procedures.
   The actual implementation is in files 'src.LinkTable' and 'src.LinkData'.
*)

FROM SYSTEM IMPORT ADDRESS , WORD ;
FROM String IMPORT CopyLC , CopyCC ;

(* ========================================================================= *)

PROCEDURE Version( VAR String : ARRAY OF CHAR ) ;
BEGIN
   CopyLC( "LinkTable m2    0.01/07  11 Sep 84 13:14:25" , String ) ;
END Version ;

(* ========================================================================= *)

PROCEDURE Table() : ModuleListP ;
BEGIN
END Table ;

PROCEDURE MemoryLayout( VAR Memory , PanosCode : MemoryBaseAndLimit ) ;
BEGIN
END MemoryLayout ;

END LinkTable.
