concatenation in VHDL?

I think that’s three separate questions. You can use both concatenate or shift without a function.

Here’s one way to shift an 8-bit vector

Code:
result <= vect(5 downto 0) & “00”;  — shift left 2 bits.
 

Hi,

You can only use the concatenation operator at the RHS of your assignment operator.
--- Updated ---

If you're having an issue with your code, then you may have to post the affected part of your code here.
 

Cookies are required to use this site. You must accept them to continue using the site. Learn more…