<html>
<head>
<title>
17.3.T 'T' Instructions
</title>
<body>
<pre>
<a name="17-03-T"></a>
Prev: <a href="chp17-s3.htm">17.3.S 'S' Instructions </a>
Next: <a href="chp17-v3.htm">17.3.V 'V' Instructions </a>
<hr>
<h2>
17.3.T 'T' Instructions
</h2>
<a name="17-03-TEST"></a>
<h3>TEST -- Logical Compare</h3>
Opcode Instruction Clocks Description
A8 ib TEST AL,imm8 2 AND immediate byte with AL
A9 iw TEST AX,imm16 2 AND immediate word with AX
A9 id TEST EAX,imm32 2 AND immediate dword with EAX
F6 /0 ib TEST r/m8,imm8 2/5 AND immediate byte with r/m byte
F7 /0 iw TEST r/m16,imm16 2/5 AND immediate word with r/m word
F7 /0 id TEST r/m32,imm32 2/5 AND immediate dword with r/m dword
84 /r TEST r/m8,r8 2/5 AND byte register with r/m byte
85 /r TEST r/m16,r16 2/5 AND word register with r/m word
85 /r TEST r/m32,r32 2/5 AND dword register with r/m dword
Operation
DEST : = LeftSRC AND RightSRC;
CF <- 0;
OF <- 0;
<b>Description</b>
TEST computes the bit-wise logical AND of its two operands. Each bit
of the result is 1 if both of the corresponding bits of the operands are 1;
otherwise, each bit is 0. The result of the operation is discarded and only
the flags are modified.
<b>Flags Affected</b>
OF = 0, CF = 0; SF, ZF, and PF as described in Appendix C
<b>Protected Mode Exceptions</b>
#GP(0) for an illegal memory operand effective address in the CS, DS,
ES, FS, or GS segments; #SS(0) for an illegal address in the SS segment;
#PF(fault-code) for a page fault
<b>Real Address Mode Exceptions</b>
Interrupt 13 if any part of the operand would lie outside of the effective
address space from 0 to 0FFFFH
<b>Virtual 8086 Mode Exceptions</b>
Same exceptions as in Real Address Mode; #PF(fault-code) for a page
fault
<hr>
Prev: <a href="chp17-s3.htm">17.3.S 'S' Instructions </a>
Next: <a href="chp17-v3.htm">17.3.V 'V' Instructions </a>
</pre>
</body>
</html>
|