1
0
mirror of synced 2026-04-27 12:40:28 +00:00
Files
YosysHQ.yosys/tests/verific/mixed_flist.vhd
2026-01-28 03:55:42 -08:00

15 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;