MesaRuntimeInit.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
Levin on April 12, 1983 10:01 am
Russ Atkinson (RRA) January 28, 1985 10:45:42 pm PST
Doug Wyatt, February 26, 1985 3:14:29 pm PST
DIRECTORY
PrincOps USING [ControlModule, Priority];
MesaRuntimeInit: DEFINITIONS
= BEGIN
FrameImpl: PROGRAM;
InstructionsImpl: PROGRAM;
StateVectorCounts: TYPE = LONG POINTER TO ARRAY PrincOps.Priority OF CARDINAL;
ProcessImpl: PROGRAM [
pdaWords: CARDINAL, svCounts: StateVectorCounts, wordsPerSV: CARDINAL,
reservedNakedNotifyMask: WORD, millisecondsPerTick: CARDINAL];
SignalsImpl: PROGRAM;
TrapsImpl: PROGRAM [];
Start: PROC [program: PrincOps.ControlModule];
... exported by TrapsImpl.
END.