Skip to content
Snippets Groups Projects
Commit 0c6b6e9c authored by Pepping's avatar Pepping
Browse files

added g_mem_data_w

parent c39449dd
Branches
No related tags found
No related merge requests found
...@@ -53,11 +53,12 @@ ENTITY tb_reorder_transpose IS ...@@ -53,11 +53,12 @@ ENTITY tb_reorder_transpose IS
g_wr_chunksize : POSITIVE := 256; g_wr_chunksize : POSITIVE := 256;
g_rd_chunksize : POSITIVE := 16; g_rd_chunksize : POSITIVE := 16;
g_rd_nof_chunks : POSITIVE := 16; g_rd_nof_chunks : POSITIVE := 16;
g_rd_interval : POSITIVE := 16; g_rd_interval : POSITIVE := 16; -- When pre-transpose is used equal to g_rd_chunksize.
g_gapsize : NATURAL := 0; g_gapsize : NATURAL := 0;
g_nof_blocks : POSITIVE := 32; g_nof_blocks : POSITIVE := 32;
g_nof_streams : POSITIVE := 4; g_nof_streams : POSITIVE := 4;
g_in_dat_w : POSITIVE := 8; g_in_dat_w : POSITIVE := 8;
g_mem_dat_w : NATURAL := 256; -- The data width to the attached memory.
g_ena_pre_transp : BOOLEAN := TRUE g_ena_pre_transp : BOOLEAN := TRUE
); );
END tb_reorder_transpose; END tb_reorder_transpose;
...@@ -278,7 +279,8 @@ BEGIN ...@@ -278,7 +279,8 @@ BEGIN
g_in_dat_w => c_bg_buf_dat_w/c_nof_complex, g_in_dat_w => c_bg_buf_dat_w/c_nof_complex,
g_frame_size_in => g_wr_chunksize, g_frame_size_in => g_wr_chunksize,
g_frame_size_out => g_wr_chunksize, g_frame_size_out => g_wr_chunksize,
g_use_complex => c_use_complex, g_use_complex => c_use_complex,
g_mem_dat_w => g_mem_dat_w,
g_ena_pre_transp => g_ena_pre_transp, g_ena_pre_transp => g_ena_pre_transp,
g_reorder_seq => c_reorder_seq_conf g_reorder_seq => c_reorder_seq_conf
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment