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.

need help to create eight demuxs

Status
Not open for further replies.

20vt

Newbie level 4
Joined
Jul 28, 2013
Messages
7
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
42
I im new to vhdl and need some help
how to make eight demux 2 to 1 which share same Sel ?
I did one demux 2 to 1
entity demux is
port(d,s:in bit ;

z0,z1: out bit );
end demux ;

architecture arc_demux of demux is
begin
z0 <= d and (not s);
z1 <= (d and s);
end arc_demux ;

how I can make eight of it?
 

As you did it for a 2:1 you do it for a 8 bit demux.
Your input signals are d, s0, s1 and s2, while your output are z0 to z7. What remain is only to translate your truth table relating z(i) to inputs into a vhdl code.
 

Yes thank you but its not working ill more time
 

whats not working - how about being more specific?
 

I want to do a demux 8 to 1 like this one
demux.jpg
 

He said more specific, not less specific...
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top