library IEEE;
use IEEE.STD_LOGIC_1164.all, IEEE.NUMERIC_STD.all;

entity DECODER3_6 is
    port ( En     : in   std_logic;
	   A      : in   unsigned(2 downto 0);
	   Y      : out  unsigned(5 downto 0));
end entity DECODER3_6;

architecture COND_DATA_FLOW of DECODER3_6 is
begin


-- HERE, WRITE YOUR OWN DESCRIPTIOPN!


end architecture COND_DATA_FLOW;
