-- file crossCL.config 
-- edited by Satterthwaite on August 1, 1983 1:58 pm

		DIRECTORY
		    ListerUtilities: FROM "tListerUtilities",
		    CLList: FROM "tCLList",
		    OpTable: FROM "tOpTable";
		    
CrossCL: CONFIG LINKS: CODE
    IMPORTS 
      Directory, Exec, ExecOps, File, FileStream, Heap, KernelFile, LongString,
      ProcessorFace, Runtime, Space, Stream, Strings, Time, Transaction, TTY
    CONTROL CrossCLControl = {

  OSMiscOpsImpl;
  CharIOImpl;
  CommandPack;
  
  ListerUtilities;

  Symbols: CONFIG
      IMPORTS File, Heap, LongString, Space, Strings, Transaction
      EXPORTS SymbolTable = {
    SymbolCache;
    SymbolPack};

  Symbols;
  
  MopcodeNames;
  ESCAlphaSDDefsNames;
  OpNames;
  OpTable;
  CLList;
  CrossCLControl;

  }.