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

📄 chipscope_icon.vhd

📁 基于Xilinx-XUPV2P开发平台的嵌入式系统实验例程:实验6系统验证与调试
💻 VHD
字号:
-- ICON Wrapper HDL file generated by icon's TCL generator

library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
library UNISIM;
use UNISIM.VCOMPONENTS.ALL;
entity chipscope_icon is
  generic (
    C_FAMILY : string := "virtex2" ;
    C_NUM_CONTROL_PORTS : integer := 1;
    C_SYSTEM_CONTAINS_MDM : integer := 0;
    C_DISABLE_JTAG_CLOCK_BUFG_INSERTION : integer :=0;
    C_FORCE_BSCAN_USER_PORT : integer := 1

  );
  port (
    control0 : out STD_LOGIC_VECTOR ( 35 downto 0 ); 
    control1 : out STD_LOGIC_VECTOR ( 35 downto 0 ); 
    control2 : out STD_LOGIC_VECTOR ( 35 downto 0 ); 
    control3 : out STD_LOGIC_VECTOR ( 35 downto 0 ); 
    control4 : out STD_LOGIC_VECTOR ( 35 downto 0 ); 
    control5 : out STD_LOGIC_VECTOR ( 35 downto 0 ); 
    control6 : out STD_LOGIC_VECTOR ( 35 downto 0 ); 
    control7 : out STD_LOGIC_VECTOR ( 35 downto 0 ); 
    control8 : out STD_LOGIC_VECTOR ( 35 downto 0 ); 
    control9 : out STD_LOGIC_VECTOR ( 35 downto 0 ); 
    control10 : out STD_LOGIC_VECTOR ( 35 downto 0 ); 
    control11 : out STD_LOGIC_VECTOR ( 35 downto 0 ); 
    control12 : out STD_LOGIC_VECTOR ( 35 downto 0 ); 
    control13 : out STD_LOGIC_VECTOR ( 35 downto 0 ); 
    control14 : out STD_LOGIC_VECTOR ( 35 downto 0 ); 
    control15 : out STD_LOGIC_VECTOR ( 35 downto 0 );

    tdi_in : in STD_LOGIC;
    reset_in : in STD_LOGIC;
    shift_in : in STD_LOGIC;
    update_in : in STD_LOGIC;
    sel_in : in STD_LOGIC;
    drck_in : in STD_LOGIC;
    tdo_out : out STD_LOGIC
  );
end chipscope_icon;

architecture STRUCTURE of chipscope_icon is

 attribute box_type : STRING;

 component icon_1 is
    port (

      control0 : out std_logic_vector ( 35 downto 0)
      );
 end component;
 attribute box_type of icon_1 : component is "black_box";

begin

  icon_inst: icon_1
      port map (

      control0 => control0
      );

      control1 <= (others => '0');
      control2 <= (others => '0');
      control3 <= (others => '0');
      control4 <= (others => '0');
      control5 <= (others => '0');
      control6 <= (others => '0');
      control7 <= (others => '0');
      control8 <= (others => '0');
      control9 <= (others => '0');
      control10 <= (others => '0');
      control11 <= (others => '0');
      control12 <= (others => '0');
      control13 <= (others => '0');
      control14 <= (others => '0');
      control15 <= (others => '0');


end architecture STRUCTURE;

⌨️ 快捷键说明

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