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

Added generic for enabling the pre-transpose

parent 874fbca5
No related branches found
No related tags found
No related merge requests found
...@@ -58,7 +58,8 @@ ENTITY tb_reorder_transpose IS ...@@ -58,7 +58,8 @@ ENTITY tb_reorder_transpose IS
g_nof_blocks : POSITIVE := 4; g_nof_blocks : POSITIVE := 4;
g_nof_blk_per_sync : POSITIVE := 64; g_nof_blk_per_sync : POSITIVE := 64;
g_nof_streams : POSITIVE := 4; g_nof_streams : POSITIVE := 4;
g_in_dat_w : POSITIVE := 8 g_in_dat_w : POSITIVE := 8;
g_ena_pre_transp : BOOLEAN := TRUE
); );
END tb_reorder_transpose; END tb_reorder_transpose;
...@@ -280,7 +281,7 @@ BEGIN ...@@ -280,7 +281,7 @@ BEGIN
g_frame_size_out => g_wr_chunksize, g_frame_size_out => g_wr_chunksize,
g_nof_blk_per_sync => g_nof_blk_per_sync, g_nof_blk_per_sync => g_nof_blk_per_sync,
g_use_complex => c_use_complex, g_use_complex => c_use_complex,
g_ena_pre_transp => FALSE, g_ena_pre_transp => g_ena_pre_transp,
g_reorder_seq => c_reorder_seq_conf g_reorder_seq => c_reorder_seq_conf
) )
PORT MAP ( PORT MAP (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment