Y
ytfilter
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
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