I'm still relatively new to SKILL. After looking at the
documentation, I found a few commands to store Instances to a
list.
cv = dbOpenCellViewByType(lib cell "schematic" "" "a")
foreach(inst cv~>instances
geSelectObjectNoFilter(inst)
The above code obtains all the instances in a cellview.
However, I just need to obtain a row of instances. For example,
level one output routing occus at (2,i*height).
Is there a way to just store every instance in a column, where i changes from 0 to bits-1, into a list?
The end goal is to create the next level of output routing, based on the list items.