Skip to content

Commit

Permalink
V14: Revert DMA_AXIS_DEST_W, fix FLOCK_WIDTH
Browse files Browse the repository at this point in the history
Their values were accidentally swapped.

Signed-off-by: Jorge Marques <[email protected]>
  • Loading branch information
gastmaier committed Nov 13, 2024
1 parent c2d52ed commit 229f08f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/axi_dmac/axi_dmac.v
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ module axi_dmac #(
parameter AXI_ID_WIDTH_DEST = 1,
parameter AXI_ID_WIDTH_SG = 1,
parameter DMA_AXIS_ID_W = 8,
parameter DMA_AXIS_DEST_W = 3,
parameter DMA_AXIS_DEST_W = 4,
parameter DISABLE_DEBUG_REGISTERS = 0,
parameter ENABLE_DIAGNOSTICS_IF = 0,
parameter ALLOW_ASYM_MEM = 0,
Expand All @@ -76,7 +76,7 @@ module axi_dmac #(
parameter [2:0] AXI_AXPROT = 3'b000,
parameter DMA_2D_TLAST_MODE = 0,
parameter FRAMELOCK = 0,
parameter MAX_NUM_FRAMES_WIDTH = 4,
parameter MAX_NUM_FRAMES_WIDTH = 3,
parameter USE_EXT_SYNC = 0,
parameter AUTORUN = 0,
parameter AUTORUN_FLAGS = 0,
Expand Down

0 comments on commit 229f08f

Please sign in to comment.