Skip to content

Commit

Permalink
Comment out unneeded clock driving circuitry in the testbench.
Browse files Browse the repository at this point in the history
  • Loading branch information
FavoritoHJS committed Aug 27, 2024
1 parent 6e3b9c3 commit f8e0d8a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/tb.v
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ module tb ();
wire [7:0] uio_out;
wire [7:0] uio_oe;
//https://www.chipverify.com/verilog/verilog-testbench-simulation
always #1 clk = ~clk;
//Clock is driven from the testbench.
//always #1 clk = ~clk;

// Replace tt_um_example with your module name:
tt_um_favoritohjs_scroller user_project (
Expand Down

0 comments on commit f8e0d8a

Please sign in to comment.