Files
nand2tetris/Nand2tetris_prj/001_Not.vhdl
2023-05-01 19:13:45 +02:00

12 lines
207 B
VHDL

library ieee;
use ieee.std_logic_1164.all;
entity notGate is
port (a, b : in std_logic;
out : out std_logic);
end notGate;
architecture hardware of notGate is
begin
out <= a nand a;
end hardware;