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

Subversion Repositories pulse_processing_algorithm

[/] [pulse_processing_algorithm/] [mybufg.vhd] - Rev 2

Compare with Previous | Blame | View Log

library ieee;
use ieee.std_logic_1164.all;
 
library UNISIM;
use UNISIM.VCOMPONENTS.ALL;
 
entity myBUFG is
port (I : in std_logic;
      O : out std_logic);
end myBUFG;
 
architecture mybufg_arch of mybufg is
 
attribute syn_hier : string;
attribute syn_hier of mybufg_arch: architecture is "hard";
 
component BUFG
port (I : in std_logic;
      O : out std_logic);
end component;
 
begin
 
u1 : BUFG port map (I  => I,
								 O  => O);
 
 
end mybufg_arch;
 
 
 
 
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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