chipsalliance / aib-protocols

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CA VPD dump support

nij-intel opened this issue · comments

added this to ca_top_tb.sv:

initial
begin
if ($test$plusargs("WAVES_OFF"))
begin
$display ("WAVE dumping disabled");
end
else
begin
ifdef WAVES_FSDB $display ("FSDB Wave dumping enabled."); $fsdbDumpfile("test_top"); $fsdbDumpvars; elsif WAVES_VCD
$display ("VCD Wave dumping enabled");
$dumpvars;
elsif WAVES_VPD $display ("VPD Wave dumping enabled."); $vcdpluson; endif
end
end // initial begin

For example: after line 625:

image

and change makefile to include this option:

image

0.9.7 does not have this update

run_nightly.sh should be modified for VCS
cov_wave_opt=WAVES_OFF