-- Copyright Intel Corporation 1994 --**************************************************************************** -- Intel Corporation makes no warranty for the use of its products -- and assumes no responsibility for any errors which may appear in -- this document nor does it make a commitment to update the information -- contained herein. --**************************************************************************** -- Boundary-Scan Description Language (BSDL Version 0.0) is a de-facto -- standard 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 to the 1149.1-1990 standard. The -- generation of the supplement entails an extensive IEEE review and a formal -- acceptance balloting procedure which may change the resultant form of the -- language. Be aware that this process may extend well into 1993, and at -- this time the IEEE does not endorse or hold an opinion on the language. --**************************************************************************** -- -- Intel Pentium(R) Pro Processor P6_0 Cell Descriptor File -- B0, C0, sA0, and sA1 Steppings -- --------------------------------------------------------- package p6_cells is use STD_1149_1_1990.all; constant BS_G : CELL_INFO; -- Bidirectional I/O cell constant BS_4 : CELL_INFO; -- Input Cell end p6_cells; package body p6_cells is constant BS_G: CELL_INFO := ( (OUTPUT2, EXTEST, PI), (OUTPUT2, SAMPLE, PI), (OUTPUT2, RUNBIST, PI), (INPUT, EXTEST, PI), (INPUT, SAMPLE, PI), (INPUT, RUNBIST, PI) ); constant BS_4: CELL_INFO := ( (INPUT, EXTEST, PI), (INPUT, SAMPLE, PI), (INPUT, RUNBIST, PI), (INTERNAL, EXTEST, PI), (INTERNAL, SAMPLE, PI), (INTERNAL, RUNBIST, PI), (CLOCK, EXTEST, PI), (CLOCK, SAMPLE, PI), (CLOCK, RUNBIST, PI) ); end p6_cells;