-- CedarInitPrivate.mesa
-- last edited by Levin on November 1, 1982 11:16 am
CedarInitPrivate: DEFINITIONS =
BEGIN
-- From CedarInitBasement
FatalError: PROC [code: ErrorCode];
ErrorCode: TYPE = MACHINE DEPENDENT {
unsuitableMachine(991),
-- 992 and 993 are reserved for UserCredentialsUnsafeImpl
implementationBug(998),
installationFailed(999), (9999)}; -- for maintenance panel
ValidateMicrocode: PROC RETURNS [error: LONG STRING];
-- From BasicLoader
DoLoading: PROC;
END.