• 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. Identify the nets (Aggressor and Victim)

Stats

  • Locked Locked
  • Replies 1
  • Subscribers 144
  • Views 15075
  • 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

Identify the nets (Aggressor and Victim)

MaximSubhash
MaximSubhash over 11 years ago

Hi,
I am trying to write a skill code  to identify the aggressor and victim nets.
Aggressor net means :  Nets carrying noisy signals (CLKs / Digital select signals etc...)
Victim net means :  Nets with Voltage or Currents for reference (Ref signals / critical analog signals)
Skill code functionality trying to achieve:
Should be able to provide the two list of net names in a form (one for Aggressor and other for Victim nets)
We should run LVS and extract these nets from LVS result (Assura or Calibre)
Generate the report pointing which net is running next to aggressor or victim net.

 

I need help in skill code of form where ut will ask for two lists of nets and link to Assura or Calibre rule file. 

 

Thanks!

Subhash 

  • Cancel
  • Quek
    Quek over 11 years ago

    Hi Subhash

    You can get the required inputs as follows:

    procedure( CCSgetNets()
       let( (aggressorNets victimNets)
          aggressorNets=hiCreateStringField(
             ?name 'aggressorNets
             ?prompt "Aggressor nets"
          ) ;hiCreateStringField

          victimNets=hiCreateStringField(
             ?name 'victimNets
             ?prompt "Victim nets"
          ) ;hiCreateStringField

          hiCreateAppForm(
             ?name 'myNetsForm
             ?formTitle "Aggressor/Victim nets"
             ?fields list(aggressorNets victimNets)
             ?initialSize list(300 300)
             ?callback "CCSdoSomething(hiGetCurrentForm())"
          ) ;hiCreateAppForm

          hiDisplayForm( 'myNetsForm )
       ) ;let
    ) ;procedure


    procedure( CCSdoSomething(myNetsForm)
       let( (aggressorNets victimNets)
          aggressorNets=myNetsForm~>aggressorNets~>value
          victimNets=myNetsForm~>victimNets~>value
          system("assura ...")
       ) ;let
    ) ;procedure


    Best regards
    Quek

    • 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