CoreTransistor.mesa 
Copyright © 1985 by Xerox Corporation. All rights reversed.
Last Edited by: Barth, July 10, 1985 3:14:00 pm PDT
DIRECTORY
ChipCreate;
CoreTransistor: CEDAR DEFINITIONS =
BEGIN OPEN ChipCreate;
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.