R
rick
Guest
I need to dump the system query results which lists the pin
connections of an instance. Is there a way to do this?
Thanks
connections of an instance. Is there a way to do this?
Thanks
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Hi Riad - Excellent routine!!!! Just curious, what search termsHi Rick,
I have put together an example in a previous thread:http://groups.google.com/group/comp.cad.cadence/browse_thread/thread/...
This is a snippet.
procedure( RKconnectivityExample( libName cellName viewName "ttt" )
let((cv)
cv=dbOpenCellViewByType(libName cellName viewName)
when(cv
foreach( inst cv~>instances
printf( "Instance %s:\n" inst~>name )
foreach( instTerm inst~>instTerms
printf( " -> instTerm \"%s\" connected to net \"%s\".\n"
instTerm~>name instTerm~>net~>name
)
)
)
)
t
)
)
In order to print into a file, you just need to open a port using
'outfile' and then use fprintf instead of printf.
Assuming I have understood your question ...
Cheers,
Riad.