Skip to content
Snippets Groups Projects
Commit 1ad6f09d authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Clarified head and tail index.

parent b33cbbef
No related branches found
No related tags found
1 merge request!195Resolve L2SDP-564
...@@ -130,8 +130,11 @@ BEGIN ...@@ -130,8 +130,11 @@ BEGIN
src_out_arr => dp_split_src_out_2arr(i) src_out_arr => dp_split_src_out_2arr(i)
); );
dp_split_src_in_2arr(i)(1) <= c_dp_siso_rdy; -- In dp_split index 0 is head and index 1 is tail, but dp_split uses 0 TO
-- 1 range and dp_split_src_in_2arr()() uses 1 DOWNTO 0 range, so:
-- . dp_split_src_in_2arr()(1) is the header part, and
-- . dp_split_src_in_2arr()(0) is the tail part.
dp_split_src_in_2arr(i)(1) <= c_dp_siso_rdy; -- flow control for rx header to MM is always ready
END GENERATE; END GENERATE;
--------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------
...@@ -186,7 +189,7 @@ BEGIN ...@@ -186,7 +189,7 @@ BEGIN
st_clk => dp_clk, st_clk => dp_clk,
snk_out => dp_split_src_in_2arr(i)(0), snk_out => dp_split_src_in_2arr(i)(0),
snk_in => dp_split_src_out_2arr(i)(0), snk_in => dp_split_src_out_2arr(i)(0), -- tail part
src_in => dp_tail_remove_src_in_arr(i), src_in => dp_tail_remove_src_in_arr(i),
src_out => dp_tail_remove_src_out_arr(i) src_out => dp_tail_remove_src_out_arr(i)
......
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