Transistor.mesa
Copyright © 1985 by Xerox Corporation. All rights reversed.
Last Edited by: Barth, July 5, 1985 3:34:15 pm PDT
Transistor:
CEDAR
DEFINITIONS =
BEGIN OPEN Core;
Ports: gate, ch1, ch2
CreateTransistor: PROC [design: Design, type: TransistorType ← nE, width: NAT ← 4, length: NAT ← 2] RETURNS [t: CellType];
TransistorType: TYPE = {nE, pE};
END.