

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 1t4 Demultiplexer using appropriate software like VHDL
Typology: Assignments
1 / 2
This page cannot be seen from the preview
Don't miss anything!
OBJECT :-Design 1t4 Demultiplexer using appropriate software like VHDL (xilinx). 1to4Demultiplexer CODING :- entity RA41DMUX is Port ( I : in std_logic; S : in std_logic_vector(1 downto 0); W0 : out std_logic; W1 : out std_logic; W2 : out std_logic; W3 : out std_logic); end RA41DMUX; architecture Behavioral of RA41DMUX is begin W3 <= I when S="11"; W2 <= I when S="10"; W1 <= I when S="01"; W0 <= I when S="00"; end Behavioral; SCHEMATIC DIAGRAM :-
RESULT: - We have successfully design 1to4Demultiplexer.