I have schematic with multiple instances connected to one of the nets. I need a SKILL function that will print for all instances list of pins connected to this net
How to get list of instance pins connected to net in Cadence Virtuoso schematic using SKILL
5.9k Views Asked by Alex At
2
There are 2 best solutions below
3

Or shorter:
procedure( ABC_findInstsAndPinsByNet(cvId netName)
let( (netId returnTable)
returnTable = makeTable("ABC_findInstsAndPinsByNet" nil)
netId = dbFindNetByName(cvId netName)
foreach( termId netId~>instTerms
returnTable[termId~>inst] = cons(termId~>name returnTable[termId~>inst])
)
returnTable ;;return
)
)
And then, to read it:
rezTbl = ABC_findInstsAndPinsByNet(cv() "net2")
printstruct(rezTbl)
and you will get something like:
printstruct(rezTbl)
Structure of type association table (table:ABC_findInstsAndPinsByNet):
db:0x3f04079b: ("d")
db:0x3f04079c: ("d" "g")
db:0x3f04079a: ("s")
t
or if you want to parse all:
foreach( elem rezTbl
printf("%L => %L\n" elem rezTbl[elem])
)