CRProcs.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
Barth, March 17, 1987 2:28:51 pm PST
Spreitzer, April 10, 1986 2:31:35 pm PST
Bertrand Serlet June 2, 1986 1:42:24 pm PDT
DIRECTORY CD, Core, Sisyph;
CRProcs: CEDAR DEFINITIONS = BEGIN
dataBits: INT = 14; -- 3
addressBits: INT = 11; -- 9
rowQuads: INT = 56; -- 6
CrossRAMState: TYPE = REF CrossRAMStateRec;
CrossRAMStateRec: TYPE = RECORD[
accessOccured, precharged: BOOLFALSE,
address: CARDINAL,
memory: SEQUENCE length: CARDINAL OF CrossRAMWord];
CrossRAMWord: TYPE = RECORD[
data: CARDINAL];
InitContext: PROC [cx: Sisyph.Context];
DecoderLogicDriver: PROC [cx: Sisyph.Context] RETURNS [ct: Core.CellType];
DecoderAndPlane: PROC [cx: Sisyph.Context] RETURNS [ct: Core.CellType];
DataBufferMux: PROC [cx: Sisyph.Context] RETURNS [ct: Core.CellType];
END.