1
0
mirror of https://github.com/Klagarge/Cursor.git synced 2025-02-17 04:32:44 +00:00
Cursor/Libs/Gates/hdl/and3_sim.vhd

5 lines
99 B
VHDL
Raw Normal View History

2021-11-24 10:50:51 +01:00
ARCHITECTURE sim OF and3 IS
BEGIN
out1 <= in1 and in2 and in3 after delay;
END ARCHITECTURE sim;