OpenCores
URL https://opencores.org/ocsvn/pulse_processing_algorithm/pulse_processing_algorithm/trunk

Subversion Repositories pulse_processing_algorithm

[/] [pulse_processing_algorithm/] [mybufg.vhd] - Blame information for rev 2

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 panda_emc
library ieee;
2
use ieee.std_logic_1164.all;
3
 
4
library UNISIM;
5
use UNISIM.VCOMPONENTS.ALL;
6
 
7
entity myBUFG is
8
port (I : in std_logic;
9
      O : out std_logic);
10
end myBUFG;
11
 
12
architecture mybufg_arch of mybufg is
13
 
14
attribute syn_hier : string;
15
attribute syn_hier of mybufg_arch: architecture is "hard";
16
 
17
component BUFG
18
port (I : in std_logic;
19
      O : out std_logic);
20
end component;
21
 
22
begin
23
 
24
u1 : BUFG port map (I  => I,
25
                                                                 O  => O);
26
 
27
 
28
end mybufg_arch;
29
 
30
 
31
 
32
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.