📄 icon_xst_example.vhd
字号:
-------------------------------------------------------------------------------
-- 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -