Pads.mesa 
Copyright © 1985 by Xerox Corporation. All rights reversed.
Last Edited by: Barth, July 7, 1985 1:07:46 pm PDT
DIRECTORY
Core;
Pads: CEDAR DEFINITIONS =
BEGIN OPEN Core;
Ports: Vdd, Gnd, Pad, nOutput
CreateBasicInputPad: PROC [design: Design] RETURNS [ct: CellType];
Ports: Vdd, Gnd, Pad, Output
CreateInputPad: PROC [design: Design] RETURNS [ct: CellType];
Ports: Vdd, Gnd, Pad, Output, nOutput
CreateDifferentialInputPad: PROC [design: Design] RETURNS [ct: CellType];
Ports: Vdd, Gnd, Read, nRead, Write, nWrite, Pad, Data
CreateBidirectionalPad: PROC [design: Design] RETURNS [ct: CellType];
END.