Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

Design 1t4 Demultiplexer using appropriate software like VHDL, Assignments of Verilog and VHDL

Design 1t4 Demultiplexer using appropriate software like VHDL

Typology: Assignments

2012/2013

Available from 04/17/2023

rakeshasery
rakeshasery 🇮🇳

55 documents

1 / 2

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
RAKESH ASERY(09EC73)
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 :-
pf2

Partial preview of the text

Download Design 1t4 Demultiplexer using appropriate software like VHDL and more Assignments Verilog and VHDL in PDF only on Docsity!

RAKESH ASERY(09EC73)

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

RAKESH ASERY(09EC73)

TRUTH TABLE :-

LOGIC DIAGRAM & K MAP :-

RESULT: - We have successfully design 1to4Demultiplexer.