Re: verilog-xl can dump vcd, but ncverilog can not dump vcd
On Thu, 17 Dec 2009 17:32:56 -0800, teacupfull business wrote:
> For a test bench, verilog-xl can dump vcd, but ncverilog can not dump.
> I kind of suspect my ncverilog setting has problem. But can't figure
> out.
> Any guesses on this?
Sure it can. If you have NC you want to use the .trn format which is much
more efficient then vcd, use the recordvars task for .trn
$recordfile("sys_lp","compress");
$recordvars(sys_lp);
If you need to use vcd then it uses the standard Verilog dumpvars.
|