4.16 INTEST description 文
INTEST description 文は デバイスの INTEST を実行する際、設定するテストパターンの条件と、INTEST を実行している間の、デバイスの外部状態を定義します。
INTESTのためのテストパターンは、IEEE Std.1149.1b では定義されません。そのパターンは別の方法で提供されます。
|
<intest description> |
::= |
attribute INTEST_EXECUTION of
<component name> entity is
W <intest execution sequence> W;
|
|
<intest execution sequence> |
::= |
<wait spec> , <pin spec> |
|
<wait spec> |
::= |
WAIT_DURATION( <duration spec> ) |
|
<duration spec> |
::= |
<clock cycles list> | <time>
[ , <clock cycles list> ] |
|
<clock cycles list> |
::= |
<clock cycles> { , <clock cycles> } |
|
<time> |
::= |
<real number> |
|
<clock cycles> |
::= |
<port ID> <integer> |
|
<pin spec> |
::= |
OBSERVING <condition> AT_PINS |
☆例:
|
attribute INTEST_EXECUTION of xxCPU : entity is |
|
|
WWait_Duration (1.0e−3),W& |
|
|
WObserving HIGHZ At_PinsW; |
|