Skip to content

Commit

Permalink
tb_top: toggle reset signal
Browse files Browse the repository at this point in the history
  • Loading branch information
kgugala committed Dec 27, 2024
1 parent 54ab41b commit 68faea9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions testbench/tb_top.sv
Original file line number Diff line number Diff line change
Expand Up @@ -1019,8 +1019,10 @@ module tb_top

`ifndef VERILATOR
$dumpfile("dump.vcd");
$dumpvars(0, tb_top);
//if($test$plusargs("dumpon")) $dumpvars;
$dumpvars(0, tb_top);
rst_l = 1'b1;
rst_l = #5 1'b0;
rst_l = #5 1'b1;
forever core_clk = #5 ~core_clk;
`endif
end
Expand Down

0 comments on commit 68faea9

Please sign in to comment.