library IEEE;
use IEEE.STD_LOGIC_1164.ALL;

-- Uncomment the following library declaration if using
-- arithmetic functions with Signed or Unsigned values
--use IEEE.NUMERIC_STD.ALL;

-- Uncomment the following library declaration if instantiating
-- any Xilinx primitives in this code.
--library UNISIM;
--use UNISIM.VComponents.all;

entity mled is
    Port ( LED2 : out  STD_LOGIC);
end mled;

architecture Behavioral of mled is
    begin
    LED2 <= '1';
end Behavioral;

