|
发表于 2021-1-15 00:17:36
|
显示全部楼层
Cadence自带帮助文档里有
Pin Placement
Specifies the placement of pins on a symbol. Pin placement can be defined as any of the following two options:
Left and Right Sides: Places pins on the left and right sides of a symbol, usually with input pins on the left and inout pins and output pins on the right.
All Sides: Places pins on any side of a symbol.
Pin Placement File: Places pins on specific sides of modules as defined in a file called pin placement file. When you select this option, you must provide the path of the pin placement file in the Pin Placement File Name field.
Pins and their placement on modules are defined in the pin placement file in the following format:
pin_placement := {moduleName, {left|right|top|bottom},comma-separated-pin-name-list}
For example:
pin_placement := inv, left,a,b,c,d
pin_placement := inv, top,e,f
pin_placement := test4, bottom, c, d
pin_placement := test4, left, e
The first line in the example given above specifies that module inv has pins a, b, c, and d oriented on the left side.
Default value: Left and Right Sides |
|