mirror of
https://github.com/YosysHQ/yosys
synced 2026-02-10 19:10:52 +00:00
14 lines
206 B
VHDL
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;
|