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 can I make up .vcd file directly?

Status
Not open for further replies.

zpmanr

Newbie level 5
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

zpmanr said:
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!!

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.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top