
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
--------------------------------------------------------------------
entity or_gate is 
	port 
	(
	IN1: 	in 	std_logic;
	IN2: 	in 	std_logic;
	OUTPUT:  	out 	std_logic
	); 
end or_gate;

-------------------------------------------------------------------
Architecture behavioral of or_gate is 
begin
		OUTPUT <= IN1 OR IN2;
end Architecture behavioral;

--------------------------------------------------------------------
