w11 - vhd 0.794
W11 CPU core and support modules
Loading...
Searching...
No Matches
bufg_unisim.vhd
Go to the documentation of this file.
1-- $Id: bufg_unisim.vhd 1247 2022-07-06 07:04:33Z mueller $
2-- SPDX-License-Identifier: GPL-3.0-or-later
3-- Copyright 2022- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
4--
5------------------------------------------------------------------------------
6-- Module Name: bufg_unisim - syn
7-- Description: Wrapper for BUFG entity
8--
9-- Dependencies: -
10-- Test bench: -
11-- Target Devices: generic Series-7
12-- Tool versions: viv 2022.1; ghdl 2.0.0
13--
14-- Revision History:
15-- Date Rev Version Comment
16-- 2022-07-05 1247 1.0 Initial version
17------------------------------------------------------------------------------
18
19library ieee;
20use ieee.std_logic_1164.all;
21
22library unisim;
23use unisim.vcomponents.ALL;
24
25entity bufg_unisim is -- wrapper for BUFG
26 port (
27 O : out std_ulogic; -- input
28 I : in std_ulogic -- output
29 );
30end bufg_unisim;
31
32
33architecture syn of bufg_unisim is
34begin
35
36 BUF : BUFG
37 port map (
38 O => O,
39 I => I
40 );
41
42end syn;
in I std_ulogic
Definition: bufg_unisim.vhd:29
out O std_ulogic
Definition: bufg_unisim.vhd:27