1
0
mirror of https://github.com/Klagarge/Cursor.git synced 2025-10-30 21:49:17 +00:00
Files
Cursor/Libs/IO/hdl/tristateBufferUnsigned_sim.vhd
Rémi Heredero c7ba678fbb Initial commit
2021-11-24 10:50:51 +01:00

6 lines
149 B
VHDL

ARCHITECTURE sim OF tristateBufferUnsigned IS
BEGIN
out1 <= in1 after delay when OE = '1' else (others => 'Z') after delay;
END ARCHITECTURE sim;