CrystalOps.mesa
Barth, February 17, 1986 2:55:48 pm PST
DIRECTORY Core, CoreClasses;
CrystalOps: CEDAR DEFINITIONS = BEGIN
SetCap: PROC [wire: Core.Wire, cap: pfs] RETURNS [sameWire: Core.Wire];
Sets the Crystal wire capacitance.
pfs: TYPE = REAL;
SetAtt: PROC [transistor: Core.CellType, port: CoreClasses.TransistorPort, attribute: Core.ROPE] RETURNS [sameTransistor: Core.CellType];
Puts the attribute on the port. The value should not include "Crystal:"
NetFromCore: PROC[ct: Core.CellType];
Flattens the Core data structure into the Crystal data structure.
END.