Skip to content

Commit 0590d4f

Browse files
FF macro termination corrected
Macros do not need to be terminated with semi-colon.
1 parent a256a3b commit 0590d4f

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)