ASM fast fertig

This commit is contained in:
Sven Riwoldt
2024-04-10 20:38:16 +02:00
parent b8ecf50e63
commit f6eeaf8c46
4 changed files with 194 additions and 11 deletions

View File

@@ -0,0 +1,31 @@
-- VHDL for hades.models.gates.Nand2: /unnamed/i2
--
library IEEE;
use IEEE.std_logic_1164.all;
entity hades_models_gates_Nand2 is
port (
Y : out std_logic;
A : in std_logic;
B : in std_logic
);
end hades_models_gates_Nand2;
-- default architecture for: hades.models.gates.Nand2: /unnamed/i2
--
architecture SIMPLE of hades_models_gates_Nand2 is
begin
Y <= not (A and B);
end SIMPLE;
configuration cfg_hades_models_gates_Nand2 of hades_models_gates_Nand2 is
for SIMPLE
end for;
end cfg_hades_models_gates_Nand2;