SSI.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
Barth, January 23, 1986 4:46:34 pm PST
SSI: CEDAR DEFINITIONS = BEGIN OPEN CoreCreate;
"Vdd", "Gnd", "Input", "nOutput"
Inverter:
PROC [w:
NAT ← 4, r:
REAL ← 2.5]
RETURNS [ct: CellType];
"Vdd", "Gnd", "Input", "Drive", "nDrive", "nOutput"
TristateBuffer:
PROC [w:
NAT ← 4, r:
REAL ← 2.5]
RETURNS [ct: CellType];
"Vdd", "Gnd", Seq["Input", i], "nOutput"
NAnd:
PROC [i:
NAT ← 2, w:
NAT ← 4, r:
REAL ← 2.5]
RETURNS [ct: CellType];
"Vdd", "Gnd", Seq["Input", i], "Output"
And:
PROC [i:
NAT ← 2, w:
NAT ← 4, r:
REAL ← 2.5]
RETURNS [ct: CellType];
"Vdd", "Gnd", Seq["Input", i], "nOutput"
NOr:
PROC [i:
NAT ← 2, w:
NAT ← 4, r:
REAL ← 2.5]
RETURNS [ct: CellType];
"Vdd", "Gnd", Seq["Input", i], "Output"
Or:
PROC [i:
NAT ← 2, w:
NAT ← 4, r:
REAL ← 2.5]
RETURNS [ct: CellType];
END.