3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-02-10 19:10:52 +00:00
yosys/tests/verific/mixed_flist.vhd
2026-01-28 03:55:42 -08:00

14 lines
206 B
VHDL

library ieee;
use ieee.std_logic_1164.all;
entity vhdl_mod is
port (
a : in std_logic;
y : out std_logic
);
end entity vhdl_mod;
architecture rtl of vhdl_mod is
begin
y <= a;
end architecture rtl;