jtag.vhd

来自「free hardware ip core about sparcv8,a so」· VHDL 代码 · 共 66 行

VHD
66
字号
--------------------------------------------------------------------------------  This file is a part of the GRLIB VHDL IP LIBRARY--  Copyright (C) 2003, 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.----  This program is distributed in the hope that it will be useful,--  but WITHOUT ANY WARRANTY; without even the implied warranty of--  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the--  GNU General Public License for more details.----  You should have received a copy of the GNU General Public License--  along with this program; if not, write to the Free Software--  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA ------------------------------------------------------------------------------- package: 	jtag-- File:	jtag.vhd-- Author:	Edvin Catovic - Gaisler Research-- Description:	JTAG components------------------------------------------------------------------------------library ieee;use ieee.std_logic_1164.all;library grlib;use grlib.amba.all;library techmap;use techmap.gencomp.all;package jtag iscomponent ahbjtag   generic (    tech    : integer range 0 to NTECH := 0;    hindex  : integer := 0;    nsync : integer range 1 to 2 := 1;    idcode : integer range 0 to 255 := 9;    id_msb : integer range 0 to 65535 := 0;    id_lsb : integer range 0 to 65535 := 0;        ainst   : integer range 0 to 255 := 2;    dinst   : integer range 0 to 255 := 3);  port (    rst     : in  std_ulogic;    clk     : in  std_ulogic;    tck     : in  std_ulogic;    tms     : in  std_ulogic;    tdi     : in  std_ulogic;    tdo     : out std_ulogic;         ahbi    : in  ahb_mst_in_type;    ahbo    : out ahb_mst_out_type;    tapo_tck    : out std_ulogic;    tapo_tdi    : out std_ulogic;    tapo_inst   : out std_logic_vector(7 downto 0);    tapo_rst    : out std_ulogic;    tapo_capt   : out std_ulogic;    tapo_shft   : out std_ulogic;    tapo_upd    : out std_ulogic;    tapi_tdo    : in std_ulogic    );end component;      end;

⌨️ 快捷键说明

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