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.

Dumping a vcd file starting from a "RST" transition to high until the end of simu

Status
Not open for further replies.

rayhuangno1

Newbie level 4
Joined
Jul 8, 2011
Messages
7
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,333
Dumping a vcd file starting from a "RST" transition to high until the end of simu

Hi, i am writing a tcl file to run simulation on ncsim.
i need to dump a vcd file starting from a "RST" transition to high until the end of simulation automatically.
please suggest a tcl script template to run the dumping.
thanks.
 

Re: Dumping a vcd file starting from a "RST" transition to high until the end of simu

In modelsim you could create breakpoint on certain signal and activity, so to control the start &stop of your sdc
 

Re: Dumping a vcd file starting from a "RST" transition to high until the end of simu

I used $dumpoff / $dumpon directives inside your testbench.
 

Re: Dumping a vcd file starting from a "RST" transition to high until the end of simu

You can use "when" command

when -fast {reset == '1'} {
vcd on
}
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top