-------------------------------------------------------------------------------
--
--           INTEL PROPRIETARY AND CONFIDENTIAL INFORMATION
--      Copyright 2004 Intel Corporation   All Rights Reserved
-- *********************************************************************
-- Information in this document is provided in connection with Intel products.
-- No license, express or implied, by estoppel or otherwise, to any
-- intellectual property rights is granted by this document. Except as
-- provided in Intel's Terms and Conditions of Sale for such products,
-- Intel assumes no liability whatsoever, and Intel disclaims any express or
-- implied warranty, relating to sale and/or use of Intel products including
-- liability or warranties relating to fitness for a particular purpose,
-- merchantability, or infringement of any patent, copyright or other
-- intellectual property right. Intel products are not intended for use in
-- medical, life saving, or life sustaining applications.
--
-- Intel may make changes to specifications and product descriptions at any
-- time, without notice.
--
-- The Itanium Processor may contain design defects or errors known
-- as errata which may cause the product to deviate from published
-- specifications. Current characterized errata are available on request.
--
-- Contact your local Intel sales office or your distributor to obtain the
-- latest specifications and before placing your product order.
--
-- Copyright (c) Intel Corporation 2004. Third-party brands and names are the
-- property of their respective owners.
--
-- *********************************************************************
-- DESCRIPTION
-- *********************************************************************
-- Boundary-Scan Description language (BSDL version 1.0) is a 
-- means of describing essential features of ANSI/IEEE 1149.1-1990
-- compliant devices. This language is under consideration by the IEEE for
-- formal inclusion within a supplement entails an extensive IEEE review
-- and a formal acceptance balloting procedure which may change the
-- resultant form of the language.  At this time the IEEE does not endorse
-- or hold an opinion on the language.
-- *********************************************************************
--
-- Revision 1.0 03/27/2004
--
-- Comments:
-- 1. EMTS naming convention uses # for negative logic signals, but # is not a 
--    recognized BSDL character and have been replaced with the character B in 
--    signal names in this file.
-- 2. This file describes the Itanium Processor OLGA BSDL model inside the cartridge. 
--    Pin locations are therefore different from the pin locations in the  Intel Itanium Processor Datasheet.
-- 3. Strobe inputs (STBP and STBN) are true differential inputs. They must be in opposite
--    logic states to obtain valid data.
--
-- *********************************************************************
----------------------------------------------------------------


  package ITANIUM2_BC_DEFS is -- Boundary Cell defered constants (see package body)

  use STD_1149_1_1990.all;	-- Get definition of "Cell_Info"

  constant BC_ITANIUM2  : CELL_INFO; 

  end ITANIUM2_BC_DEFS;

  package body ITANIUM2_BC_DEFS is	-- User Boundary Cells  

  constant BC_ITANIUM2 : CELL_INFO := 

   ((BIDIR_IN , EXTEST , PI),
    (BIDIR_IN , SAMPLE , PI),
        
    (BIDIR_OUT, EXTEST , PI),
    (BIDIR_OUT, SAMPLE , PI),
    
    (INPUT    , EXTEST , PI),
    (INPUT    , SAMPLE , PI),
    
    (OUTPUT3  , EXTEST , PI),
    (OUTPUT3  , SAMPLE , PI),
    
    (INPUT    , EXTEST , PI),
    (INPUT    , SAMPLE , PI),
  
    (OUTPUT2  , EXTEST , PI),
    (OUTPUT2  , SAMPLE , PI),
    
    (CLOCK    , EXTEST , PI),
    (CLOCK    , SAMPLE , PI),
 
    (INTERNAL , EXTEST , PI),
    (INTERNAL , SAMPLE , PI),
 
    (CONTROL  , EXTEST , PI),
    (CONTROL  , SAMPLE , PI),
  

  end ITANIUM2_BC_DEFS;  -- End of User Package Body
