Skip to content

Commit

Permalink
Trying to pass PROC_DFF
Browse files Browse the repository at this point in the history
  • Loading branch information
SagarDevAchar authored Aug 31, 2024
1 parent a97ef2e commit 5f5ab5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/freq_synth.v
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module freq_synth(
reg audio_reg;
reg [6:0] hp_ctr;
always @(posedge synth_clk, negedge rst_n) begin
if (~active | ~rst_n) begin
if (~rst_n) begin
audio_reg <= 1'd0;
hp_ctr <= 7'd1;
end else begin
Expand Down

0 comments on commit 5f5ab5b

Please sign in to comment.