First commit

This commit is contained in:
2026-04-08 20:11:20 +02:00
parent 10fe469c10
commit 79f15536a1
861 changed files with 135610 additions and 0 deletions

19
IUT/Auto1/TP/et2/et2.vhd Normal file
View File

@@ -0,0 +1,19 @@
LIRABRY ieee;
USE ieee.std_logic_1166.ALL;
ENTITY et2 IS
PORT (
a : IN STD_LOGIC;
b : IN STD_LOGIC;
S : OUT STD_LOGIC
);
END et2;
ARCHITECTURE archi OF et2 IS
BEGIN
s <= A AND B;
END archi;