CrossRAMPads.mesa 
Copyright © 1985 by Xerox Corporation. All rights reversed.
Last Edited by: Barth, August 3, 1985 11:08:50 am PDT
DIRECTORY CoreCreate;
CrossRAMPads: CEDAR DEFINITIONS = BEGIN OPEN CoreCreate;
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.