• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Custom IC SKILL
  3. Schematic nets

Stats

  • Locked Locked
  • Replies 1
  • Subscribers 144
  • Views 13766
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Schematic nets

tito80
tito80 over 11 years ago
My problem is -- I have a list of instance names within a schematic. I want to capture only internal nets that are fed by instances other than these instances to these instances (i.e. output from one non-list instance to input of one list-instance). So this is the rough algo I am following

forall nets
if (net->term != nil)
forall insterms (net->instterms) 
if (dir == input && inst == (from within list of instances))
capture=1
elsif (dir == output && inst == (NOT from within list of instances)) 
capture=1
elsif (dir == output && inst == (from within list of instances)) 
capture=0
end if

I would like to have a pointer to a detailed SKILL documentation for schematic nets. For e.g., 

1) net~>?? shows me nil for terms where I do see terminals present. 
2) A net shows me 2 instTerm objects where I do see more instance terminals.
3) The netname sometimes come up as <*7>vccpq -- I see 7 instance terminals it connects to. However, only 2 come up on querying net~>instTerms
4) Sometimes I see same net name present in whole schematic for different nets, which finally represent the same node name in netlist. However, all of these different net segmets don't show up on querying instId~>nets (i.e. all insTerms scattered here and there dont come up). 
5) What is the difference between signals and nets.

  • Cancel
  • tweeks
    tweeks over 11 years ago

    The information you seek is buried in Chapter 2 of the Virtuoso Design Environment SKILL Reference:

        file://$CDSHOME/doc/skdfref/chap2.html#1066896
    

    However, even with the full documentation, digging connectivity info out of the schematic is not as easy as it could be. SKILL code needs to deal with the complications of bussed nets, iterated instances, and the complicated syntax for grouped wire names.

    I would recommend contacting your Cadence AE for help, as they have some code lying around that will get you closer to your goal. (Ask for a copy of "CCSFindSigNameConnectedToMemberOfIterInst()").

    Here are some built-ins that may aid you in your quest:

    dbGetInstByName()
    dbFindMemInstByName()
    dbGetAnyInstSwitchMaster()
    
    dbFindSigByName()
    dbFindTermByName()
    
    dbProduceMemName()
    
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information