mirror of https://github.com/YosysHQ/yosys.git
15 lines
206 B
VHDL
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;
|