-- DeviceTypes.mesa (last edited by: McJones on: February 15, 1980 11:42 AM)
DIRECTORY
Device: FROM "Device" USING [nullType, Type];
DeviceTypes: DEFINITIONS SHARES Device =
BEGIN
-- Enumeration of Device.Type’s for devices supporting Pilot boot loaders or a DiskChannel implementation
-- NOTE: This module contains only constants, and should not be included by any definitions module. Thus it will always be possible to recompile it without recompiling all the implementation modules including it.
null:Device.Type = Device.nullType;
diablo31:Device.Type = [0];
sa800:Device.Type = [1]; -- Shugart Associates 8xy
sa1000:Device.Type = [2];
sa4000:Device.Type = [3]; -- Shugart Associates 400x
cdc9730:Device.Type = [4];
ethernet:Device.Type = [5];
END.
LOG
Time: January 21, 1980 4:11 PMBy: McJonesAction: Create file