Das erste richtige Bild mit circuittikz

This commit is contained in:
Sven Riwoldt
2023-05-01 19:13:45 +02:00
parent 1fb8d9e7aa
commit 06ce790e33
18 changed files with 1514 additions and 0 deletions

13
Nand2tetris_prj/Nand.vhdl Normal file
View 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;