CMosCMTransistors.mesa (part of ChipNDale)
Copyright © 1983, 1985 by Xerox Corporation. All rights reserved.
Created by Christian Jacobi May 3, 1983 11:22 am
Last edited by: Christian Jacobi, October 17, 1986 1:34:53 pm PDT
DIRECTORY
CMos USING [lambda],
CD USING [Number, Object, Layer, undefLayer];
CMosCMTransistors: CEDAR DEFINITIONS =
BEGIN
wXExtension: CD.Number = 2*CMos.lambda;
lXExtension: CD.Number = 2*CMos.lambda;
TransistorPtr: TYPE = REF TransistorRec;
TransistorRec:
TYPE =
RECORD [
width: CD.Number,
length: CD.Number,
wExt: CD.Number ← wXExtension,
lExt: CD.Number ← lXExtension,
angle: BOOL ← FALSE
];
CreateTransistor:
PROC [w, l:
CD.Number, wExt:
CD.Number←wXExtension, lExt:
CD.Number←lXExtension, difLev:
CD.Layer←
CD.undefLayer]
RETURNS [
CD.Object];
--Do not use wExt, lExt, it is included for compatibility only
CreateAngleTransistor:
PROC [w, l:
CD.Number, wExt:
CD.Number←wXExtension, lExt:
CD.Number←lXExtension, aExt:
CD.Number𡤀, difLev:
CD.Layer←
CD.undefLayer]
RETURNS [
CD.Object];
--Do not use wExt, lExt, it is included for compatibility only
--All create procedures create in an orientation
--w in direction of increasing x
--l in direction of increasing y
--All create procedures may (or may not) create references to
--the same object. Therefore consider the transistor objects as
--readonly. If a transistor needs to be modified create a new one!
END.