Ci-dessous, les différences entre deux révisions de la page.
Les deux révisions précédentesRévision précédente | |||
back2root:archives:intel-80x88 [2024/11/29 21:43] – supprimée - modification externe (Date inconnue) 127.0.0.1 | back2root:archives:intel-80x88 [2024/11/29 21:43] (Version actuelle) – ↷ Nom de la page changé de back2root:archives:80x88 à back2root:archives:intel-80x88 frater | ||
---|---|---|---|
Ligne 1: | Ligne 1: | ||
+ | ====== 80x86 Integer Instruction Set (8088 - Pentium) ====== | ||
+ | ===== Legend: ===== | ||
+ | |||
+ | ==== General ==== | ||
+ | |||
+ | ^ acc | AL, AX or EAX unless specified otherwise | ||
+ | ^ reg | any general register | ||
+ | ^ r8 | any 8-bit register | ||
+ | ^ r16 | any general purpose 16-bit register | ||
+ | ^ r32 | any general purpose 32-bit register | ||
+ | ^ imm | immediate data | | ||
+ | ^ imm8 | 8-bit immediate data | | ||
+ | ^ imm16 | 16-bit immediate data | | ||
+ | ^ mem | memory address | ||
+ | ^ mem8 | address of 8-bit data item | | ||
+ | ^ mem16 | address of 16-bit data item | | ||
+ | ^ mem32 | address of 32-bit data item | | ||
+ | ^ mem48 | address of 48-bit data item | | ||
+ | ^ dest | 16/32-bit destination | ||
+ | ^ short | 8-bit destination | ||
+ | ==== Integer instruction timings: ==== | ||
+ | |||
+ | |||
+ | ^ n | generally refers to a number of repeated counts | ||
+ | ^ m | in a jump or call;\\ 286: bytes in next instruction\\ 386/486: number of components\\ (each byte of opcode) + 1 (if immed data) + 1 (if displacement) | ||
+ | |||
+ | < | ||
+ | EA = cycles to calculate the Effective Address | ||
+ | | ||
+ | base = 5 BP+DI or BX+SI = 7 | ||
+ | index = 5 BX+DI or BP+SI = 8 | ||
+ | disp = 6 | ||
+ | 286 - 486: | ||
+ | base+index+disp = +1 all others, no penalty | ||
+ | </ | ||
+ | ==== instruction length: ==== | ||
+ | |||
+ | The byte count includes the opcode length and length of any required displacement or immediate data. If the displacement is optional, it is shown as d() with the possible lengths in parentheses. If the immediate data is optional, it is shown as i() with the possible lengths in parentheses. | ||
+ | |||
+ | ==== pairing categories for Pentium: ==== | ||
+ | |||
+ | ^ NP | not pairable | ||
+ | ^ UV | pairable in the U pipe or V pipe | | ||
+ | ^ PU | pairable in the U pipe only | | ||
+ | ^ PV | pairable in the V pipe only | | ||
+ | |||
+ | |||
+ | ===== Instruction formats, clock cycles and Pentium® Pairing info ===== | ||
+ | |||
+ | === AAA === | ||
+ | ASCII adjust after addition | ||
+ | |||
+ | ^ operands | ||
+ | | - | ||
+ | |||
+ | Example: | ||
+ | |||
+ | <code asm> | ||
+ | === AAD === | ||
+ | ASCII adjust AX before division (second byte is divisor) | ||
+ | |||
+ | ^ operands | ||
+ | | - | ||
+ | |||
+ | Example: | ||
+ | |||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === AAM === | ||
+ | ASCII adjust AX after multiply (second byte is divisor) | ||
+ | |||
+ | ^ operands | ||
+ | | - | ||
+ | |||
+ | Example: | ||
+ | |||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === AAS === | ||
+ | ASCII adjust AL after subtraction | ||
+ | |||
+ | ^ operands | ||
+ | | - | ||
+ | |||
+ | Example: | ||
+ | |||
+ | <code asm> | ||
+ | === ADC === | ||
+ | Integer add with carry | ||
+ | |||
+ | ^ operands | ||
+ | | reg, reg | 2 | ||
+ | | mem, reg | 2+d(0, | ||
+ | | reg, mem | 2+d(0, | ||
+ | | reg, imm | 2+i(1, | ||
+ | | mem, imm | 2+d(0,2)\\ +i(1, | ||
+ | | acc, imm | 1+i(1, | ||
+ | |||
+ | * : not pairable if there is a displacement and immediate | ||
+ | |||
+ | Example: | ||
+ | |||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === ADD === | ||
+ | Integer addition | ||
+ | |||
+ | ^ operands | ||
+ | | reg, reg | 2 | ||
+ | | mem, reg | 2+d(0, | ||
+ | | reg, mem | 2+d(0, | ||
+ | | reg, imm | 2+i(1, | ||
+ | | mem, imm | 2+d(0,2)\\ +i(1, | ||
+ | | acc, imm | 1+i(1, | ||
+ | |||
+ | * = not pairable if there is a displacement and immediate | ||
+ | |||
+ | Example: | ||
+ | |||
+ | <code asm> | ||
+ | |||
+ | === AND === | ||
+ | Logical AND | ||
+ | |||
+ | ^ operands | ||
+ | | reg, reg | 2 | ||
+ | | mem, reg | 2+d(0, | ||
+ | | reg, mem | 2+d(0, | ||
+ | | reg, imm | 2+i(1, | ||
+ | | mem, imm | 2+d(0,2)\\ +i(1, | ||
+ | | acc, imm | 1+i(1, | ||
+ | |||
+ | * : not pairable if there is a displacement and immediate | ||
+ | |||
+ | Example: | ||
+ | |||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === ARPL === | ||
+ | Adjust RPL field of selector (286+) | ||
+ | |||
+ | ^ operands | ||
+ | | reg, reg | 2 | ||
+ | | mem, reg | 2+d(0-2) | ||
+ | |||
+ | Example: | ||
+ | |||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === BOUND === | ||
+ | Check array index against bounds (186+) | ||
+ | |||
+ | ^ operands | ||
+ | | reg, mem | 4 | 35 | ||
+ | |||
+ | Example: | ||
+ | |||
+ | <code asm> | ||
+ | |||
+ | === BSF === | ||
+ | Bit scan forward (386+) | ||
+ | |||
+ | ^ operands | ||
+ | | r16, r16 | 3 | ||
+ | | r32, r32 | 3 | ||
+ | | r16, m16 | 3+d(0, | ||
+ | | r32, m32 | 3+d(0, | ||
+ | |||
+ | Example: | ||
+ | |||
+ | <code asm> | ||
+ | === BSR === | ||
+ | Bit scan reverse (386+) | ||
+ | |||
+ | ^ operands | ||
+ | | r16, r16 | 3 | ||
+ | | r32, r32 | 3 | ||
+ | | r16, m16 | 3+d(0, | ||
+ | | r32, m32 | 3+d(0, | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === BSWAP === | ||
+ | Byte swap (486+) | ||
+ | |||
+ | ^ operand | ||
+ | | r32 | 2 | 1 | 1 | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | === BT === | ||
+ | Bit test (386+) | ||
+ | |||
+ | ^ operands | ||
+ | | reg, reg | ||
+ | | mem, reg | ||
+ | | reg, imm8 | 3+i(1) | ||
+ | | mem, imm8 | 3+d(0, | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === BTC === | ||
+ | Bit test and complement (386+) | ||
+ | |||
+ | ^ operands | ||
+ | | reg, reg | ||
+ | | mem, reg | ||
+ | | reg, imm8 | 3+i(1) | ||
+ | | mem, imm8 | 3+d(0, | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === BTR === | ||
+ | Bit test and reset (386+) | ||
+ | |||
+ | ^ operands | ||
+ | | reg, reg | ||
+ | | mem, reg | ||
+ | | reg, imm8 | 3+i(1) | ||
+ | | mem, imm8 | 3+d(0, | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === BTS === | ||
+ | Bit test and set (386+) | ||
+ | |||
+ | ^ operands | ||
+ | | reg, reg | ||
+ | | mem, reg | ||
+ | | reg, imm8 | 3+i(1) | ||
+ | | mem, imm8 | 3+d(0, | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === CALL === | ||
+ | Call subroutine | ||
+ | |||
+ | ^ operand | ||
+ | | near | ||
+ | | reg | 2 | ||
+ | | mem16 | 2+d(0-2) | ||
+ | | far | 5 | ||
+ | | mem32 | 2+d(0-2) | ||
+ | |||
+ | |||
+ | **Protected Mode** | ||
+ | |||
+ | ^ operand | ||
+ | | far | 5 | ||
+ | | mem32 | 2+d(0-2) | ||
+ | |||
+ | cycles not shown for calls through call and task gates | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === CBW === | ||
+ | Convert byte to word (AL --> AX) | ||
+ | |||
+ | ^ operand | ||
+ | | - | 1 | 2 | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === CWDE === | ||
+ | Convert word to dword (386+) | ||
+ | |||
+ | ^ operand | ||
+ | | - | 1 | 3 | 3 | 3 | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === CWD === | ||
+ | Convert word to double | ||
+ | |||
+ | ^ operand | ||
+ | | - | 1 | 5 | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === CDQ === | ||
+ | Convert double to quad (EAX --> EDX:EAX) | ||
+ | |||
+ | ^ operand | ||
+ | | - | 1 | 2 | 3 | 2 | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === CLC === | ||
+ | Clear the carry flag | ||
+ | |||
+ | ^ operand | ||
+ | | - | 1 | 2 | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === CLD === | ||
+ | Clear the direction flag (set to forward direction) | ||
+ | |||
+ | ^ operand | ||
+ | | - | 1 | 2 | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === CLI === | ||
+ | Clear the interrupt flag (disable interrupts) | ||
+ | |||
+ | ^ operand | ||
+ | | - | 1 | 2 | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === CLTS === | ||
+ | Clear task switched flag in CR0 (286+) | ||
+ | |||
+ | ^ operand | ||
+ | | - | 2 | 2 | 5 | 7 | 10 | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === CMC === | ||
+ | Complement carry flag | ||
+ | |||
+ | ^ operand | ||
+ | | - | 1 | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === CMP === | ||
+ | Compare two operands | ||
+ | |||
+ | ^ operands | ||
+ | | reg, reg | 2 | ||
+ | | mem, reg | 2+d(0, | ||
+ | | reg, mem | 2+d(0, | ||
+ | | reg, imm | 2+i(1, | ||
+ | | mem, imm | 2+d(0,2)\\ +i(1, | ||
+ | | acc, imm | 1+i(1, | ||
+ | |||
+ | * : not pairable if there is a displacement and immediate | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === CMPS/ | ||
+ | Compare string operands | ||
+ | |||
+ | ^ variations | ||
+ | | cmpsb | ||
+ | | cmpsw | ||
+ | | cmpsd | ||
+ | | repX cmpsb | 2 | 9+30n | 5+22n | 5+9n | 5+9n | 7+7n* | 9+4n NP | | ||
+ | | repX cmpsw | 2 | 9+30n | 5+22n | 5+9n | 5+9n | 7+7n* | 9+4n NP | | ||
+ | | repX cmpsd | 2 | - | - | - | ||
+ | //repX = repe, repz, repne or repnz// | ||
+ | |||
+ | * : 5 if n = 0 | ||
+ | |||
+ | Example: | ||
+ | |||
+ | <code asm> | ||
+ | === CMPXCHG === | ||
+ | Compare and Exchange (486+) | ||
+ | |||
+ | ^ operands | ||
+ | | reg, reg | 3 | ||
+ | | mem, reg | 3+d(0-2) | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === CMPXCHG8B === | ||
+ | Compare and Exchange 8 bytes (Pentium+) | ||
+ | |||
+ | ^ operands | ||
+ | | mem, reg | 3+d(0-2) | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === CPUID === | ||
+ | CPU identification (Pentium+) | ||
+ | |||
+ | ^ operands | ||
+ | | - | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === DAA === | ||
+ | Decimal adjust AL after addition | ||
+ | |||
+ | ^ operand | ||
+ | | - | 1 | 4 | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === DAS === | ||
+ | Decimal adjust AL after subtraction | ||
+ | |||
+ | ^ operand | ||
+ | | - | 1 | 4 | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === DEC === | ||
+ | Decrement | ||
+ | |||
+ | ^ operand | ||
+ | | r8 | ||
+ | | r16 | 1 | ||
+ | | r32 | 1 | ||
+ | | mem | 2+d(0, | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === DIV === | ||
+ | Unsigned divide | ||
+ | |||
+ | ^ operand | ||
+ | | r8 | ||
+ | | r16 | 2 | ||
+ | | r32 | 2 | ||
+ | | mem8 | ||
+ | | mem16 | 2+d(0-2) | ||
+ | | mem32 | 2+d(0-2) | ||
+ | |||
+ | ^ implied\\ dividend | ||
+ | | AX | / | byte | ||
+ | | DX:AX | ||
+ | | EDX: | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === ENTER === | ||
+ | Make stack frame for procedure parameters (186+) | ||
+ | |||
+ | ^ operands | ||
+ | | imm16, 0 | | ||
+ | | imm16, 1 | | ||
+ | | imm16, imm8 | 4 | | ||
+ | n = imm8-1; | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === ESC === | ||
+ | Escape | ||
+ | |||
+ | escape opcodes D8 - DF are used by floating point instructions | ||
+ | |||
+ | |||
+ | |||
+ | === HLT === | ||
+ | Halt | ||
+ | |||
+ | ^ operands | ||
+ | | - | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === IDIV === | ||
+ | Signed divide | ||
+ | |||
+ | ^ operand | ||
+ | | r8 | ||
+ | | r16 | 2 | ||
+ | | r32 | 2 | ||
+ | | mem8 | ||
+ | | mem16 | 2+d(0-2) | ||
+ | | mem32 | 2+d(0-2) | ||
+ | |||
+ | ^ implied\\ | ||
+ | | AX | byte | ||
+ | | DX:AX | ||
+ | | EDX: | ||
+ | |||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === IMUL === | ||
+ | Signed multiply | ||
+ | |||
+ | **Accumulator Multiplies** | ||
+ | |||
+ | ^ operand | ||
+ | | r8 | ||
+ | | r16 | 2 | ||
+ | | r32 | 2 | ||
+ | | mem8 | ||
+ | | mem16 | 2+d(0-2) | ||
+ | | mem32 | 2+d(0-2) | ||
+ | |||
+ | ^ implied\\ | ||
+ | | AL | byte | AX | | ||
+ | | AX | word | DX:AX | | ||
+ | | EAX | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | **2 and 3 operand Multiplies** | ||
+ | |||
+ | ^ operands | ||
+ | | r16, imm | ||
+ | | r32, imm | ||
+ | | r16, | ||
+ | | r32, | ||
+ | | r16, | ||
+ | | r32, | ||
+ | | r16, r16 | ||
+ | | r32, r32 | ||
+ | | r16, m16 | ||
+ | | r32, m32 | ||
+ | |||
+ | |||
+ | < | ||
+ | all forms: dest, src cycles for: | ||
+ | | ||
+ | dest, src1, src2 | ||
+ | </ | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === IN === | ||
+ | Input from port | ||
+ | |||
+ | ^ operands | ||
+ | | al, imm8 | | ||
+ | | ax, imm8 | | ||
+ | | eax, imm8 | | ||
+ | | al, dx | | ||
+ | | ax, dx | | ||
+ | | eax, dx | ||
+ | |||
+ | **Protected mode** | ||
+ | |||
+ | ^ | ||
+ | | acc, imm | ||
+ | | acc, dx | | ||
+ | |||
+ | cycles for: CPL <= IOPL / CPL > IOPL / V86 | ||
+ | |||
+ | |||
+ | Example: | ||
+ | |||
+ | <code asm> | ||
+ | === INC === | ||
+ | Increment | ||
+ | |||
+ | ^ operand | ||
+ | | r8 | | ||
+ | | r16 | ||
+ | | r32 | ||
+ | | mem | ||
+ | |||
+ | Example: | ||
+ | |||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === INS/ | ||
+ | Input from port to string | ||
+ | |||
+ | ^ variations | ||
+ | | insb | 1 | - | ||
+ | | insw | 1 | - | ||
+ | | insd | 1 | - | ||
+ | |||
+ | **Protected Mode** | ||
+ | |||
+ | ^ operand | ||
+ | | - | 1 | - | ||
+ | |||
+ | cycles for: CPL <= IOPL / CPL > IOPL / V86 | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === INT === | ||
+ | Call interrupt procedure | ||
+ | |||
+ | ^ operands | ||
+ | | 3 | ||
+ | | imm8 | 2 | 71 | 47 | ||
+ | |||
+ | **Protected mode** | ||
+ | |||
+ | ^ operands | ||
+ | | - | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | |||
+ | === INTO === | ||
+ | Call interrupt procedure if overflow | ||
+ | |||
+ | ^ operand | ||
+ | | - | 1 | 4/73 | 4/48 | 3/ | ||
+ | |||
+ | **Protected mode** | ||
+ | |||
+ | ^ operand | ||
+ | | - | 1 | | ||
+ | |||
+ | Task switch clocks not shown | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === INVD === | ||
+ | Invalidate data cache (486+) | ||
+ | |||
+ | ^ operand | ||
+ | | | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === INVLPG === | ||
+ | Invalidate TLB entry (486+) | ||
+ | |||
+ | ^ operand | ||
+ | | mem32 | | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === IRET === | ||
+ | Return from interrupt | ||
+ | |||
+ | ^ operand | ||
+ | | - | | ||
+ | |||
+ | Task switch clocks not shown | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === IRETD === | ||
+ | 32-bit return from interrupt (386+) | ||
+ | |||
+ | ^ operand | ||
+ | | | ||
+ | |||
+ | Task switch clocks not shown | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === Jcc === | ||
+ | Jump on condition code | ||
+ | |||
+ | ^ operand | ||
+ | | near8 | 2 | 4 / 16 | 4 / 13 | 3 / 7+m | 3 / 7+m | 1 / 3 | 1 PV | | ||
+ | | near16 | ||
+ | //cycles for: no jump/jump// | ||
+ | |||
+ | **conditional jump instructions: | ||
+ | ^ ja | jump if above | ||
+ | ^ jae | jump if above or equal ^ jnb | jump if not below | | ||
+ | ^ jb | jump if below | ||
+ | ^ jbe | jump if below or equal ^ jna | jump if not above | | ||
+ | ^ jg | jump if greater | ||
+ | ^ jge | jump if greater or equal ^ jnl | jump if not less | | ||
+ | ^ jl | jump if less ^ jnge | jump if not greater or equal | | ||
+ | | |||| | ||
+ | ^ jle | jump if less or equal | ||
+ | ^ je | jump if equal | ||
+ | ^ jne | jump if not equal | ||
+ | | |||| | ||
+ | ^ jc | jump if carry | ||
+ | ^ js | jump if sign ^ jns | jump if not sign | | ||
+ | ^ jnp | jump if no parity (odd) | ||
+ | ^ jo | jump if overflow | ||
+ | ^ jp | jump if parity (even) | ||
+ | Example: | ||
+ | |||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === JCXZ/JECXZ === | ||
+ | Jump if CX/ECX = 0 | ||
+ | |||
+ | ^ operand | ||
+ | | dest | ||
+ | | dest | ||
+ | //cycles for: no jump/jump// | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === JMP === | ||
+ | Unconditional jump | ||
+ | |||
+ | ^ operand | ||
+ | | short | 2 | ||
+ | | near | ||
+ | | far | 5 | ||
+ | | r16 | 2 | ||
+ | | mem16 | 2+d(0, | ||
+ | | mem32 | 2+d(4) | ||
+ | | | ||
+ | | r32 | 2 | ||
+ | | mem32 | 2+d(0, | ||
+ | | mem48 | 2+d(6) | ||
+ | //cycles for jumps through call gates not shown// | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === LAHF === | ||
+ | Load flags into AH | ||
+ | |||
+ | ^ operand | ||
+ | | | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === LAR [UPDATE] === | ||
+ | Load access rights byte (286+) | ||
+ | |||
+ | operands | ||
+ | r16, r16 | ||
+ | r32, r32 | ||
+ | r16, m16 | ||
+ | r32, m32 | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === LDS === | ||
+ | Load far pointer | ||
+ | |||
+ | operands | ||
+ | reg, mem | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === LES === | ||
+ | Load far pointer | ||
+ | |||
+ | operands | ||
+ | reg, mem | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === LFS === | ||
+ | Load far pointer (386+) | ||
+ | |||
+ | operands | ||
+ | reg, mem | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === LGS === | ||
+ | Load far pointer (386+) | ||
+ | |||
+ | operands | ||
+ | reg, mem | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === LSS === | ||
+ | Load stack segment and offset | ||
+ | |||
+ | operands | ||
+ | reg, mem | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === LEA === | ||
+ | Load effective address | ||
+ | |||
+ | operands | ||
+ | r16, mem 2+d(2) | ||
+ | r32, mem 2+d(2) | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === LEAVE === | ||
+ | High level procedure exit (186+) | ||
+ | |||
+ | bytes | ||
+ | | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === LGDT === | ||
+ | Load global descriptor table register (286+) | ||
+ | |||
+ | operand | ||
+ | | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === LIDT === | ||
+ | Load interrupt descriptor table register (286+) | ||
+ | |||
+ | operand | ||
+ | | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === LLDT === | ||
+ | Load local descriptor table register (286+) | ||
+ | |||
+ | operand | ||
+ | | ||
+ | | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === LMSW === | ||
+ | Load machine status word (286+) | ||
+ | |||
+ | operand | ||
+ | | ||
+ | | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === LOCK === | ||
+ | Lock bus on next instruction (prefix) | ||
+ | |||
+ | bytes | ||
+ | | ||
+ | |||
+ | (Note: xchg always is locked whether it is specified or not) | ||
+ | |||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === LODS/ | ||
+ | Load string operand | ||
+ | |||
+ | variations | ||
+ | lodsb 1 16 10 | ||
+ | lodsw 1 16 10 | ||
+ | lodsd 1 | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === LOOP === | ||
+ | Loop control with CX counter | ||
+ | |||
+ | operand | ||
+ | short 2 5/17 5/15 4/8+m | ||
+ | |||
+ | loopw short (uses CX in 32-bit mode) | ||
+ | loopd short (uses ECX in 16-bit mode) | ||
+ | |||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === LOOPE/LOOPZ === | ||
+ | Loop while equal (or zero) | ||
+ | |||
+ | operand | ||
+ | short 2 6/18 5/16 4/8 | ||
+ | |||
+ | loopew short (uses CX in 32-bit mode) | ||
+ | loopzw short (uses CX in 32-bit mode) | ||
+ | looped short (uses ECX in 16-bit mode) | ||
+ | loopzd short (uses ECX in 16-bit mode) | ||
+ | |||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === LOOPNE/ | ||
+ | Loop while not equal (or not zero) | ||
+ | |||
+ | operand bytes | ||
+ | short 2 5/19 5/16 4/8 | ||
+ | |||
+ | loopnew short (uses CX in 32-bit mode) | ||
+ | loopnzw short (uses CX in 32-bit mode) | ||
+ | loopned short (uses ECX in 16-bit mode) | ||
+ | loopnzd short (uses ECX in 16-bit mode) | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === LSL === | ||
+ | Load segment limit (286+) | ||
+ | |||
+ | operands | ||
+ | r16, r16 | ||
+ | r32, r32 | ||
+ | r16, m16 | ||
+ | r32, m32 | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === LTR === | ||
+ | Load task register (286+) | ||
+ | |||
+ | operand | ||
+ | r16 3 17 23 20 10 NP | ||
+ | mem16 3+d(0, | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === MOV === | ||
+ | Move data | ||
+ | |||
+ | ^ operands | ||
+ | | reg, reg | 2 | ||
+ | | mem, reg | 2+d(0-2) | ||
+ | | reg, mem | 2+d(0-2) | ||
+ | | mem, imm | 2+d(0-2)\\ +i(1, | ||
+ | | reg, imm | 2+i(1, | ||
+ | | acc, mem | 3 | ||
+ | | mem, acc | 3 | ||
+ | |||
+ | //* : not pairable if there is a displacement and immediate// | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | mov eax, ebx | ||
+ | </ | ||
+ | |||
+ | **Segment Register Moves** | ||
+ | |||
+ | **Real Mode** | ||
+ | |||
+ | ^ operands | ||
+ | | seg, r16 | 2 | ||
+ | | seg, m16 | 2+d(0, | ||
+ | | r16, seg | 2 | ||
+ | | m16, seg | 2+d(0, | ||
+ | |||
+ | |||
+ | Example: | ||
+ | |||
+ | <code asm> | ||
+ | |||
+ | |||
+ | ** Protected Mode Differences** | ||
+ | |||
+ | ^ operands | ||
+ | | seg, r16 | 2 | ||
+ | | seg, m16 | 2+d(0, | ||
+ | |||
+ | ** MOVE to/from special registers (386+) ** | ||
+ | |||
+ | ^ operands | ||
+ | | r32, cr32 | 3 | 6 | ||
+ | | cr32, r32 | 3 | 4/10* | ||
+ | | r32, dr32 | 3 | 14/ | ||
+ | | dr32, r32 | 3 | 16/ | ||
+ | | r32, tr32 | 3 | 12 | 3/4* | ||
+ | | tr32, r32 | 3 | 12 | 4/6* | ||
+ | |||
+ | //* : cycles depend on which special register// | ||
+ | |||
+ | Example: | ||
+ | |||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === MOVS/ | ||
+ | Move data from string to string | ||
+ | |||
+ | variations | ||
+ | movsb 1 18 | ||
+ | movsw 1 26 | ||
+ | movsd 1 | ||
+ | rep movsb 2 9+17n | ||
+ | rep movsw 2 9+25n | ||
+ | rep movsd 2 | ||
+ | |||
+ | * = 5 if n=0, 13 if n=1 | ||
+ | (n = count of bytes, words or dwords) | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === MOVSX === | ||
+ | Move with sign-extend (386+) | ||
+ | |||
+ | operands | ||
+ | reg, reg | ||
+ | reg, mem | ||
+ | |||
+ | (Note: destination reg is 16 or 32-bits; source is 8 or 16 bits) | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === MOVZX === | ||
+ | Move with zero-extend (386+) | ||
+ | |||
+ | operands | ||
+ | reg, reg | ||
+ | reg, mem | ||
+ | |||
+ | (Note: destination reg is 16 or 32-bits; source is 8 or 16 bits) | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === MUL === | ||
+ | Unsigned multiply | ||
+ | |||
+ | operand | ||
+ | r8 | ||
+ | r16 2 118-133 | ||
+ | r32 2 | ||
+ | mem8 2+d(0-2) | ||
+ | mem16 | ||
+ | mem32 | ||
+ | |||
+ | | ||
+ | | ||
+ | AL * byte | ||
+ | AX * word | ||
+ | EAX | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === NEG === | ||
+ | Two's complement negation | ||
+ | |||
+ | operand | ||
+ | reg 2 | ||
+ | mem | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === NOP === | ||
+ | No operation | ||
+ | |||
+ | bytes | ||
+ | | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === NOT === | ||
+ | One's complement negation | ||
+ | |||
+ | operands | ||
+ | reg 2 | ||
+ | mem | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === OR === | ||
+ | Logical inclusive or | ||
+ | |||
+ | | ||
+ | reg, reg 2 | ||
+ | mem, reg | ||
+ | reg, mem | ||
+ | reg, imm | ||
+ | mem, imm | ||
+ | | ||
+ | acc, imm | ||
+ | |||
+ | * = not pairable if there is a displacement and immediate | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === OUT === | ||
+ | Output to port | ||
+ | |||
+ | ^ operands | ||
+ | | imm8, al | | ||
+ | | imm8, ax | | ||
+ | | imm8, eax | 2 | | ||
+ | | dx, al | ||
+ | | dx, ax | ||
+ | | dx, eax | 1 | | ||
+ | |||
+ | **Protected Mode** | ||
+ | |||
+ | ^ operands | ||
+ | | imm8, acc | | ||
+ | | dx, acc | | ||
+ | |||
+ | cycles for: CPL <= IOPL / CPL > IOPL / V86 | ||
+ | |||
+ | Example: | ||
+ | |||
+ | <code asm> | ||
+ | out dx, al</ | ||
+ | === OUTS/ | ||
+ | Output string to port | ||
+ | |||
+ | variations | ||
+ | outsb 1 14 | ||
+ | outsw 1 14 | ||
+ | outsd 1 | ||
+ | |||
+ | **Protected mode** | ||
+ | |||
+ | bytes | ||
+ | | ||
+ | |||
+ | | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === POP === | ||
+ | Pop a word/dword from the stack | ||
+ | |||
+ | operand | ||
+ | reg 1 12 10 | ||
+ | mem | ||
+ | seg 1 12 | ||
+ | FS/GS 2 | ||
+ | |||
+ | **Protected mode** | ||
+ | |||
+ | operand | ||
+ | CS/ | ||
+ | SS | ||
+ | FS/GS 2 | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === POPA/POPAD === | ||
+ | Pop all (186+)/Pop all double (386+) | ||
+ | |||
+ | variations | ||
+ | popa | ||
+ | popad 1 | ||
+ | |||
+ | popa = pop di, si, bp, sp, bx, dx, cx, ax | ||
+ | popad = pop edi, esi, ebp, esp, ebx, edx, ecx, eax | ||
+ | (sp and esp are discarded) | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === POPF/POPFD === | ||
+ | Pop flags/Pop flags double (386+) | ||
+ | |||
+ | variations | ||
+ | popf | ||
+ | popfd 1 | ||
+ | |||
+ | **Protected mode** | ||
+ | |||
+ | bytes | ||
+ | popf | ||
+ | popfd 1 | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === PUSH === | ||
+ | push a word/dword to the stack | ||
+ | |||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === PUSHA/ | ||
+ | Push all (186+)/Push all double (386+) | ||
+ | |||
+ | variations | ||
+ | pusha 1 36 17 18 11 | ||
+ | pushad | ||
+ | |||
+ | pusha = push ax, cx, dx, bx, sp, bp, si, di, | ||
+ | pushad = push eax, ecx, edx, ebx, esp, ebp, esi, edi | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | === PUSHF/ | ||
+ | Push flags/Push flags double (386+) | ||
+ | |||
+ | variations | ||
+ | pushf 1 14 | ||
+ | pushfd | ||
+ | |||
+ | **Protected mode** | ||
+ | |||
+ | bytes | ||
+ | pushf 1 | ||
+ | pushfd | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === RCL === | ||
+ | Rotate bits left with CF | ||
+ | |||
+ | operands | ||
+ | reg, 1 | ||
+ | mem, 1 2+d(0, | ||
+ | reg, cl 2 | ||
+ | mem, cl | ||
+ | reg, imm | ||
+ | mem, imm 3+d(0, | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === RCR === | ||
+ | Rotate bits right with CF | ||
+ | |||
+ | operands | ||
+ | reg, 1 | ||
+ | mem, 1 2+d(0, | ||
+ | reg, cl 2 | ||
+ | mem, cl | ||
+ | reg, imm | ||
+ | mem, imm 3+d(0, | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === ROL === | ||
+ | Rotate bits left | ||
+ | |||
+ | operands | ||
+ | reg, 1 | ||
+ | mem, 1 2+d(0, | ||
+ | reg, cl 2 | ||
+ | mem, cl | ||
+ | reg, imm | ||
+ | mem, imm 3+d(0, | ||
+ | |||
+ | * = not pairable if there is a displacement and immediate | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === ROR === | ||
+ | Rotate bits right | ||
+ | |||
+ | operands | ||
+ | reg, 1 | ||
+ | mem, 1 2+d(0, | ||
+ | reg, cl 2 | ||
+ | mem, cl | ||
+ | reg, imm | ||
+ | mem, imm 3+d(0, | ||
+ | |||
+ | * = not pairable if there is a displacement and immediate | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === RDMSR === | ||
+ | Read from model specific register (Pentium+) | ||
+ | |||
+ | bytes | ||
+ | 2 20-24 NP | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === REP === | ||
+ | Repeat string operation | ||
+ | |||
+ | See: MOVS (rep movs) move block | ||
+ | See: STOS (rep stos) fill block | ||
+ | |||
+ | |||
+ | === REPE === | ||
+ | Repeat while equal (or zero) string operation | ||
+ | |||
+ | See: CMPS (repe cmps) find non-matching memory items | ||
+ | See: CMPS (repe scas) find non-acc matching byte in memory | ||
+ | |||
+ | |||
+ | === REPNE === | ||
+ | Repeat while not equal (or not zero) string operation | ||
+ | |||
+ | See: CMPS (repne cmps) find first matching memory items | ||
+ | See: SCAS (repne scas) find first matching memory item to acc | ||
+ | |||
+ | |||
+ | === RET/ | ||
+ | Return from procedure | ||
+ | |||
+ | | ||
+ | | ||
+ | | ||
+ | retn imm16 | ||
+ | | ||
+ | retf imm16 | ||
+ | |||
+ | RET is coded by the assembler as near or far based on the procedure declaration and program model, as: | ||
+ | |||
+ | < | ||
+ | RETN (return near) | ||
+ | RETF (return far) | ||
+ | </ | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | **Protected mode** | ||
+ | |||
+ | variations/ | ||
+ | operands | ||
+ | retf 1 | ||
+ | retf imm16 1+d(2) | ||
+ | |||
+ | cycles for: same privilege level/lower privilege level | ||
+ | === RSM === | ||
+ | Resume from system management mode (Pentium+) | ||
+ | |||
+ | bytes | ||
+ | | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === SAL/ | ||
+ | Shift bits | ||
+ | |||
+ | | ||
+ | reg, 1 2 | ||
+ | mem, 1 | ||
+ | reg, cl | ||
+ | mem, cl 2+d(0,2) 28+EA+4n 17+n 8+n 7 | ||
+ | reg, imm 3 | ||
+ | mem, imm | ||
+ | |||
+ | * = not pairable if there is a displacement and immediate | ||
+ | |||
+ | sal = shift arithmetic left sar = shift arithmetic right | ||
+ | shl = shift left (same as sal) shr = shift right | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === SAHF === | ||
+ | Store AH into flags | ||
+ | |||
+ | bytes | ||
+ | | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === SBB === | ||
+ | Integer subtraction with borrow | ||
+ | |||
+ | operands | ||
+ | reg, reg | ||
+ | mem, reg 2+d(0, | ||
+ | reg, mem 2+d(0, | ||
+ | reg, imm 2+i(1, | ||
+ | mem, imm 2+d(0, | ||
+ | | ||
+ | acc, imm 1+i(1, | ||
+ | |||
+ | * = not pairable if there is a displacement and immediate | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === SCAS/ | ||
+ | Scan string data | ||
+ | |||
+ | variations | ||
+ | scasb 1 19 15 | ||
+ | scasw 1 19 15 | ||
+ | scasd 1 | ||
+ | repX scasb | ||
+ | repX scasw | ||
+ | repX scasd | ||
+ | |||
+ | repX = repe or repz or repne or repnz | ||
+ | |||
+ | * = 5 if n=0 | ||
+ | (n = count of bytes, words or dwords) | ||
+ | |||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | === SET === | ||
+ | Set byte to 1 on condition else set to 0 (386+) | ||
+ | |||
+ | operand | ||
+ | r8 | ||
+ | mem8 | ||
+ | |||
+ | Cycles are for: true/false | ||
+ | |||
+ | setCC = one of: | ||
+ | |||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === SGDT === | ||
+ | Store global descriptor table register (286+) | ||
+ | |||
+ | | ||
+ | | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === SIDT === | ||
+ | Store interrupt descriptor table register (286+) | ||
+ | |||
+ | | ||
+ | | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === SHLD === | ||
+ | Double precision shift left (386+) | ||
+ | |||
+ | | ||
+ | reg, reg, imm 4 3 | ||
+ | mem, reg, imm | ||
+ | reg, reg, cl | ||
+ | mem, reg, cl 4+d(0-2) | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === SHRD === | ||
+ | Double precision shift right (386+) | ||
+ | |||
+ | | ||
+ | reg, reg, imm 4 3 | ||
+ | mem, reg, imm | ||
+ | reg, reg, cl | ||
+ | mem, reg, cl 4+d(0-2) | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === SLDT === | ||
+ | Store local descriptor table register (286+) | ||
+ | |||
+ | | ||
+ | | ||
+ | | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === SMSW === | ||
+ | Store machine status word (286+) | ||
+ | |||
+ | | ||
+ | | ||
+ | | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === STC === | ||
+ | Set the carry flag | ||
+ | |||
+ | bytes | ||
+ | | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === STD === | ||
+ | Set direction flag (set to reverse string direction) | ||
+ | |||
+ | bytes | ||
+ | | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === STI === | ||
+ | Set interrupt flag (enable) | ||
+ | |||
+ | bytes | ||
+ | | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === STOS/ | ||
+ | Store string data | ||
+ | |||
+ | ^ variations | ||
+ | | stosb | ||
+ | | stosw | ||
+ | | stosd | ||
+ | | rep stosb | ||
+ | | rep stosw | ||
+ | | rep stosd | ||
+ | |||
+ | * = 5 if n=0, 13 if n=1 | ||
+ | |||
+ | (n = count of bytes, words or dwords) | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === STR === | ||
+ | Store task register (286+) | ||
+ | |||
+ | ^ operand | ||
+ | | r16 | 3 | ||
+ | | mem16 | 3+d(0-2) | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === SUB === | ||
+ | Integer subtraction | ||
+ | |||
+ | ^ operands | ||
+ | | reg, reg | 2 | ||
+ | | mem, reg | 2+d(0, | ||
+ | | reg, mem | 2+d(0, | ||
+ | | reg, imm | 2+i(1, | ||
+ | | mem, imm | 2+d(0,2)\\ +i(1, | ||
+ | | acc, imm | 1+i(1, | ||
+ | |||
+ | * : not pairable if there is a displacement and immediate | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === TEST === | ||
+ | Logical compare | ||
+ | |||
+ | ^ operands | ||
+ | | reg, reg | 2 | ||
+ | | mem, reg | 2+d(0, | ||
+ | | reg, mem | 2+d(0, | ||
+ | | reg, imm | 2+i(1, | ||
+ | | mem, imm | 2+d(0,2)\\ +i(1, | ||
+ | | acc, imm | 1+i(1, | ||
+ | |||
+ | * : not pairable if there is a displacement and immediate | ||
+ | |||
+ | Example: | ||
+ | |||
+ | <code asm> | ||
+ | === VERR === | ||
+ | Verify a segment for reading (286+) | ||
+ | |||
+ | ^ operands | ||
+ | | | ||
+ | | | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === VERW === | ||
+ | Verify a segment for writing (286+) | ||
+ | |||
+ | ^ operands | ||
+ | | | ||
+ | | | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === WAIT === | ||
+ | Wait for co-processor | ||
+ | |||
+ | ^ operands | ||
+ | | - | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === WBINVD === | ||
+ | Write-back and invalidate data cache (486+) | ||
+ | |||
+ | ^ operands | ||
+ | | - | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === WRMSR === | ||
+ | Write to model specific register (PENTIUM+) | ||
+ | |||
+ | ^ operands | ||
+ | | - | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === XADD === | ||
+ | Exchange and add (486+) | ||
+ | |||
+ | ^ operands | ||
+ | | reg, reg | 3 | ||
+ | | mem, reg | 3+d(0-2) | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === XCHG === | ||
+ | Exchange register/ | ||
+ | |||
+ | ^ operands | ||
+ | | reg, reg | 2 | ||
+ | | reg, mem | 2+d(0-2) | ||
+ | | mem, reg | 2+d(0-2) | ||
+ | | acc, reg | 1 | ||
+ | | reg, acc | 1 | ||
+ | |||
+ | in above: acc = AX or EAX only | ||
+ | |||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | === XLAT/XLATB === | ||
+ | Table look-up translation | ||
+ | |||
+ | ^ operands | ||
+ | | - | ||
+ | |||
+ | Example: | ||
+ | <code asm> | ||
+ | |||
+ | |||
+ | === XOR === | ||
+ | Logical exclusive or | ||
+ | |||
+ | ^ operands | ||
+ | | reg, reg | 2 | ||
+ | | mem, reg | 2+d(0, | ||
+ | | reg, mem | 2+d(0, | ||
+ | | reg, imm | 2+i(1, | ||
+ | | mem, imm | 2+d(0,2)\\ +i(1, | ||
+ | | acc, imm | 1+i(1, | ||
+ | |||
+ | * : not pairable if there is a displacement and immediate | ||
+ | |||
+ | Example: | ||
+ | <code asm> |