-- CedarVersion.mesa
-- last edited by Levin on September 6, 1982 4:19 pm
DIRECTORY
System USING [GreenwichMeanTime];
CedarVersion: DEFINITIONS =
BEGIN
-- The following are the logical release version of the boot file.
major, minor, patch: READONLY CARDINAL;
bootFileDate: READONLY System.GreenwichMeanTime;
-- The following apply to the machine on which Cedar is running.
MachineType: TYPE = MACHINE DEPENDENT {
dolphin(4), dorado(5), dandelion(6), dicentra(7)};
machineType: READONLY MachineType;
uCodeDate: READONLY System.GreenwichMeanTime;
uCodeVersion: READONLY CARDINAL;
uCodeFloatingPoint: READONLY BOOL;
uCodeCedar: READONLY BOOL;
END.