SCLibGenCells3.mesa
Copyright (C) 1986 by Xerox Corporation. All rights reserved.
Created by: Jacobi June 2, 1986 3:48:19 pm PDT
Last Edited by: Jacobi July 11, 1986 10:36:12 am PDT
DIRECTORY
SCLibGen;
SCLibGenCells3: CEDAR PROGRAM
IMPORTS SCLibGen =
BEGIN
OPEN SCLibGen;
CreateCellDummy: GeneratorProc =
BEGIN
Setup[design, "p4", "p4"];
HorizontalM[rowL: 1, rowR: 2, h: 8];
ContactM2[1, 2];
Pins[2 , "in", "out"];
PinOrder["in out Vdd Gnd"];
ob ← Finish["my-dummy"];
END;
Register["Dummy", CreateCellDummy];
END.