forked from cores/microwatt
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
201 B
VHDL
13 lines
201 B
VHDL
5 years ago
|
library IEEE;
|
||
|
use IEEE.std_logic_1164.all;
|
||
|
|
||
|
entity BUFG is
|
||
|
port(I : in std_logic;
|
||
|
O : out std_logic
|
||
|
);
|
||
|
end BUFG;
|
||
|
architecture behaviour of BUFG is
|
||
|
begin
|
||
|
O <= I;
|
||
|
end architecture behaviour;
|