F
Fred
Guest
For simplicity I would like to do the following
CASE (bit1 & bit2 & bit3) IS
when "000" =>
var <= something;
.....
when "000" =>
var <= somethingelse;
when others =>
END CASE
bit1 to 3 are "std_logic". How do I concatenate these "bits" in a CASE
statement without having an intermediate array?
Many thanks in advance.
CASE (bit1 & bit2 & bit3) IS
when "000" =>
var <= something;
.....
when "000" =>
var <= somethingelse;
when others =>
END CASE
bit1 to 3 are "std_logic". How do I concatenate these "bits" in a CASE
statement without having an intermediate array?
Many thanks in advance.