Skip to content

Commit a3b5f18

Browse files
authored
Merge pull request #403 from marnovandermaas/patch-1
FF macro termination corrected
2 parents a256a3b + 0590d4f commit a3b5f18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/axi_fifo_delay_dyn.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ module stream_fifo_delay_dyn #(
300300
logic fifo_dead_full, fifo_dead_empty, fifo_dead_push, fifo_dead_pop;
301301
logic fifo_data_full, fifo_data_empty, fifo_data_push, fifo_data_pop;
302302

303-
`FF(ready_count_q, ready_count_d, '0, clk_i, rst_ni);
303+
`FF(ready_count_q, ready_count_d, '0, clk_i, rst_ni)
304304

305305
always_comb begin
306306
ready_count_d = ready_count_q;

0 commit comments

Comments
 (0)