We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94d285b commit 554ebbcCopy full SHA for 554ebbc
1 file changed
src/delta_counter.sv
@@ -31,7 +31,7 @@ module delta_counter #(
31
32
always_ff @(posedge clk_i or negedge rst_ni)
33
begin
34
- if(rst_ni) begin
+ if(!rst_ni) begin
35
overflow_q <= 1'b0;
36
end else begin
37
overflow_q <= overflow_d;
0 commit comments