Product Documentation
Virtuoso Studio Design Environment SKILL Reference
Product Version IC23.1, November 2023

dbGetSigNameMemNets

dbGetSigNameMemNets( 
d_cellView 
t_sigName 
) 
=> ( (t_netName x_index) ...) / nil 

Description

Lists the member nets within the cellview that contain the signal.

The member net is output as a list of lists, each sublist containing the name of the net and the index representing the net member containing the signal.

Arguments

d_cellView

Cellview where signal t_sigName resides.

t_sigName

The name of the signal.

Value Returned

t_netName x_index

The name of the net and the index representing the net member containing the signal.

nil

signal t_sigName does not exist in cellview d_cellView.

Example

Creates a net containing two s “a” and “b.”

net = dbCreateNet(cellview "a,b") 

Gets member net for signal “a.”

dbGetSigNameMemNets(cellview "a") 
=> (("a,b" 0))

Related Topics

Connectivity Access Functions


Return to top
 ⠀
X