Hades-Files

This commit is contained in:
Sven Riwoldt
2023-04-23 18:56:39 +02:00
parent 39d66ba515
commit 76eaf817c2
3 changed files with 79 additions and 0 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;