Go Back   Velocity Reviews > Newsgroups > VHDL
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

VHDL - About fsdb Dump using ncvhdl

 
Thread Tools Search this Thread
Old 03-05-2008, 03:49 AM   #1
Default About fsdb Dump using ncvhdl


Hi,

I'm a newer in VHDL and trying to dump the waveform using ncvhdl but
not work.
The simulation is passes but no fsdb file created.
The source is as follows and hope someone help me to check if there
any wrong.

================================================== =========
library ieee;
use ieee.std_logic_1164.all;

use work.novas.all;

entity test is
generic (
clkperiod : integer := 20
);
end;

architecture behav of test is

constant ct : integer := clkperiod/2;
signal clk : std_logic := '0';

begin

clk <= not clk after ct * 1 ns;

process
begin
fsdbDumpfile("test.fsdb");
fsdbDumpvars(0, ":");
wait;
end process;

end;
================================================== =========



Thanks.
Andrew


ytfilter
  Reply With Quote
Old 03-06-2008, 05:35 AM   #2
JK
 
Posts: n/a
Default Re: About fsdb Dump using ncvhdl
On Mar 5, 8:49*am, ytfilter <AndrewYT.Chu...@gmail.com> wrote:
> Hi,
>
> I'm a newer in VHDL and trying to dump the waveform using ncvhdl but
> not work.
> The simulation is passes but no fsdb file created.
> The source is as follows and hope someone help me to check if there
> any wrong.
>


Are you compiling novas.vhd into work library?
Please check that correct environment variables are set and you are
loading novas_fli into simulator.

For modelsim,
we have to set environment variable: setenv PLIOBJS
"<debussy_inst_dir>/share/PLI/modelsim_fli61/LINUX/novas_fli.so"
while compiling rtl, compile : vcom -explicit -2002 -work work
"<debussy_inst_dir>/share/PLI/modelsim_fli61/LINUX/novas.vhd"

May be the similar case with ncvhdl. Please check.

Regards,
JK


JK
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46