- 高级微器件Mach211 44​​ Pin PLCC / TQFP BSDL描述 - 作者:撰稿:Martha Chan - 日期:1995年10月12日 - 版本:1.0 - 03/31/2000(JKB):更新的版权评论。- **************************************************************** - *版权所有1999,2000格子/ VANTIS CORPORATION * - * 995 Stewart博士Sunnyvale,CA 94088 * - *版权所有。可以再现本程序或出版物的部分或出版物* - *,传输,转录,存储在* - *检索系统中,或以任何形式或任何方式翻译成任何语言或* - *计算机语言这个* - *出现在内部的通知。* - **************************************************************** - *格子/ VANTIS使用此* - *产品不保证,并对* - *可能出现的任何错误不承担任何责任之内。它也没有致力于* - *更新此信息。* - **************************************************************** -- * This is the template BSDL file to be used for the purpose * -- * of verifying the part's compliance with the IEEE standard * -- * 1149.1-1990. * -- **************************************************************** -- -- This file has NOT yet been verified by: -- Teradyne VICTORY v 2.10 -- - Syntax Check using BSA -- - Test vector generation using BSA -- -- Hewlett-Packard Boundary-Scan Software -- - Syntax Check -- -- Genrad Boundary-Scan Software -- - Syntax Check -- - Physical Verification -- -- **************************************************************** entity AMD_MACH211i is generic(PHYSICAL_PIN_MAP : string := "UNDEFINED"); port ( DED_IN : in bit_vector(0 to 1); -- Clocks/Inputs IO : inout bit_vector(0 to 31); -- I/O pins TCK, TMS, TDI: in bit; -- JTAG inputs TDO : out bit; -- JTAG outputs VCC : linkage bit_vector(0 to 1); GND : linkage bit_vector(0 to 3) ); use STD_1149_1_1990.all; -- get JTAG definitions and attributes attribute PIN_MAP of AMD_MACH211i : entity is PHYSICAL_PIN_MAP; constant PLCC_44pin : PIN_MAP_STRING := "DED_IN:(11,33), " & -- Dedicated Clock/Input Pins "IO:( 2, 3, 4, 5, 6, 7, 8, 9, " & -- I/O A " 14, 15, 16, 17, 18, 19, 20, 21, " & -- I/O B " 24, 25, 26, 27, 28, 29, 30, 31, " & -- I/O C " 36, 37, 38, 39, 40, 41, 42, 43)," & -- I/O D " TDI:10, TMS:32, TCK:13, TDO:35, " & -- JTAG "VCC:(22,44), " & -- POWER "GND:(1,12,23,34)"; -- GROUND PINS/END OF PIN DEFINITION constant TQFP_44pin : PIN_MAP_STRING := "DED_IN:( 5,27), " & -- Dedicated Clock/Input Pins "IO:( 40, 41, 42, 43, 44, 1, 2, 3, " & -- I/O A " 8, 9, 10, 11, 12, 13, 14, 15, " & -- I/O B " 18, 19, 20, 21, 22, 23, 24, 25, " & -- I/O C " 30, 31, 32, 33, 34, 35, 36, 37)," & -- I/O D " TDI: 4, TMS:26, TCK: 7, TDO:29, " & -- JTAG "VCC:(16,38), " & -- POWER "GND:(6,17,28,39)"; -- GROUND PINS/END OF PIN DEFINITION attribute TAP_SCAN_IN of TDI : signal is true; attribute TAP_SCAN_MODE of TMS : signal is true; attribute TAP_SCAN_OUT of TDO : signal is true; attribute TAP_SCAN_CLOCK of TCK : signal is (20.0e6, BOTH); -- Instruction register definitions attribute INSTRUCTION_LENGTH of AMD_MACH211i : entity is 6; attribute INSTRUCTION_OPCODE of AMD_MACH211i : entity is "BYPASS (111111)," & "EXTEST (000000)," & "SAMPLE (000010)," & "IDCODE (000001)," & "PRIVATE (000101,000110,000111,001000,000011,000100," & "001110,001101,001111,110000,100101,100110," & "100111,101110,110011,110010)"; attribute INSTRUCTION_CAPTURE of AMD_MACH211i : entity is "000001"; attribute INSTRUCTION_PRIVATE of AMD_MACH211i : entity is "PRIVATE"; attribute IDCODE_REGISTER of AMD_MACH211i : entity is "0000" & -- version number "0111000001011000" & -- part identification "00000000001" & -- company code "1"; -- mandatory 1 attribute REGISTER_ACCESS of AMD_MACH211i : entity is "BYPASS (BYPASS)," & "BOUNDARY (EXTEST,SAMPLE)"; -- ************************************************************** -- * BOUNDARY SCAN CELL REGISTER DESCRIPTION -- * MACH2xx-ISP parts do not have boundary scan cells. -- ************************************************************** attribute BOUNDARY_CELLS of AMD_MACH211i : entity is "BC_3"; attribute BOUNDARY_LENGTH of AMD_MACH211i : entity is 1; attribute BOUNDARY_REGISTER of AMD_MACH211i: entity is " 0 (BC_3, *, INTERNAL, X )"; end AMD_MACH211i;