8 lines
165 B
VHDL
8 lines
165 B
VHDL
library IEEE;
|
|
use IEEE.std_logic_1164.all;
|
|
|
|
entity gates is
|
|
port( A,B,C,D : in std_logic;
|
|
O : out std_logic);
|
|
end gates;
|