yosys/tests/verific/mixed_flist.vhd

15 lines
206 B
VHDL
Raw Normal View History

2026-01-28 12:55:42 +01:00
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;