Commit a86114d3 authored by Tristan Gingold's avatar Tristan Gingold

vtuCore: improve style.

parent e8734d65
......@@ -1528,9 +1528,11 @@ begin
begin
case SwitchOutput is
when '0' =>
DataOut_seq_i(7 downto 0) <= DataOut_1(7 downto 0);
-- B datashifter.
DataOut_seq_i <= DataOut_1;
when others =>
DataOut_seq_i(7 downto 0) <= DataOut_2(7 downto 0);
-- HT datashifter
DataOut_seq_i <= DataOut_2;
end case;
end process;
......@@ -1538,9 +1540,11 @@ begin
begin
case SwitchtoHT is
when '0' =>
DataIn_2(7 downto 0) <= DataOut_1(7 downto 0);
-- B datashifter to HT datashifter
DataIn_2 <= DataOut_1;
when others =>
DataIn_2(7 downto 0) <= DataOut_2(7 downto 0);
-- HT datashifter loopback.
DataIn_2 <= DataOut_2;
end case;
end process;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment