⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 infrastructure_iobs.vhd

📁 XILINX memory interface generator. XILINX的外部存储器接口。
💻 VHD
字号:
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
--
-- pragma translate_off
library UNISIM;
use UNISIM.VCOMPONENTS.ALL;
-- pragma translate_on
--
entity infrastructure_iobs is
 port(
      SYS_CLK           : in STD_LOGIC;
      SYS_CLKb          : in STD_LOGIC;
--XST_REMOVECOMMENT  clk180 : in std_logic;
--XST_REMOVECOMMENT  clk270 : in std_logic;
      rst_dqs_div_int   : in STD_LOGIC;
      rst_dqs_div_in    : in STD_LOGIC;
      sys_clk_ibuf      : out STD_LOGIC;
      rst_dqs_div       : out  STD_LOGIC;      
      rst_dqs_div_out   : out STD_LOGIC 

      );
end infrastructure_iobs;

architecture arc_infrastructure_iobs of infrastructure_iobs is


attribute syn_keep : boolean;
attribute xc_props : string;
  
     
---- Component declarations -----

 component IBUFGDS_LVDS_25     
  port ( I  : in std_logic;     
         IB : in std_logic;    
         O  : out std_logic);   
 end component;

 component  IBUF_SSTL18_II 
   port(  
           I : in std_logic;     
           O : out std_logic
        );
 end component;
  
 component OBUF_SSTL18_II 
port  (  
        I : in std_logic;     
        O : out std_logic
    );

 end component;

---- ******************* ----
---- Signal declarations ----
---- ******************* ----

begin

----  Component instantiations  ----

--- ***********************************
---  DCI Input buffer for System clock
---   
--- ***********************************

lvds_clk_input : IBUFGDS_LVDS_25 port map ( 
                                           I  => SYS_CLK,      
                                           IB => SYS_CLKb,     
                                           O  => sys_clk_ibuf
                                           );

 rst_iob_inbuf : IBUF_SSTL18_II port map (  
                                            I => rst_dqs_div_in,
                                            O => rst_dqs_div
                                          );
  
 rst_iob_outbuf :OBUF_SSTL18_II port map (  
                                           I => rst_dqs_div_int,
                                           O => rst_dqs_div_out
                                         );




end arc_infrastructure_iobs;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -