Skip to content

Commit

Permalink
data_offload: Fix error regarding invalid value for param MEM_TYPE
Browse files Browse the repository at this point in the history
Signed-off-by: Iulia Moldovan <Iulia.Moldovan@analog.com>
  • Loading branch information
IuliaCMoldovan committed Sep 29, 2023
1 parent 73a45c8 commit c3aa014
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/data_offload/data_offload.v
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
module data_offload #(

parameter ID = 0,
parameter [ 0:0] MEM_TYPE = 1'b0, // 1'b0 -FPGA RAM; 1'b1 - external memory
parameter MEM_TYPE = 0, // 1'b0 -FPGA RAM; 1'b1 - external memory
parameter MEM_SIZE_LOG2 = 10, // log2 of memory size in bytes

parameter TX_OR_RXN_PATH = 0, // if set IP is used in TX path, other wise in RX path
Expand Down

0 comments on commit c3aa014

Please sign in to comment.