dbCreatePinGroup
dbCreatePinGroup(d_cellView t_name t_faceType) =>d_dpg/ nil
Description
(Virtuoso MultiTech Framework Only) Returns the pin group created with the given arguments.
Arguments
|
The name of a placeBound. For details, see dbCreatePlaceBound. |
|
Value Returned
Example
The following example modifies a die footprint cell by creating placeBounds and die pin groups.
dieFootprint = (dbOpenCellViewByType "testLib" "footprint" "base" "maskLayout" "w")
placeBound1 = (dbCreatePlaceBound dieFootprint "left" list(0:0 100:100) 0 100)
placeBound2 = (dbCreatePlaceBound dieFootprint "right" list(100:0 200:100) 50 100)
pinGroupLeftTop = (dbCreatePinGroup dieFootprint "left" "top")
pinGroupLeftBottom = (dbCreatePinGroup dieFootprint "left" "bottom")
pinGroupRightTop = (dbCreatePinGroup dieFootprint "right" "top")
pinGroupRightBottom = (dbCreatePinGroup dieFootprint "right" "bottom")
Related Topics
dbGetPinGroupPlaceBoundNameAndFace
Return to top