

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Community
Ask the community for help and clear up your study doubts
Discover the best universities in your country according to Docsity users
Free resources
Download our free guides on studying techniques, anxiety management strategies, and thesis advice from Docsity tutors
Design 8to1Multiplexer using appropriate software like VHDL (xilinx).
Typology: Assignments
1 / 2
This page cannot be seen from the preview
Don't miss anything!
OBJECT :-Design 8to1Multiplexer using appropriate software like VHDL (xilinx). 8to1Multiplexer CODING :- entity RA81MUX is Port ( I : in std_logic_vector(7 downto 0); S : in std_logic_vector(2 downto 0); O : out std_logic); end RA81MUX; architecture Behavioral of RA81MUX is begin with S select O <= I(7) when "111", I(6) when "110", I(5) when "101", I(4) when "100", I(3) when "011", I(2) when "010", I(1) when "001", I(0) when "000", I(0) when others; end Behavioral; SCHEMATIC DIAGRAM :-
RESULT:- We have successfully design 8to1Multiplexer.