tap_xilinx.vhd

来自「The GRLIB IP Library is an integrated se」· VHDL 代码 · 共 86 行

VHD
86
字号
------------------------------------------------------------------------------  This file is a part of the GRLIB VHDL IP LIBRARY--  Copyright (C) 2005 GAISLER RESEARCH----  This program is free software; you can redistribute it and/or modify--  it under the terms of the GNU General Public License as published by--  the Free Software Foundation; either version 2 of the License, or--  (at your option) any later version.----  See the file COPYING for the full details of the license.-------------------------------------------------------------------------------   -- Package:     tap_xilinx-- File:        tap_xilinx.vhd-- Author:      Edvin Catovic - Gaisler Research-- Description: Xilinx specific TAP controllers ------------------------------------------------------------------------------library ieee;use ieee.std_logic_1164.all;package tap_xilinx iscomponent virtex_tap port (     tapi_tdo1   : in std_ulogic;     tapi_tdo2   : in std_ulogic;     tapo_tck    : out std_ulogic;     tapo_tdi    : out std_ulogic;     tapo_rst    : out std_ulogic;     tapo_capt   : out std_ulogic;     tapo_shft   : out std_ulogic;     tapo_upd    : out std_ulogic;     tapo_xsel1  : out std_ulogic;     tapo_xsel2  : out std_ulogic    );end component;component virtex2_tap port (     tapi_tdo1   : in std_ulogic;     tapi_tdo2   : in std_ulogic;     tapo_tck    : out std_ulogic;     tapo_tdi    : out std_ulogic;     tapo_rst    : out std_ulogic;     tapo_capt   : out std_ulogic;     tapo_shft   : out std_ulogic;     tapo_upd    : out std_ulogic;     tapo_xsel1  : out std_ulogic;     tapo_xsel2  : out std_ulogic    );end component;component virtex4_tap port (     tapi_tdo1   : in std_ulogic;     tapi_tdo2   : in std_ulogic;     tapo_tck    : out std_ulogic;     tapo_tdi    : out std_ulogic;     tapo_rst    : out std_ulogic;     tapo_capt   : out std_ulogic;     tapo_shft   : out std_ulogic;     tapo_upd    : out std_ulogic;     tapo_xsel1  : out std_ulogic;     tapo_xsel2  : out std_ulogic    );end component;component spartan3_tap port (     tapi_tdo1   : in std_ulogic;     tapi_tdo2   : in std_ulogic;     tapo_tck    : out std_ulogic;     tapo_tdi    : out std_ulogic;     tapo_rst    : out std_ulogic;     tapo_capt   : out std_ulogic;     tapo_shft   : out std_ulogic;     tapo_upd    : out std_ulogic;     tapo_xsel1  : out std_ulogic;     tapo_xsel2  : out std_ulogic    );end component;end;

⌨️ 快捷键说明

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