Skip to content

Commit

Permalink
Update clk_divider_tb.v
Browse files Browse the repository at this point in the history
  • Loading branch information
D3r3k23 authored Apr 20, 2021
1 parent 222fbc1 commit 5d343ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clk_divider_tb.v
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module clk_divider_tb;

// 1 kHz clock gen
initial clk_in = 1'b0;
always #500 clk_in <= ~clk_in; // 1 ms period
always #500 clk_in = ~clk_in; // 1 ms period

clk_divider #( .DIV(10) ) DUT // Divide clock frequency by 10
(
Expand Down

0 comments on commit 5d343ae

Please sign in to comment.