Product Documentation
Virtuoso Layout Suite SKILL Reference
Product Version IC23.1, November 2023

mgAddCopyDummies

mgAddCopyDummies(
d_mgID
t_sideString
S_netName
l_insts
)
=> t / nil

Description

Creates copies of the specified Modgen dummy and places them on the t_sideString side of the instance.

Arguments

d_mgID

Modgen figGroupId for which dummies need to be created.

t_sideString

Side of the instance where the dummies need to be placed. Valid values are left, right, top, and bottom.

S_netName

Name of the net to which the dummies need to be connected.

l_insts

List of instances.

Value Returned

t

The dummy copies were created.

nil

The dummy copies were not created.

Example

Creates copies of the specified dummies on the left of the instance "|M5" and "|M6":

mgId = leGetEditFigGroup()
cv = geGetEditCellview()
inst1 = dbFindAnyInstByName(cv "|M5")
inst2 = dbFindAnyInstByName(cv "|M6")
mgAddCopyDummies(mgId "left" "vdda!" list(inst1 inst2))

Return to top
 ⠀
X