-- JaMRun.mesa
-- Last changed by Doug Wyatt, January 9, 1981 3:53 PM
DIRECTORY
JaMControlDefs USING [JaMControl],
JaMStartDefs USING [RunJaM],
Real USING [RealControl];
JaMRun: PROGRAM
IMPORTS JaMControlDefs, JaMStartDefs, Real = {
-- This is the main control module for JaM.
START Real.RealControl;
START JaMControlDefs.JaMControl;
-- MakeImage goes here
RESTART JaMControlDefs.JaMControl;
-- Start other modules here
JaMStartDefs.RunJaM;
}.