TU-VHDL/13_procedure_Example/design.vhd
2025-02-10 20:28:13 +01:00

14 lines
203 B
VHDL

library IEEE;
use IEEE.std_logic_1164.all;
entity MyDesign is
port (clk_i : in std_logic;
data_i : in std_logic);
end MyDesign;
architecture behavior of MyDesign is
begin
end behavior;