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?
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?