-- Copyright (C) 1983  by Xerox Corporation. All rights reserved. 
-- BootServerBasics.mesa, HGM, 24-Sep-83 14:27:16

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), other(LAST[WORD])};
    
  BootFileType: TYPE = MACHINE DEPENDENT {
    reserved(0), microcode, germ, boot, pup, other(LAST[WORD])};

  END.