Skip to content

Commit

Permalink
treewide: Replace non-resettable FFs
Browse files Browse the repository at this point in the history
  • Loading branch information
colluca committed Nov 5, 2024
1 parent 554ebbc commit 842753e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/isochronous_spill_register.sv
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ module isochronous_spill_register #(
`FFLARN(rd_pointer_q, rd_pointer_q+1, (dst_valid_o && dst_ready_i), '0, dst_clk_i, dst_rst_ni)

T [1:0] mem_d, mem_q;
`FFLNR(mem_q, mem_d, (src_valid_i && src_ready_o), src_clk_i)
`FFL(mem_q, mem_d, (src_valid_i && src_ready_o), '0, src_clk_i, src_rst_ni)
always_comb begin
mem_d = mem_q;
mem_d[wr_pointer_q[0]] = src_data_i;
Expand Down

0 comments on commit 842753e

Please sign in to comment.