How can I make up .vcd file directly?

Status
Not open for further replies.

zpmanr

Newbie level 5
Joined
Dec 10, 2004
Messages
9
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
59
$fdumpfile

Generally we simulate according to following steps in Modelsim:
1.compile design code & testbench;
2.special the corresponding .sdf file ;
3.excute .do file which includes "force" section;
4.view waveform.

How can I dump waveform to vcd file through up steps directly?
And how can I dump waveform to fsdb file directly?

Thanks a lot!!
 

make vcd from dump

In verilog include the following in the testbench.

initial
begin
$dumpvars();
$fdumpfile ("./dump.vcd");
#10000 $finish;
end


let me know if this works out.

--kapil
 

dump vcd


Hi zpmanr,

You need some variable setting and a PLI file from novas to dump fsdb file directly, you can find detail info in the reference of Debussy or Verdi.

wang1
 

Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…