icon_xst_example.vhd

来自「用vhdl实现ps2鼠标的源程序」· VHDL 代码 · 共 75 行

VHD
75
字号
-------------------------------------------------------------------------------
-- Copyright (c) 1999-2000 Xilinx Inc.  All rights reserved.
-------------------------------------------------------------------------------
-- Title      : ICON Core Xilinx XST Usage Example
-- Project    : ChipScope
-------------------------------------------------------------------------------
-- File       : icon_xst_example.vhd
-- Company    : Xilinx Inc.
-- Created    : 2000/10/18
-- Last update: 2000/11/01
-- Version    : 1.0
-------------------------------------------------------------------------------
-- Description: Example of how to instantiate the ICON core in a VHDL design
--              for use with the Xilinx XST synthesis tool.
-------------------------------------------------------------------------------

library IEEE;
use IEEE.std_logic_1164.all;

entity icon_xst_example is
end icon_xst_example;

architecture structure of icon_xst_example is


  -------------------------------------------------------------------
  --
  --  ICON core component declaration
  --
  -------------------------------------------------------------------
  component icon
    port
    (
      CONTROL0    :   out std_logic_vector(41 downto 0)
    );
  end component;


  -------------------------------------------------------------------
  --
  --  ICON core signal declarations
  --
  -------------------------------------------------------------------
  signal control_bus_0  : std_logic_vector(41 downto 0);


  -------------------------------------------------------------------
  --
  --  ICON core compiler-specific attributes
  --
  -------------------------------------------------------------------




  

begin

  
  -------------------------------------------------------------------
  --
  --  ICON core instance
  --
  -------------------------------------------------------------------
  i_icon : icon
    port map
    (
      CONTROL0   => control_bus_0
    );


end structure;

⌨️ 快捷键说明

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