summaryrefslogtreecommitdiff
path: root/Example/logic_gates/nor_gate.vhdl
blob: 0dcdab0c8787c0a9239e2d1e3bac4165901552fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
library ieee;
use ieee.std_logic_1164.all;

entity nor_gate is
    port (a : in  std_logic;
          b : in  std_logic;
          c : out std_logic);
end nor_gate;
     
architecture rtl of nor_gate is
    begin
		c <= a nor b;
end rtl;