RiscAssemblerTreeDef.mesa
Copyright Ó 1987 by Xerox Corporation. All rights reserved.
Generated by hederman.pa at July 15, 1987 4:53:10 pm PDT
using ThreeCasabaFour [1.2] of June 1, 1987 6:00:00 pm PDT
DIRECTORY
RiscAssembler,
RedBlackTree;
RiscAssemblerTreeDef: CEDAR DEFINITIONS =
BEGIN
OPEN RiscAssembler, RedBlackTree;
AssembleProcType: TYPE = PROC[REF ANY] RETURNS[EncodingSequence, Table, INT];
SymbolTableProcType: TYPE = PROC[REF ANY, Table, INT] RETURNS[Table, INT];
NotePositionProcType: TYPE = PROC[REF ANY, INT, INT] RETURNS[LabelInstance];
CodeSequenceProcType: TYPE = PROC[REF ANY, Table] RETURNS[EncodingSequence];
InstructionProcType: TYPE = PROC[REF ANY] RETURNS[Encoding];
InstructionRandProcType: TYPE = PROC[REF ANY, LabelInstance] RETURNS[Encoding];
IndexProcType: TYPE = PROC[REF ANY, Table] RETURNS[LabelInstance];
END..