-- Copyright (C) 1983, 1985 by Xerox Corporation. All rights reserved. -- BootServerBasics.mesa, HGM, 5-Sep-85 19:56:28 DIRECTORY Boot USING [EthernetBootFileNumber]; BootServerBasics: DEFINITIONS = BEGIN BootFileNumber: TYPE = Boot.EthernetBootFileNumber; MachineType: TYPE = MACHINE DEPENDENT { reserved(0), alto(100), d0(200), dorado(300), dLion(400), dLionTrident(401), dicentra(500), dove(600), other(LAST[WORD])}; BootFileType: TYPE = MACHINE DEPENDENT { reserved(0), microcode, germ, boot, pup, other(LAST[WORD])}; END.