VHDL multiple std_logic_vector to one large std_logic_vector
An easy way to accomplish this is to use the concatenation operator &
. It achieves the same thing you did above, but with less code required.
slv64 <= slv16_4 & slv16_3 & slv16_2 & slv16_1;