dbGetSigNameMemNets
dbGetSigNameMemNets(d_cellViewt_sigName) => ( (t_netNamex_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
Value Returned
|
The name of the net and the index representing the net member containing the signal. |
|
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
Return to top