SmallCacheDataPath.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
Don Curry, March 16, 1988 5:11:44 pm PST
DIRECTORY Core, CoreClasses;
SmallCacheDataPath: CEDAR DEFINITIONS =
BEGIN
Structure: PROC[wds, bits: NAT] RETURNS [public: Core.Wires]; -- strc and flat
Code for a wire icon that transforms a bus of w*b bits into a bus of w words of b bits
flat[i] = strc[i/w][i MOD w]
BusShort: PROC[size: INT] RETURNS[wire: Core.Wire]; -- w and sw
Trans: PROC[type: CoreClasses.TransistorType, length, width: INT]
RETURNS [cellType: Core.CellType];
END.