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 <[email protected]>
  • Loading branch information
IuliaCMoldovan committed Aug 2, 2023
1 parent 62a13a4 commit c27c6b0
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 c27c6b0

Please sign in to comment.