Tuesday, December 13, 2011
11:20 PM

VHDL Code For Decoder (2:4)


Q. How do I write VHDL code for Decoder (2:4)
Ans:

library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
entity decod1 is
Port ( I0 : in STD_LOGIC;
I1 : in STD_LOGIC;
En : in STD_LOGIC;
Y : out STD_LOGIC_VECTOR (3 downto 0));
end decod1;
architecture Behavioral of decod1 is
begin
process(I0,I1,En)
begin
if(En='1')
then
Y(0)<=(not I0) and (not

0 comments:

Post a Comment