Das erste richtige Bild mit circuittikz
This commit is contained in:
13
Nand2tetris_prj/Nand.vhdl
Normal file
13
Nand2tetris_prj/Nand.vhdl
Normal file
@@ -0,0 +1,13 @@
|
||||
library IEEE;
|
||||
use IEEE.STD_LOGIC_1164.ALL;
|
||||
|
||||
entity NAND_GATE is
|
||||
Port ( A : in STD_LOGIC;
|
||||
B : in STD_LOGIC;
|
||||
O : out STD_LOGIC);
|
||||
end NAND_GATE;
|
||||
|
||||
architecture Behavioral of NAND_GATE is
|
||||
begin
|
||||
O <= not (A and B);
|
||||
end Behavioral;
|
||||
Reference in New Issue
Block a user