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

Made some alignments

parent 90a82285
No related branches found
No related tags found
No related merge requests found
...@@ -41,14 +41,14 @@ USE work.dp_stream_pkg.ALL; ...@@ -41,14 +41,14 @@ USE work.dp_stream_pkg.ALL;
ENTITY dp_reinterleave IS ENTITY dp_reinterleave IS
GENERIC ( GENERIC (
g_dat_w : NATURAL; g_dat_w : NATURAL; -- Width of the data. Either the width of the datafield or the re and im field combined.
g_nof_in : NATURAL; g_nof_in : NATURAL; -- Number of input streams
g_deint_block_size : NATURAL; -- Inputs streams will be de-interleaved using this block size. Should match block_size_out when g_use_ctrl=TRUE g_deint_block_size : NATURAL; -- Inputs streams will be de-interleaved using this block size. Should match block_size_out when g_use_ctrl=TRUE
g_nof_out : NATURAL; g_nof_out : NATURAL; -- The number of output streams
g_inter_block_size : NATURAL; -- Outputs streams will be interleaved using this block size. Should match block_size_in when g_use_ctrl=TRUE g_inter_block_size : NATURAL; -- Outputs streams will be interleaved using this block size. Should match block_size_in when g_use_ctrl=TRUE
g_use_ctrl : BOOLEAN := TRUE; g_use_ctrl : BOOLEAN := TRUE;
g_use_complex : BOOLEAN; g_use_complex : BOOLEAN;
g_align_out : BOOLEAN := FALSE g_align_out : BOOLEAN := FALSE
); );
PORT ( PORT (
rst : IN STD_LOGIC; rst : IN STD_LOGIC;
...@@ -100,12 +100,12 @@ BEGIN ...@@ -100,12 +100,12 @@ BEGIN
u_reinterleave : ENTITY common_lib.common_reinterleave u_reinterleave : ENTITY common_lib.common_reinterleave
GENERIC MAP ( GENERIC MAP (
g_nof_in => g_nof_in, g_nof_in => g_nof_in,
g_deint_block_size => g_deint_block_size, g_deint_block_size => g_deint_block_size,
g_nof_out => g_nof_out, g_nof_out => g_nof_out,
g_inter_block_size => g_inter_block_size, g_inter_block_size => g_inter_block_size,
g_dat_w => g_dat_w, g_dat_w => g_dat_w,
g_align_out => g_align_out g_align_out => g_align_out
) )
PORT MAP ( PORT MAP (
rst => rst, rst => rst,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment