CRProcs.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
Barth, April 1, 1986 6:18:25 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: NAT = 14; -- 3
addressBits: NAT = 11; -- 9
rowQuads: NAT = 56; -- 6
CrossRAMState: TYPE = REF CrossRAMStateRec;
CrossRAMStateRec:
TYPE =
RECORD[
accessOccured, precharged: BOOL ← FALSE,
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.