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

dbGetMemNetSig

dbGetMemNetSig
dbGetMemNetSig( ( d_net x_index ) ) 
 => d_sig / nil 

dbGetMemNetSig( d_net x_index ) 
 => d_sig / nil 

Description

Retrieves the signal carried by bit number x_index of net d_net.

The pair (d_net x_index) is called the member net of the signal. A signal can be carried by one or many member nets. The function accepts the arguments separately or as a list.

Arguments

d_net

A net carrying the signal.

x_index

An integer representing a bit number in the net d_net.

Value Returned

d_sig

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.”

sigA = dbGetMemNetSig(list(net 0)) 
sigB = dbGetMemNetSig(net 1)

Related Topics

Connectivity Access Functions


Return to top
 ⠀
X