Skip to content

Commit

Permalink
fix dma fifos (#626)
Browse files Browse the repository at this point in the history
  • Loading branch information
davideschiavone authored Jan 26, 2025
1 parent 01514b8 commit 5cadebf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hw/ip/dma/rtl/dma.sv
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ module dma #(
/* Read FIFO */
fifo_v3 #(
.DEPTH(FIFO_DEPTH),
.FALL_THROUGH(1'b1)
.FALL_THROUGH(1'b0)
) dma_read_fifo_i (
.clk_i(clk_cg),
.rst_ni,
Expand All @@ -207,7 +207,7 @@ module dma #(
/* Read address mode FIFO */
fifo_v3 #(
.DEPTH(FIFO_DEPTH),
.FALL_THROUGH(1'b1)
.FALL_THROUGH(1'b0)
) dma_read_addr_fifo_i (
.clk_i(clk_cg),
.rst_ni,
Expand Down

0 comments on commit 5cadebf

Please sign in to comment.