VHDL basic assignment question

Status
Not open for further replies.

alexz

Full Member level 5
Joined
Nov 19, 2004
Messages
283
Helped
6
Reputation
12
Reaction score
3
Trophy points
1,298
Location
UK
Activity points
2,246
Is this a legal expression?

IOLatchIn(7 downto 0)(15 downto 8) <= (others => 'Z'), latchedInputs ;
 

what exactly do you want to do?
 

I think it is obvious from the line isn't it?
I want to concatenate 2 buses into 1
 

signal a : std_logic_vector(7 downto 0);
signal b : std_logic_vector(4 downto 0);
signal c : std_logic_vector(2 downto 0);

a <= b & c;
 

Status
Not open for further replies.

Similar threads

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