Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

How to get deep hierarchy signals in top entity in NC-VHDL?

Status
Not open for further replies.

roger

Full Member level 3
Joined
Aug 27, 2003
Messages
162
Helped
4
Reputation
8
Reaction score
0
Trophy points
1,296
Activity points
1,617
init_signal_spy modelsim

in verilog we can use
wire signal=top.module1.module2.signal;

in modelsim we can use
init_signal_spy("../.../signal", signal1);

But in NC-VHDL
how can we got internal signal rather than using port mapping?

Help me please
 

init_signal_spy cadance

see pdf ncvhdl.pdf

C:\Program Files\Cadence Design Systems\LDV\doc\ncvhdl

ncvhdl.pdf utilities nc_mirror
 

init_signal_spy

I downloaded the signal_spy packeg from model.com.
could u pls explain me where to put those files and how to use it.


roger said:
in verilog we can use
wire signal=top.module1.module2.signal;

in modelsim we can use
init_signal_spy("../.../signal", signal1);

But in NC-VHDL
how can we got internal signal rather than using port mapping?

Help me please
 

modelsim hierarchy

how to use it

add the lib header

library modelsim.lib;
use modelsim_liob.util.all;

...
...
begin

init_signal_spy("??/??/??","signal_name",0);

you canrefer to the modelsim user manual
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top