M
m
Guest
signal AAA : std_logic_vector(4 downto 0);
signal BBB : std_logic_vector(9 downto 0);
....
BBB <= AAA(4 downto 2);
Does this assign AAA(4 downto 2) to the most significant three bits of
BBB?
Or the least significant three bits of BBB?
Or to BBB(4 downto 2)?
Thank you,
-Martin
signal BBB : std_logic_vector(9 downto 0);
....
BBB <= AAA(4 downto 2);
Does this assign AAA(4 downto 2) to the most significant three bits of
BBB?
Or the least significant three bits of BBB?
Or to BBB(4 downto 2)?
Thank you,
-Martin