Friday, November 21, 2008     Register | Login | Search | Contact Us
     

Many of you already received communications about the move of the Cadence user community into cadence.com. And many of you have already joined, with over 4000 registrations in the first two weeks.

The new Cadence Community enhances the ability of Cadence users to connect and collaborate. In addition to moving the community into cadence.com -- enabling single sign-on for community, Sourcelink and Cadence events -- the new site is organized around nine technology segments, giving you easy access to product information, training, forums and blogs. Some of the new features include:
  • Ability to respond to posts via e-mail
  • Technology-specific blogs
  • Latest Web 2.0 social networking capabilities
  • Public profile options
  • Private messaging
  • Friends lists
Visit the new Cadence Community today at www.cadence.com/community and join the discussions!

Registration note: Due to the scope of the enhancements and the new SSO registration system, we were not able to migrate existing cdnusers.org member accounts. So new registrations are required, but this enables a broader set of functionality we think you'll enjoy.

Forum note: Under the guidance of forum moderators, we have taken the 20+ cdnusers.org forums and consolidated them into 11 forums on the new site. Posts have been brought over so you can leverage that posting history. CDNusers forums will be set to read only starting 7/30, and cdnusers.org will be redirected to the new community on 8/4.

Best regards,
Mike and Tom

Michael A. Catrambone - Steering Committee Chairman
Distinguished Engineer
PCB/Mechanical
UTStarcom, Inc.

Tom Diederich
Cadence Community Manager
Home
Forums
Subject: accessing hdl signals in mixed language env
Posting to forums is available to community members only.
Login or Register
Rate this topic:
   
Author Messages
rprashant
Posts: 4
Online: User is Offline
10/03/2007 2:51 AM  
Hi, I have used define statements to acesses dut signals. Worked fine when the entire dut hierarchy was vhdl. Now with vhdl-verilog(netlist) specman says 'signal not found'.(it does exist) Eg:- define sig_a "~/c/b/a";-- where c--vhdl --and all heirachy at b and below is verilog. I am using sig_a inside a TCM which is a member of tb_env. Any solutions. Thanks, pr
stephenh
Posts: 77
Online: User is Offline
10/03/2007 4:20 AM  
You really should be using ports instead of computed names - the performance is better and it's more manageable.
e.g.

// declare the port<br>sig_a : inout simple_port of bit is instance; <br>// sig_a is a simulator signal rather than an e-to-e port<br>keep bind(sig_a, external);<br>// bind the HDL signal name.<br>// Can be done in top-level config file for best re-use<br>keep sig_a.hdl_path() == "~/c/b/a";  <br>

I've not used computed names for a long time, so I can't remeber if there were any known limitations on mixed HDL usage.
Maybe someone else can comment on that...

Steve H.
stephenh
Posts: 77
Online: User is Offline
10/03/2007 4:22 AM  
Sorry the forum mashed my code example!
Trying again:

// declare the port
sig_a : inout simple_port of bit is instance;
// sig_a is a simulator signal rather than an e-to-e port
keep bind(sig_a, external);
// bind the HDL signal name.
// Can be done in top-level config file for best re-use
keep sig_a.hdl_path() == "~/c/b/a";


Steve H.
hannes
Posts: 30
Online: User is Offline
10/03/2007 6:03 AM  

in mixed HDL environments it is important to make sure SPMN knows which interface adapter to use to access specific signals.
if you only have one HDL language then there is only one interface adapter. In mixed environments SPMN will use several interface adapters. you should read the documentation regarding the agent() attribute of units [e Language Reference - 5.3 Predefined Attributes and Methods for Any Unit]. this will define the correct agent to use and will ensure that the right signal is found.
Posting to forums is available to community members only.
Login or Register

Forums > Functional Verification > e > accessing hdl signals in mixed language env


ActiveForums 3.6
     
Copyright 2006 Cadence Design Systems, Inc.