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

dbGetMemNetSigName

dbGetMemNetSigName
dbGetMemNetSigName( d_net x_index ) 
 => t_name / nil 

dbGetMemNetSigName( ( d_net x_index ) ) 
 => t_name / nil 

Description

Similar to dbGetMemNetSig, except it returns the name of the signal instead of the signal object.

Arguments

d_net

A net carrying the signal.

x_index

An integer representing a bit number in the net d_net.

Value Returned

t_name

The name of the signal carried by the specified member net.

nil

The member net specification is invalid.

Examples

Create a net carrying two signals “a” and “b”.

net = dbCreateNet(cellview "a,b") 

Get signal “a” then signal “b” from net “a, b”.

sigNameA = dbGetMemNetSigName(list(net 0)) 
sigNameB = dbGetMemNetSigName(net 1)

Related Topics

Connectivity Access Functions


Return to top
 ⠀
X