Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

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

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top