Skip to content

Commit

Permalink
cosmetics
Browse files Browse the repository at this point in the history
  • Loading branch information
faramire committed Apr 18, 2024
1 parent 401ec0f commit 7bc14e4
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/stopwatch_top.v
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ module clockDivider (


always @(posedge clk_in) begin
if (!res) begin // reset
if (!res) begin // reset
counter <= 14'b0;
clk_out <= 1'b0;
end else if (ena) begin
Expand Down Expand Up @@ -221,13 +221,6 @@ module counter_chain (

wire max; // just something to connect the unused max pin of the last counter to something

/* reg res;
always @(negedge res_in) begin
end
*/

counter10 inst_ces_0X ( // counts first digit centiseconds
.clk (clk), // clock in
.ena (ena), // enable
Expand Down

0 comments on commit 7bc14e4

Please sign in to comment.