Previous Chapter | Contents | Index
This appendix provides a complete list of the machine instructions which NASM will assemble, and a short description of the function of each one.
It is not intended to be exhaustive documentation on the fine details of
the instructions' function, such as which exceptions they can trigger: for
such documentation, you should go to Intel's web site
or AMD's web site
.
Instead, this appendix is intended primarily to provide documentation on
the way the instructions may be used within NASM. For example, looking up
will tell you that NASM allows
or to be
specified as an optional second argument to the
instruction, to enforce which of the two
possible counter registers should be used if the default is not the one
desired.
The instructions are not quite listed in alphabetical order, since groups of instructions with similar functions are lumped together in the same entry. Most of them don't move very far from their alphabetic position because of this.
The instruction descriptions in this appendix specify their operands using the following notation:
reg8 denotes an 8-bit general
purpose register, reg16 denotes a 16-bit general
purpose register, and reg32 a 32-bit one.
fpureg denotes one of the eight FPU stack
registers, mmxreg denotes one of the eight 64-bit
MMX registers, xmmreg denotes one of the 128-bit
XMM/SSE registers and segreg denotes a segment
register. In addition, some registers (such as
AL , DX or
ECX ) may be specified explicitly.
imm denotes a generic
immediate operand. imm8 ,
imm16 and imm32 are
used when the operand is intended to be a specific size. For some of these
instructions, NASM needs an explicit specifier: for example,
ADD ESP,16 could be interpreted as either
ADD r/m32,imm32 or
ADD r/m32,imm8 . NASM chooses the former by
default, and so you must specify ADD ESP,BYTE 16
for the latter.
mem denotes a generic
memory reference; mem8 ,
mem16 , mem32 ,
mem64 and mem80 are
used when the operand needs to be a specific size. Again, a specifier is
needed in some cases: DEC [address] is ambiguous
and will be rejected by NASM. You must specify
DEC BYTE [address] ,
DEC WORD [address] or
DEC DWORD [address] instead.
MOV instruction allows a memory address to be
specified without allowing the normal range of register
combinations and effective address processing. This is denoted by
memoffs8 , memoffs16 and
memoffs32 .
r/m8 is a shorthand for
reg8/mem8 ; similarly
r/m16 and r/m32 .
r/m64 is MMX-related, and is a shorthand for
mmxreg/mem64 . r/m128 is
for SSE instructions, and is short for
xmmreg/mem128 .
This appendix also provides the opcodes which NASM will generate for each form of each instruction. The opcodes are listed in the following way:
3F , indicates a fixed
byte containing that number.
+r , such as
C8+r , indicates that one of the operands to the
instruction is a register, and the `register value' of that register should
be added to the hex number to produce the generated byte. For example, EDX
has register value 2, so the code C8+r , when the
register operand is EDX, generates the hex byte
CA . Register values for specific registers are
given in section A.2.1.
+cc , such as
40+cc , indicates that the instruction name has a
condition code suffix, and the numeric representation of the condition code
should be added to the hex number to produce the generated byte. For
example, the code 40+cc , when the instruction
contains the NE condition, generates the hex byte
45 . Condition codes and their numeric
representations are given in section A.2.2.
/2 ,
indicates that one of the operands to the instruction is a memory address
or register (denoted mem or
r/m , with an optional size). This is to be
encoded as an effective address, with a ModR/M byte, an optional SIB byte,
and an optional displacement, and the spare (register) field of the ModR/M
byte should be the digit given (which will be from 0 to 7, so it fits in
three bits). The encoding of effective addresses is given in
section A.2.3.
/r combines the above two: it
indicates that one of the operands is a memory address or
r/m , and another is a register, and that an
effective address should be generated with the spare (register) field in
the ModR/M byte being equal to the `register value' of the register
operand. The encoding of effective addresses is given in
section A.2.3; register values are given in
section A.2.1.
ib , iw
and id indicate that one of the operands to the
instruction is an immediate value, and that this is to be encoded as a
byte, little-endian word or little-endian doubleword respectively.
rb , rw
and rd indicate that one of the operands to the
instruction is an immediate value, and that the difference between
this value and the address of the end of the instruction is to be encoded
as a byte, word or doubleword respectively. Where the form
rw/rd appears, it indicates that either
rw or rd should be used
according to whether assembly is being performed in
BITS 16 or BITS 32
state respectively.
ow and od
indicate that one of the operands to the instruction is a reference to the
contents of a memory address specified as an immediate value: this encoding
is used in some forms of the MOV instruction in
place of the standard effective-address mechanism. The displacement is
encoded as a word or doubleword. Again, ow/od
denotes that ow or od
should be chosen according to the BITS setting.
o16 and
o32 indicate that the given form of the
instruction should be assembled with operand size 16 or 32 bits. In other
words, o16 indicates a
66 prefix in BITS 32
state, but generates no code in BITS 16 state;
and o32 indicates a 66
prefix in BITS 16 state but generates nothing in
BITS 32 .
a16 and
a32 , similarly to o16
and o32 , indicate the address size of the given
form of the instruction. Where this does not match the
BITS setting, a 67
prefix is required.
Where an instruction requires a register value, it is already implicit in the encoding of the rest of the instruction what type of register is intended: an 8-bit general-purpose register, a segment register, a debug register, an MMX register, or whatever. Therefore there is no problem with registers of different types sharing an encoding value.
The encodings for the various classes of register are:
AL is 0,
CL is 1, DL is 2,
BL is 3, AH is 4,
CH is 5, DH is 6, and
BH is 7.
AX is 0,
CX is 1, DX is 2,
BX is 3, SP is 4,
BP is 5, SI is 6, and
DI is 7.
EAX is 0,
ECX is 1, EDX is 2,
EBX is 3, ESP is 4,
EBP is 5, ESI is 6, and
EDI is 7.
ES is 0,
CS is 1, SS is 2,
DS is 3, FS is 4, and
GS is 5.
ST0 is 0,
ST1 is 1, ST2 is 2,
ST3 is 3, ST4 is 4,
ST5 is 5, ST6 is 6, and
ST7 is 7.
MM0 is 0,
MM1 is 1, MM2 is 2,
MM3 is 3, MM4 is 4,
MM5 is 5, MM6 is 6, and
MM7 is 7.
CR0 is 0,
CR2 is 2, CR3 is 3, and
CR4 is 4.
DR0 is 0,
DR1 is 1, DR2 is 2,
DR3 is 3, DR6 is 6, and
DR7 is 7.
TR3 is 3,
TR4 is 4, TR5 is 5,
TR6 is 6, and TR7 is 7.
(Note that wherever a register name contains a number, that number is also the register value for that register.)
The available condition codes are given here, along with their numeric representations as part of opcodes. Many of these condition codes have synonyms, so several will be listed at a time.
In the following descriptions, the word `either', when applied to two possible trigger conditions, is used to mean `either or both'. If `either but not both' is meant, the phrase `exactly one of' is used.
O is 0 (trigger if the overflow flag is set);
NO is 1.
B , C and
NAE are 2 (trigger if the carry flag is set);
AE , NB and
NC are 3.
E and Z are 4
(trigger if the zero flag is set); NE and
NZ are 5.
BE and NA are 6
(trigger if either of the carry or zero flags is set);
A and NBE are 7.
S is 8 (trigger if the sign flag is set);
NS is 9.
P and PE are 10
(trigger if the parity flag is set); NP and
PO are 11.
L and NGE are 12
(trigger if exactly one of the sign and overflow flags is set);
GE and NL are 13.
LE and NG are 14
(trigger if either the zero flag is set, or exactly one of the sign and
overflow flags is set); G and
NLE are 15.
Note that in all cases, the sense of a condition code may be reversed by changing the low bit of the numeric representation.
An effective address is encoded in up to three parts: a ModR/M byte, an optional SIB byte, and an optional byte, word or doubleword displacement field.
The ModR/M byte consists of three fields: the
field, ranging from 0 to 3, in the upper two
bits of the byte, the field, ranging from 0
to 7, in the lower three bits, and the spare (register) field in the middle
(bit 3 to bit 5). The spare field is not relevant to the effective address
being encoded, and either contains an extension to the instruction opcode
or the register value of another operand.
The ModR/M system can be used to encode a direct register reference
rather than a memory access. This is always done by setting the
field to 3 and the
field to the register value of the register
in question (it must be a general-purpose register, and the size of the
register must already be implicit in the encoding of the rest of the
instruction). In this case, the SIB byte and displacement field are both
absent.
In 16-bit addressing mode (either with
no prefix, or
with a
prefix), the SIB byte is never used. The general rules for
and (there is
an exception, given below) are:
mod field gives the length of the
displacement field: 0 means no displacement, 1 means one byte, and 2 means
two bytes.
r/m field encodes the combination of
registers to be added to the displacement to give the accessed address: 0
means BX+SI , 1 means
BX+DI , 2 means BP+SI , 3
means BP+DI , 4 means SI
only, 5 means DI only, 6 means
BP only, and 7 means BX
only.
However, there is a special case:
mod is 0 and r/m
is 6, the effective address encoded is not [BP]
as the above rules would suggest, but instead
[disp16] : the displacement field is present and
is two bytes long, and no registers are added to the displacement.
Therefore the effective address cannot be
encoded as efficiently as ; so if you code
in a program, NASM adds a notional 8-bit
zero displacement, and sets to 1,
to 6, and the one-byte displacement field to
0.
In 32-bit addressing mode (either with
a prefix, or
with no prefix) the general rules (again,
there are exceptions) for and
are:
mod field gives the length of the
displacement field: 0 means no displacement, 1 means one byte, and 2 means
four bytes.
ESP , the r/m field
gives its register value, and the SIB byte is absent. If the
r/m field is 4 (which would encode
ESP ), the SIB byte is present and gives the
combination and scaling of registers to be added to the displacement.
If the SIB byte is present, it describes the combination of registers
(an optional base register, and an optional index register scaled by
multiplication by 1, 2, 4 or 8) to be added to the displacement. The SIB
byte is divided into the field, in the top
two bits, the field in the next three, and
the field in the bottom three. The general
rules are:
base field encodes the register value of
the base register.
index field encodes the register value of
the index register, unless it is 4, in which case no index register is used
(so ESP cannot be used as an index register).
scale field encodes the multiplier by
which the index register is scaled before adding it to the base and
displacement: 0 encodes a multiplier of 1, 1 encodes 2, 2 encodes 4 and 3
encodes 8.
The exceptions to the 32-bit encoding rules are:
mod is 0 and r/m
is 5, the effective address encoded is not [EBP]
as the above rules would suggest, but instead
[disp32] : the displacement field is present and
is four bytes long, and no registers are added to the displacement.
mod is 0, r/m is
4 (meaning the SIB byte is present) and base is
4, the effective address encoded is not
[EBP+index] as the above rules would suggest, but
instead [disp32+index] : the displacement field is
present and is four bytes long, and there is no base register (but the
index register is still processed in the normal way).
Given along with each instruction in this appendix is a set of flags, denoting the type of the instruction. The types are as follows:
8086 , 186 ,
286 , 386 ,
486 , PENT and
P6 denote the lowest processor type that supports
the instruction. Most instructions run on all processors above the given
type; those that do not are documented. The Pentium II contains no
additional instructions beyond the P6 (Pentium Pro); from the point of view
of its instruction set, it can be thought of as a P6 with MMX capability.
CYRIX indicates that the instruction is
specific to Cyrix processors, for example the extra MMX instructions in the
Cyrix extended MMX instruction set.
FPU indicates that the instruction is a
floating-point one, and will only run on machines with a coprocessor
(automatically including 486DX, Pentium and above).
MMX indicates that the instruction is an MMX
one, and will run on MMX-capable Pentium processors and the Pentium II.
PRIV indicates that the instruction is a
protected-mode management instruction. Many of these may only be used in
protected mode, or only at privilege level zero.
UNDOC indicates that the instruction is an
undocumented one, and not part of the official Intel Architecture; it may
or may not be supported on any given machine.
AAA , AAS , AAM , AAD : ASCII AdjustmentsAAA ; 37 [8086]
AAS ; 3F [8086]
AAD ; D5 0A [8086] AAD imm ; D5 ib [8086]
AAM ; D4 0A [8086] AAM imm ; D4 ib [8086]
These instructions are used in conjunction with the add, subtract,
multiply and divide instructions to perform binary-coded decimal arithmetic
in unpacked (one BCD digit per byte - easy to translate to and
from ASCII, hence the instruction names) form. There are also packed BCD
instructions and
: see section
A.34.
should be used after a one-byte
instruction whose destination was the
register: by means of examining the value in
the low nibble of and also the auxiliary carry
flag , it determines whether the addition has
overflowed, and adjusts it (and sets the carry flag) if so. You can add
long BCD strings together by doing
/ on the low
digits, then doing
/ on each
subsequent digit.
works similarly to
, but is for use after
instructions rather than
.
is for use after you have multiplied two
decimal digits together and left the result in
: it divides by
ten and stores the quotient in , leaving the
remainder in . The divisor 10 can be changed by
specifying an operand to the instruction: a particularly handy use of this
is , causing the two nibbles in
to be separated into
and .
performs the inverse operation to
: it multiplies
by ten, adds it to , and sets
to zero. Again, the multiplier 10 can be
changed.
ADC : Add with CarryADC r/m8,reg8 ; 10 /r [8086] ADC r/m16,reg16 ; o16 11 /r [8086] ADC r/m32,reg32 ; o32 11 /r [386]
ADC reg8,r/m8 ; 12 /r [8086] ADC reg16,r/m16 ; o16 13 /r [8086] ADC reg32,r/m32 ; o32 13 /r [386]
ADC r/m8,imm8 ; 80 /2 ib [8086] ADC r/m16,imm16 ; o16 81 /2 iw [8086] ADC r/m32,imm32 ; o32 81 /2 id [386]
ADC r/m16,imm8 ; o16 83 /2 ib [8086] ADC r/m32,imm8 ; o32 83 /2 ib [386]
ADC AL,imm8 ; 14 ib [8086] ADC AX,imm16 ; o16 15 iw [8086] ADC EAX,imm32 ; o32 15 id [386]
performs integer addition: it adds its two
operands together, plus the value of the carry flag, and leaves the result
in its destination (first) operand. The flags are set according to the
result of the operation: in particular, the carry flag is affected and can
be used by a subsequent instruction.
In the forms with an 8-bit immediate second operand and a longer first
operand, the second operand is considered to be signed, and is
sign-extended to the length of the first operand. In these cases, the
qualifier is necessary to force NASM to
generate this form of the instruction.
To add two numbers without also adding the contents of the carry flag,
use (section A.6).
ADD : Add IntegersADD r/m8,reg8 ; 00 /r [8086] ADD r/m16,reg16 ; o16 01 /r [8086] ADD r/m32,reg32 ; o32 01 /r [386]
ADD reg8,r/m8 ; 02 /r [8086] ADD reg16,r/m16 ; o16 03 /r [8086] ADD reg32,r/m32 ; o32 03 /r [386]
ADD r/m8,imm8 ; 80 /0 ib [8086] ADD r/m16,imm16 ; o16 81 /0 iw [8086] ADD r/m32,imm32 ; o32 81 /0 id [386]
ADD r/m16,imm8 ; o16 83 /0 ib [8086] ADD r/m32,imm8 ; o32 83 /0 ib [386]
ADD AL,imm8 ; 04 ib [8086] ADD AX,imm16 ; o16 05 iw [8086] ADD EAX,imm32 ; o32 05 id [386]
performs integer addition: it adds its two
operands together, and leaves the result in its destination (first)
operand. The flags are set according to the result of the operation: in
particular, the carry flag is affected and can be used by a subsequent
instruction (section
A.5).
In the forms with an 8-bit immediate second operand and a longer first
operand, the second operand is considered to be signed, and is
sign-extended to the length of the first operand. In these cases, the
qualifier is necessary to force NASM to
generate this form of the instruction.
ADDPS : SSE Packed Single-FP ADDADDPS xmmreg,r/m128 ; 0F 58 /r [KATMAI,SSE]
treats both operands as vectors of four
32-bit floating-point numbers and adds each number in the source operand to
the corresponding number in the destination register.
ADDSS : SSE Scalar Single-FP ADDADDSS xmmreg,xmmreg/mem32 ; F3 0F 58 /r [KATMAI,SSE]
adds the 32-bit floating-point number in
the lowest 4 bytes of the source operand to the floating-point number in
the lowest quarter of the destination register.
AND : Bitwise ANDAND r/m8,reg8 ; 20 /r [8086] AND r/m16,reg16 ; o16 21 /r [8086] AND r/m32,reg32 ; o32 21 /r [386]
AND reg8,r/m8 ; 22 /r [8086] AND reg16,r/m16 ; o16 23 /r [8086] AND reg32,r/m32 ; o32 23 /r [386]
AND r/m8,imm8 ; 80 /4 ib [8086] AND r/m16,imm16 ; o16 81 /4 iw [8086] AND r/m32,imm32 ; o32 81 /4 id [386]
AND r/m16,imm8 ; o16 83 /4 ib [8086] AND r/m32,imm8 ; o32 83 /4 ib [386]
AND AL,imm8 ; 24 ib [8086] AND AX,imm16 ; o16 25 iw [8086] AND EAX,imm32 ; o32 25 id [386]
performs a bitwise AND operation between
its two operands (i.e. each bit of the result is 1 if and only if the
corresponding bits of the two inputs were both 1), and stores the result in
the destination (first) operand.
In the forms with an 8-bit immediate second operand and a longer first
operand, the second operand is considered to be signed, and is
sign-extended to the length of the first operand. In these cases, the
qualifier is necessary to force NASM to
generate this form of the instruction.
The MMX instruction (see
section A.153) performs the same operation on
the 64-bit MMX registers.
ANDNPS : SSE Bitwise Logical AND NOTANDNPS xmmreg,r/m128 ; 0F 55 /r [KATMAI,SSE]
performs a bitwise AND operation on the
source operand and the complement of the destination register, and stores
the result in the destination register.
ANDPS : SSE Bitwise Logical ANDANDPS xmmreg,r/m128 ; 0F 54 /r [KATMAI,SSE]
performs a bitwise AND operation on the
source operand and the destination register, and stores the result in the
destination register.
ARPL : Adjust RPL Field of SelectorARPL r/m16,reg16 ; 63 /r [286,PRIV]
expects its two word operands to be
segment selectors. It adjusts the RPL (requested privilege level - stored
in the bottom two bits of the selector) field of the destination (first)
operand to ensure that it is no less (i.e. no more privileged than) the RPL
field of the source operand. The zero flag is set if and only if a change
had to be made.
BOUND : Check Array Index against BoundsBOUND reg16,mem ; o16 62 /r [186] BOUND reg32,mem ; o32 62 /r [386]
expects its second operand to point to
an area of memory containing two signed values of the same size as its
first operand (i.e. two words for the 16-bit form; two doublewords for the
32-bit form). It performs two signed comparisons: if the value in the
register passed as its first operand is less than the first of the
in-memory values, or is greater than or equal to the second, it throws a BR
exception. Otherwise, it does nothing.
BSF , BSR : Bit ScanBSF reg16,r/m16 ; o16 0F BC /r [386] BSF reg32,r/m32 ; o32 0F BC /r [386]
BSR reg16,r/m16 ; o16 0F BD /r [386] BSR reg32,r/m32 ; o32 0F BD /r [386]
searches for a set bit in its source
(second) operand, starting from the bottom, and if it finds one, stores the
index in its destination (first) operand. If no set bit is found, the
contents of the destination operand are undefined.
performs the same function, but searches
from the top instead, so it finds the most significant set bit.
Bit indices are from 0 (least significant) to 15 or 31 (most significant).
BSWAP : Byte SwapBSWAP reg32 ; o32 0F C8+r [486]
swaps the order of the four bytes of a
32-bit register: bits 0-7 exchange places with bits 24-31, and bits 8-15
swap with bits 16-23. There is no explicit 16-bit equivalent: to byte-swap
, ,
or ,
can be used.
BT , BTC , BTR , BTS : Bit TestBT r/m16,reg16 ; o16 0F A3 /r [386] BT r/m32,reg32 ; o32 0F A3 /r [386] BT r/m16,imm8 ; o16 0F BA /4 ib [386] BT r/m32,imm8 ; o32 0F BA /4 ib [386]
BTC r/m16,reg16 ; o16 0F BB /r [386] BTC r/m32,reg32 ; o32 0F BB /r [386] BTC r/m16,imm8 ; o16 0F BA /7 ib [386] BTC r/m32,imm8 ; o32 0F BA /7 ib [386]
BTR r/m16,reg16 ; o16 0F B3 /r [386] BTR r/m32,reg32 ; o32 0F B3 /r [386] BTR r/m16,imm8 ; o16 0F BA /6 ib [386] BTR r/m32,imm8 ; o32 0F BA /6 ib [386]
BTS r/m16,reg16 ; o16 0F AB /r [386] BTS r/m32,reg32 ; o32 0F AB /r [386] BTS r/m16,imm ; o16 0F BA /5 ib [386] BTS r/m32,imm ; o32 0F BA /5 ib [386]
These instructions all test one bit of their first operand, whose index is given by the second operand, and store the value of that bit into the carry flag. Bit indices are from 0 (least significant) to 15 or 31 (most significant).
In addition to storing the original value of the bit into the carry
flag, also resets (clears) the bit in the
operand itself. sets the bit, and
complements the bit.
does not modify its operands.
The bit offset should be no greater than the size of the operand.
CALL : Call SubroutineCALL imm ; E8 rw/rd [8086] CALL imm:imm16 ; o16 9A iw iw [8086] CALL imm:imm32 ; o32 9A id iw [386] CALL FAR mem16 ; o16 FF /3 [8086] CALL FAR mem32 ; o32 FF /3 [386] CALL r/m16 ; o16 FF /2 [8086] CALL r/m32 ; o32 FF /2 [386]
calls a subroutine, by means of pushing
the current instruction pointer () and
optionally as well on the stack, and then
jumping to a given address.
is pushed as well as
if and only if the call is a far call, i.e. a
destination segment address is specified in the instruction. The forms
involving two colon-separated arguments are far calls; so are the
forms.
You can choose between the two immediate far call forms
() by the use of the
and
keywords: ) or
.
The forms execute a far call by
loading the destination address out of memory. The address loaded consists
of 16 or 32 bits of offset (depending on the operand size), and 16 bits of
segment. The operand size may be overridden using
or
.
The forms execute a near call (within
the same segment), loading the destination address out of memory or out of
a register. The keyword may be specified,
for clarity, in these forms, but is not necessary. Again, operand size can
be overridden using or
.
As a convenience, NASM does not require you to call a far procedure
symbol by coding the cumbersome
, but instead allows the
easier synonym .
The forms given above are near calls;
NASM will accept the keyword (e.g.
), even though it is not
strictly necessary.
CBW , CWD , CDQ , CWDE : Sign ExtensionsCBW ; o16 98 [8086] CWD ; o16 99 [8086] CDQ ; o32 99 [386] CWDE ; o32 98 [386]
All these instructions sign-extend a short value into a longer one, by replicating the top bit of the original value to fill the extended one.
extends into
by repeating the top bit of
in every bit of .
extends into
by repeating the top bit of
throughout .
extends into
, and extends
into .
CLC , CLD , CLI , CLTS : Clear FlagsCLC ; F8 [8086] CLD ; FC [8086] CLI ; FA [8086] CLTS ; 0F 06 [286,PRIV]
These instructions clear various flags.
clears the carry flag; clears the direction
flag; clears the interrupt flag (thus
disabling interrupts); and clears the
task-switched () flag in
.
To set the carry, direction, or interrupt flags, use the
, and
instructions
(section A.241). To invert the carry flag, use
(section A.20).
CMC : Complement Carry FlagCMC ; F5 [8086]
changes the value of the carry flag: if it
was 0, it sets it to 1, and vice versa.
CMOVcc : Conditional MoveCMOVcc reg16,r/m16 ; o16 0F 40+cc /r [P6] CMOVcc reg32,r/m32 ; o32 0F 40+cc /r [P6]
moves its source (second) operand into
its destination (first) operand if the given condition code is satisfied;
otherwise it does nothing.
For a list of condition codes, see section A.2.2.
Although the instructions are flagged
above, they may not be supported by all
Pentium Pro processors; the instruction
(section A.29) will return a bit which
indicates whether conditional moves are supported.
CMP : Compare IntegersCMP r/m8,reg8 ; 38 /r [8086] CMP r/m16,reg16 ; o16 39 /r [8086] CMP r/m32,reg32 ; o32 39 /r [386]
CMP reg8,r/m8 ; 3A /r [8086] CMP reg16,r/m16 ; o16 3B /r [8086] CMP reg32,r/m32 ; o32 3B /r [386]
CMP r/m8,imm8 ; 80 /0 ib [8086] CMP r/m16,imm16 ; o16 81 /0 iw [8086] CMP r/m32,imm32 ; o32 81 /0 id [386]
CMP r/m16,imm8 ; o16 83 /0 ib [8086] CMP r/m32,imm8 ; o32 83 /0 ib [386]
CMP AL,imm8 ; 3C ib [8086] CMP AX,imm16 ; o16 3D iw [8086] CMP EAX,imm32 ; o32 3D id [386]
performs a `mental' subtraction of its
second operand from its first operand, and affects the flags as if the
subtraction had taken place, but does not store the result of the
subtraction anywhere.
In the forms with an 8-bit immediate second operand and a longer first
operand, the second operand is considered to be signed, and is
sign-extended to the length of the first operand. In these cases, the
qualifier is necessary to force NASM to
generate this form of the instruction.
CMPccPS : SSE Packed Single-FP CompareCMPPS xmmreg,r/m128,imm8 ; 0F C2 /r ib [KATMAI,SSE]
CMPEQPS xmmreg,r/m128 ; 0F C2 /r 00 [KATMAI,SSE] CMPLEPS xmmreg,r/m128 ; 0F C2 /r 02 [KATMAI,SSE] CMPLTPS xmmreg,r/m128 ; 0F C2 /r 01 [KATMAI,SSE] CMPNEQPS xmmreg,r/m128 ; 0F C2 /r 04 [KATMAI,SSE] CMPNLEPS xmmreg,r/m128 ; 0F C2 /r 06 [KATMAI,SSE] CMPNLTPS xmmreg,r/m128 ; 0F C2 /r 05 [KATMAI,SSE] CMPORDPS xmmreg,r/m128 ; 0F C2 /r 07 [KATMAI,SSE] CMPUNORDPS xmmreg,r/m128 ; 0F C2 /r 03 [KATMAI,SSE]
treats both operands as vectors of four
32-bit floating-point numbers. For each pair of such numbers
produces an all
32-bit mask or an all 32-bit mask, using the
comparison specified by imm8, and puts this mask in the corresponding
location in the destination register. The allowed values of imm8 are 0-7,
which correspond to the eight pseudo-ops shown above.
CMPSB , CMPSW , CMPSD : Compare StringsCMPSB ; A6 [8086] CMPSW ; o16 A7 [8086] CMPSD ; o32 A7 [386]
compares the byte at
or
with the byte at or
, and sets the flags accordingly. It then
increments or decrements (depending on the direction flag: increments if
the flag is clear, decrements if it is set)
and (or and
).
The registers used are and
if the address size is 16 bits, and
and if it is 32
bits. If you need to use an address size not equal to the current
setting, you can use an explicit
or prefix.
The segment register used to load from or
can be overridden by using a segment
register name as a prefix (for example,
). The use of
for the load from
or cannot be
overridden.
and work
in the same way, but they compare a word or a doubleword instead of a byte,
and increment or decrement the addressing registers by 2 or 4 instead of 1.
The and
prefixes (equivalently, and
) may be used to repeat the instruction up
to (or - again,
the address size chooses which) times until the first unequal or equal byte
is found.
CMPccSS : SSE Scalar Single-FP CompareCMPSS xmmreg,xmmreg/mem32,imm8; F3 0F C2 /r ib [KATMAI,SSE]
CMPEQSS xmmreg,xmmreg/mem32 ; F3 0F C2 /r 00 [KATMAI,SSE] CMPLESS xmmreg,xmmreg/mem32 ; F3 0F C2 /r 02 [KATMAI,SSE] CMPLTSS xmmreg,xmmreg/mem32 ; F3 0F C2 /r 01 [KATMAI,SSE] CMPNEQSS xmmreg,xmmreg/mem32 ; F3 0F C2 /r 04 [KATMAI,SSE] CMPNLESS xmmreg,xmmreg/mem32 ; F3 0F C2 /r 06 [KATMAI,SSE] CMPNLTSS xmmreg,xmmreg/mem32 ; F3 0F C2 /r 05 [KATMAI,SSE] CMPORDSS xmmreg,xmmreg/mem32 ; F3 0F C2 /r 07 [KATMAI,SSE] CMPUNORDSS xmmreg,xmmreg/mem32; F3 0F C2 /r 03 [KATMAI,SSE]
is the same as
except that it compares only the first pair
of 32-bit floating point numbers.
CMPXCHG , CMPXCHG486 : Compare and ExchangeCMPXCHG r/m8,reg8 ; 0F B0 /r [PENT] CMPXCHG r/m16,reg16 ; o16 0F B1 /r [PENT] CMPXCHG r/m32,reg32 ; o32 0F B1 /r [PENT]
CMPXCHG486 r/m8,reg8 ; 0F A6 /r [486,UNDOC] CMPXCHG486 r/m16,reg16 ; o16 0F A7 /r [486,UNDOC] CMPXCHG486 r/m32,reg32 ; o32 0F A7 /r [486,UNDOC]
These two instructions perform exactly the same operation; however,
apparently some (not all) 486 processors support it under a non-standard
opcode, so NASM provides the undocumented
form to generate the non-standard
opcode.
compares its destination (first)
operand to the value in ,
or (depending on
the size of the instruction). If they are equal, it copies its source
(second) operand into the destination and sets the zero flag. Otherwise, it
clears the zero flag and leaves the destination alone.
is intended to be used for atomic
operations in multitasking or multiprocessor environments. To safely update
a value in shared memory, for example, you might load the value into
, load the updated value into
, and then execute the instruction
. If
has not changed since being loaded, it is
updated with your desired new value, and the zero flag is set to let you
know it has worked. (The prefix prevents
another processor doing anything in the middle of this operation: it
guarantees atomicity.) However, if another processor has modified the value
in between your load and your attempted store, the store does not happen,
and you are notified of the failure by a cleared zero flag, so you can go
round and try again.
CMPXCHG8B : Compare and Exchange Eight BytesCMPXCHG8B mem ; 0F C7 /1 [PENT]
This is a larger and more unwieldy version of
: it compares the 64-bit (eight-byte)
value stored at with the value in
. If they are equal, it sets the zero flag
and stores into the memory area. If they
are unequal, it clears the zero flag and leaves the memory area untouched.
COMISS : SSE Scalar Compare and Set EFLAGSCOMISS xmmreg,xmmreg/mem32 ; 0F 2F /r [KATMAI,SSE]
compares the 32-bit floating-point
numbers in the lowest part of the two operands, and sets the CPU flags
appropriately. differs from
in that it signals an invalid numeric
exeception if an operand is an sNaN or a qNaN, whereas
does so only if an operand is an sNaN.
CPUID : Get CPU Identification CodeCPUID ; 0F A2 [PENT]
returns various information about the
processor it is being executed on. It fills the four registers
, ,
and with
information, which varies depending on the input contents of
.
also acts as a barrier to serialise
instruction execution: executing the
instruction guarantees that all the effects (memory modification, flag
modification, register modification) of previous instructions have been
completed before the next instruction gets fetched.
The information returned is as follows:
EAX is zero on input,
EAX on output holds the maximum acceptable input
value of EAX , and
EBX:EDX:ECX contain the string
"GenuineIntel" (or not, if you have a clone
processor). That is to say, EBX contains
"Genu" (in NASM's own sense of character
constants, described in section
3.4.2), EDX contains
"ineI" and ECX contains
"ntel" .
EAX is one on input,
EAX on output contains version information about
the processor, and EDX contains a set of feature
flags, showing the presence and absence of various features. For example,
bit 8 is set if the CMPXCHG8B instruction
(section A.27) is supported, bit 15 is set if
the conditional move instructions (section A.21
and section A.47) are supported, and bit 23 is
set if MMX instructions are supported.
EAX is two on input,
EAX , EBX ,
ECX and EDX all contain
information about caches and TLBs (Translation Lookahead Buffers).
For more information on the data returned from
, see the documentation on Intel's web site.
CVTPI2PS : SSE Packed Integer to Floating-Point ConversionCVTPI2PS xmmreg,r/m64 ; 0F 2A /r [KATMAI,SSE]
considers the source operand as a
pair of signed 32-bit integers and converts them to 32-bit floating-point
numbers, storing the result in the lower half of the destination register.
CVTPS2PI , CVTTPS2PI : SSE Packed Floating-Point to Integer ConversionCVTPS2PI mmxreg,xmmreg/mem64 ; 0F 2D /r [KATMAI,SSE] CVTTPS2PI mmxreg,xmmreg/mem64 ; 0F 2C /r [KATMAI,SSE]
These instructions consider the source operand as a pair of 32-bit
floating-point numbers and convert them to signed 32-bit integers, storing
the result in the destination register. Note that if the source operand is
a register then only its lower half is used. If the conversion is inexact,
then truncates, whereas
rounds according to the MXCSR.
CVTSI2SS : SSE Scalar Integer to Floating-Point ConversionCVTSI2SS xmmreg,r/m32 ; F3 0F 2A /r [KATMAI,SSE]
considers the source operand as a
32-bit signed integer, and converts it to a 32-bit float, storing the
result in the lowest quarter of the destination register.
CVTSS2SI , CVTTSS2SI : SSE Scalar Floating-Point to Integer ConversionCVTSS2SI reg32,xmmreg/mem32 ; F3 0F 2D /r [KATMAI,SSE] CVTTSS2SI reg32,xmmreg/mem32 ; F3 0F 2C /r [KATMAI,SSE]
These instructions consider the source operand as a 32-bit
floating-point number and convert it to a signed 32-bit integer, storing
the result in the destination register. Note that if the source operand is
a register then only its lowest quarter is used. If the conversion is
inexact, then truncates, whereas
rounds according to the MXCSR.
DAA , DAS : Decimal AdjustmentsDAA ; 27 [8086] DAS ; 2F [8086]
These instructions are used in conjunction with the add and subtract instructions to perform binary-coded decimal arithmetic in packed (one BCD digit per nibble) form. For the unpacked equivalents, see section A.4.
should be used after a one-byte
instruction whose destination was the
register: by means of examining the value in
the and also the auxiliary carry flag
, it determines whether either digit of the
addition has overflowed, and adjusts it (and sets the carry and
auxiliary-carry flags) if so. You can add long BCD strings together by
doing / on the
low two digits, then doing
/ on each
subsequent pair of digits.
works similarly to
, but is for use after
instructions rather than
.
DEC : Decrement IntegerDEC reg16 ; o16 48+r [8086] DEC reg32 ; o32 48+r [386] DEC r/m8 ; FE /1 [8086] DEC r/m16 ; o16 FF /1 [8086] DEC r/m32 ; o32 FF /1 [386]
subtracts 1 from its operand. It does
not affect the carry flag: to affect the carry flag, use
(see
section A.245). See also
(section A.97).
DIV : Unsigned Integer DivideDIV r/m8 ; F6 /6 [8086] DIV r/m16 ; o16 F7 /6 [8086] DIV r/m32 ; o32 F7 /6 [386]
performs unsigned integer division. The
explicit operand provided is the divisor; the dividend and destination
operands are implicit, in the following way:
DIV r/m8 , AX is
divided by the given operand; the quotient is stored in
AL and the remainder in
AH .
DIV r/m16 ,
DX:AX is divided by the given operand; the
quotient is stored in AX and the remainder in
DX .
DIV r/m32 ,
EDX:EAX is divided by the given operand; the
quotient is stored in EAX and the remainder in
EDX .
Signed integer division is performed by the
instruction: see
section A.94.
DIVPS : Packed Single-FP DivideDIVPS xmmreg,r/m128 ; 0F 5E /r [KATMAI,SSE]
considers both operands as vectors of
four 32-bit floating-point numbers and divides each such number in the
destination register by the corresponding number in the source operand.
DIVSS : Scalar Single-FP DivideDIVSS xmmreg,xmmreg/mem32 ; F3 0F 5E /r [KATMAI,SSE]
c{DIVSS} divides the 32-bit floating-point number in the lowest quarter of the destination register by the corresponding number in the source operand.
EMMS : Empty MMX StateEMMS ; 0F 77 [PENT,MMX]
sets the FPU tag word (marking which
floating-point registers are available) to all ones, meaning all registers
are available for the FPU to use. It should be used after executing MMX
instructions and before executing any subsequent floating-point operations.
ENTER : Create Stack FrameENTER imm,imm ; C8 iw ib [186]
constructs a stack frame for a
high-level language procedure call. The first operand (the
in the opcode definition above refers to the
first operand) gives the amount of stack space to allocate for local
variables; the second (the above) gives the
nesting level of the procedure (for languages like Pascal, with nested
procedures).
The function of , with a nesting level of
zero, is equivalent to
PUSH EBP ; or PUSH BP in 16 bits
MOV EBP,ESP ; or MOV BP,SP in 16 bits
SUB ESP,operand1 ; or SUB SP,operand1 in 16 bits
This creates a stack frame with the procedure parameters accessible
upwards from , and local variables accessible
downwards from .
With a nesting level of one, the stack frame created is 4 (or 2) bytes
bigger, and the value of the final frame pointer
is accessible in memory at
.
This allows , when called with a nesting
level of two, to look at the stack frame described by the previous
value of , find the frame pointer at offset -4
from that, and push it along with its new frame pointer, so that when a
level-two procedure is called from within a level-one procedure,
holds the frame pointer of the most
recent level-one procedure call and holds
that of the most recent level-two call. And so on, for nesting levels up to
31.
Stack frames created by can be destroyed
by the instruction: see
section A.113.
F2XM1 : Calculate 2**X-1F2XM1 ; D9 F0 [8086,FPU]
raises 2 to the power of
, subtracts one, and stores the result back
into . The initial contents of
must be a number in the range -1 to +1.
FABS : Floating-Point Absolute ValueFABS ; D9 E1 [8086,FPU]
computes the absolute value of
, storing the result back in
.
FADD , FADDP : Floating-Point AdditionFADD mem32 ; D8 /0 [8086,FPU] FADD mem64 ; DC /0 [8086,FPU]
FADD fpureg ; D8 C0+r [8086,FPU] FADD ST0,fpureg ; D8 C0+r [8086,FPU]
FADD TO fpureg ; DC C0+r [8086,FPU] FADD fpureg,ST0 ; DC C0+r [8086,FPU]
FADDP fpureg ; DE C0+r [8086,FPU] FADDP fpureg,ST0 ; DE C0+r [8086,FPU]
, given one operand, adds the operand to
and stores the result back in
. If the operand has the
modifier, the result is stored in the register
given rather than in .
performs the same function as
, but pops the register stack after
storing the result.
The given two-operand forms are synonyms for the one-operand forms.
FBLD , FBSTP : BCD Floating-Point Load and StoreFBLD mem80 ; DF /4 [8086,FPU] FBSTP mem80 ; DF /6 [8086,FPU]
loads an 80-bit (ten-byte) packed
binary-coded decimal number from the given memory address, converts it to a
real, and pushes it on the register stack.
stores the value of , in packed BCD, at the
given address and then pops the register stack.
FCHS : Floating-Point Change SignFCHS ; D9 E0 [8086,FPU]
negates the number in
: negative numbers become positive, and vice
versa.
FCLEX , FNCLEX : Clear Floating-Point ExceptionsFCLEX ; 9B DB E2 [8086,FPU] FNCLEX ; DB E2 [8086,FPU]
clears any floating-point exceptions
which may be pending. does the same thing
but doesn't wait for previous floating-point operations (including the
handling of pending exceptions) to finish first.
FCMOVcc : Floating-Point Conditional MoveFCMOVB fpureg ; DA C0+r [P6,FPU] FCMOVB ST0,fpureg ; DA C0+r [P6,FPU]
FCMOVBE fpureg ; DA D0+r [P6,FPU] FCMOVBE ST0,fpureg ; DA D0+r [P6,FPU]
FCMOVE fpureg ; DA C8+r [P6,FPU] FCMOVE ST0,fpureg ; DA C8+r [P6,FPU]
FCMOVNB fpureg ; DB C0+r [P6,FPU] FCMOVNB ST0,fpureg ; DB C0+r [P6,FPU]
FCMOVNBE fpureg ; DB D0+r [P6,FPU] FCMOVNBE ST0,fpureg ; DB D0+r [P6,FPU]
FCMOVNE fpureg ; DB C8+r [P6,FPU] FCMOVNE ST0,fpureg ; DB C8+r [P6,FPU]
FCMOVNU fpureg ; DB D8+r [P6,FPU] FCMOVNU ST0,fpureg ; DB D8+r [P6,FPU]
FCMOVU fpureg ; DA D8+r [P6,FPU] FCMOVU ST0,fpureg ; DA D8+r [P6,FPU]
The instructions perform conditional
move operations: each of them moves the contents of the given register into
if its condition is satisfied, and does
nothing if not.
The conditions are not the same as the standard condition codes used
with conditional jump instructions. The conditions
, ,
, ,
and are exactly as
normal, but none of the other standard ones are supported. Instead, the
condition and its counterpart
are provided; the
condition is satisfied if the last two floating-point numbers compared were
unordered, i.e. they were not equal but neither one could be said
to be greater than the other, for example if they were NaNs. (The flag
state which signals this is the setting of the parity flag: so the
condition is notionally equivalent to
, and is
equivalent to .)
The conditions test the main processor's
status flags, not the FPU status flags, so using
directly after
will not work. Instead, you should either
use which writes directly to the main CPU
flags word, or use to extract the FPU
flags.
Although the instructions are flagged
above, they may not be supported by all
Pentium Pro processors; the instruction
(section A.29) will return a bit which
indicates whether conditional moves are supported.
FCOM , FCOMP , FCOMPP , FCOMI , FCOMIP : Floating-Point CompareFCOM mem32 ; D8 /2 [8086,FPU] FCOM mem64 ; DC /2 [8086,FPU] FCOM fpureg ; D8 D0+r [8086,FPU] FCOM ST0,fpureg ; D8 D0+r [8086,FPU]
FCOMP mem32 ; D8 /3 [8086,FPU] FCOMP mem64 ; DC /3 [8086,FPU] FCOMP fpureg ; D8 D8+r [8086,FPU] FCOMP ST0,fpureg ; D8 D8+r [8086,FPU]
FCOMPP ; DE D9 [8086,FPU]
FCOMI fpureg ; DB F0+r [P6,FPU] FCOMI ST0,fpureg ; DB F0+r [P6,FPU]
FCOMIP fpureg ; DF F0+r [P6,FPU] FCOMIP ST0,fpureg ; DF F0+r [P6,FPU]
compares
with the given operand, and sets the FPU flags accordingly.
is treated as the left-hand side of the
comparison, so that the carry flag is set (for a `less-than' result) if
is less than the given operand.
does the same as
, but pops the register stack afterwards.
compares
with and then pops the register stack twice.
and
work like the corresponding forms of and
, but write their results directly to the
CPU flags register rather than the FPU status word, so they can be
immediately followed by conditional jump or conditional move instructions.
The instructions differ from the
instructions
(section A.84) only in the way they handle
quiet NaNs: will handle them silently and
set the condition code flags to an `unordered' result, whereas
will generate an exception.
FCOS : CosineFCOS ; D9 FF [386,FPU]
computes the cosine of
(in radians), and stores the result in
. See also
(section A.76).
FDECSTP : Decrement Floating-Point Stack PointerFDECSTP ; D9 F6 [8086,FPU]
decrements the `top' field in the
floating-point status word. This has the effect of rotating the FPU
register stack by one, as if the contents of
had been pushed on the stack. See also
(section A.61).
FxDISI , FxENI : Disable and Enable Floating-Point InterruptsFDISI ; 9B DB E1 [8086,FPU] FNDISI ; DB E1 [8086,FPU]
FENI ; 9B DB E0 [8086,FPU] FNENI ; DB E0 [8086,FPU]
and
disable and enable floating-point interrupts. These instructions are only
meaningful on original 8087 processors: the 287 and above treat them as
no-operation instructions.
and do
the same thing as and
respectively, but without waiting for the
floating-point processor to finish what it was doing first.
FDIV , FDIVP , FDIVR , FDIVRP : Floating-Point DivisionFDIV mem32 ; D8 /6 [8086,FPU] FDIV mem64 ; DC /6 [8086,FPU]
FDIV fpureg ; D8 F0+r [8086,FPU] FDIV ST0,fpureg ; D8 F0+r [8086,FPU]
FDIV TO fpureg ; DC F8+r [8086,FPU] FDIV fpureg,ST0 ; DC F8+r [8086,FPU]
FDIVR mem32 ; D8 /0 [8086,FPU] FDIVR mem64 ; DC /0 [8086,FPU]
FDIVR fpureg ; D8 F8+r [8086,FPU] FDIVR ST0,fpureg ; D8 F8+r [8086,FPU]
FDIVR TO fpureg ; DC F0+r [8086,FPU] FDIVR fpureg,ST0 ; DC F0+r [8086,FPU]
FDIVP fpureg ; DE F8+r [8086,FPU] FDIVP fpureg,ST0 ; DE F8+r [8086,FPU]
FDIVRP fpureg ; DE F0+r [8086,FPU] FDIVRP fpureg,ST0 ; DE F0+r [8086,FPU]
divides by
the given operand and stores the result back in
, unless the
qualifier is given, in which case it divides the given operand by
and stores the result in the operand.
does the same thing, but does the
division the other way up: so if is not given,
it divides the given operand by and stores
the result in , whereas if
is given it divides
by its operand and stores the result in the
operand.
operates like
, but pops the register stack once it has
finished. operates like
, but pops the register stack once it has
finished.
FEMMS : Fast EMMSFEMMS ; 0F 0E [3DNOW]
is like
except that it is faster and leaves the contents of the MMX /
floating-point registers undefined.
FFREE : Flag Floating-Point Register as UnusedFFREE fpureg ; DD C0+r [8086,FPU]
marks the given register as being empty.
FFREEP : Flag Floating-Point Register as Unused and PopFFREEP fpureg ; DF C0+r [P6,FPU,UNDOC]
marks the given register as being
empty, and then pops .
FIADD : Floating-Point/Integer AdditionFIADD mem16 ; DE /0 [8086,FPU] FIADD mem32 ; DA /0 [8086,FPU]
adds the 16-bit or 32-bit integer stored
in the given memory location to , storing the
result in .
FICOM , FICOMP : Floating-Point/Integer CompareFICOM mem16 ; DE /2 [8086,FPU] FICOM mem32 ; DA /2 [8086,FPU]
FICOMP mem16 ; DE /3 [8086,FPU] FICOMP mem32 ; DA /3 [8086,FPU]
compares
with the 16-bit or 32-bit integer stored in the given memory location, and
sets the FPU flags accordingly. does the
same, but pops the register stack afterwards.
FIDIV , FIDIVR : Floating-Point/Integer DivisionFIDIV mem16 ; DE /6 [8086,FPU] FIDIV mem32 ; DA /6 [8086,FPU]
FIDIVR mem16 ; DE /0 [8086,FPU] FIDIVR mem32 ; DA /0 [8086,FPU]
divides by
the 16-bit or 32-bit integer stored in the given memory location, and
stores the result in .
does the division the other way up: it
divides the integer by , but still stores the
result in .
FILD , FIST , FISTP : Floating-Point/Integer ConversionFILD mem16 ; DF /0 [8086,FPU] FILD mem32 ; DB /0 [8086,FPU] FILD mem64 ; DF /5 [8086,FPU]
FIST mem16 ; DF /2 [8086,FPU] FIST mem32 ; DB /2 [8086,FPU]
FISTP mem16 ; DF /3 [8086,FPU] FISTP mem32 ; DB /3 [8086,FPU] FISTP mem64 ; DF /0 [8086,FPU]
loads an integer out of a memory
location, converts it to a real, and pushes it on the FPU register stack.
converts to an
integer and stores that in memory; does the
same as , but pops the register stack
afterwards.
FIMUL : Floating-Point/Integer MultiplicationFIMUL mem16 ; DE /1 [8086,FPU] FIMUL mem32 ; DA /1 [8086,FPU]
multiplies
by the 16-bit or 32-bit integer stored in the given memory location, and
stores the result in .
FINCSTP : Increment Floating-Point Stack PointerFINCSTP ; D9 F7 [8086,FPU]
increments the `top' field in the
floating-point status word. This has the effect of rotating the FPU
register stack by one, as if the register stack had been popped; however,
unlike the popping of the stack performed by many FPU instructions, it does
not flag the new (previously
) as empty. See also
(section
A.50).
FINIT , FNINIT : Initialise Floating-Point UnitFINIT ; 9B DB E3 [8086,FPU] FNINIT ; DB E3 [8086,FPU]
initialises the FPU to its default
state. It flags all registers as empty, though it does not actually change
their values. does the same, without first
waiting for pending exceptions to clear.
FISUB : Floating-Point/Integer SubtractionFISUB mem16 ; DE /4 [8086,FPU] FISUB mem32 ; DA /4 [8086,FPU]
FISUBR mem16 ; DE /5 [8086,FPU] FISUBR mem32 ; DA /5 [8086,FPU]
subtracts the 16-bit or 32-bit integer
stored in the given memory location from , and
stores the result in .
does the subtraction the other way round,
i.e. it subtracts from the given integer, but
still stores the result in .
FLD : Floating-Point LoadFLD mem32 ; D9 /0 [8086,FPU] FLD mem64 ; DD /0 [8086,FPU] FLD mem80 ; DB /5 [8086,FPU] FLD fpureg ; D9 C0+r [8086,FPU]
loads a floating-point value out of the
given register or memory location, and pushes it on the FPU register stack.
FLDxx : Floating-Point Load ConstantsFLD1 ; D9 E8 [8086,FPU] FLDL2E ; D9 EA [8086,FPU] FLDL2T ; D9 E9 [8086,FPU] FLDLG2 ; D9 EC [8086,FPU] FLDLN2 ; D9 ED [8086,FPU] FLDPI ; D9 EB [8086,FPU] FLDZ ; D9 EE [8086,FPU]
These instructions push specific standard constants on the FPU register
stack. pushes the value 1;
pushes the base-2 logarithm of e;
pushes the base-2 log of 10;
pushes the base-10 log of 2;
pushes the base-e log of 2;
pushes pi; and
pushes zero.
FLDCW : Load Floating-Point Control WordFLDCW mem16 ; D9 /5 [8086,FPU]
loads a 16-bit value out of memory and
stores it into the FPU control word (governing things like the rounding
mode, the precision, and the exception masks). See also
(section A.79).
FLDENV : Load Floating-Point EnvironmentFLDENV mem ; D9 /4 [8086,FPU]
loads the FPU operating environment
(control word, status word, tag word, instruction pointer, data pointer and
last opcode) from memory. The memory area is 14 or 28 bytes long, depending
on the CPU mode at the time. See also
(section A.80).
FMUL , FMULP : Floating-Point MultiplyFMUL mem32 ; D8 /1 [8086,FPU] FMUL mem64 ; DC /1 [8086,FPU]
FMUL fpureg ; D8 C8+r [8086,FPU] FMUL ST0,fpureg ; D8 C8+r [8086,FPU]
FMUL TO fpureg ; DC C8+r [8086,FPU] FMUL fpureg,ST0 ; DC C8+r [8086,FPU]
FMULP fpureg ; DE C8+r [8086,FPU] FMULP fpureg,ST0 ; DE C8+r [8086,FPU]
multiplies
by the given operand, and stores the result in
, unless the
qualifier is used in which case it stores the result in the operand.
performs the same operation as
, and then pops the register stack.
FNOP : Floating-Point No OperationFNOP ; D9 D0 [8086,FPU]
does nothing.
FPATAN , FPTAN : Arctangent and TangentFPATAN ; D9 F3 [8086,FPU] FPTAN ; D9 F2 [8086,FPU]
computes the arctangent, in radians, of
the result of dividing by
, stores the result in
, and pops the register stack. It works like
the C function, in that changing the sign
of both and
changes the output value by pi (so it performs true rectangular-to-polar
coordinate conversion, with being the Y
coordinate and being the X coordinate, not
merely an arctangent).
computes the tangent of the value in
(in radians), and stores the result back into
.
FPREM , FPREM1 : Floating-Point Partial RemainderFPREM ; D9 F8 [8086,FPU] FPREM1 ; D9 F5 [386,FPU]
These instructions both produce the remainder obtained by dividing
by . This is
calculated, notionally, by dividing by
, rounding the result to an integer,
multiplying by again, and computing the value
which would need to be added back on to the result to get back to the
original value in .
The two instructions differ in the way the notional round-to-integer
operation is performed. does it by rounding
towards zero, so that the remainder it returns always has the same sign as
the original value in ;
does it by rounding to the nearest
integer, so that the remainder always has at most half the magnitude of
.
Both instructions calculate partial remainders, meaning that
they may not manage to provide the final result, but might leave
intermediate results in instead. If this
happens, they will set the C2 flag in the FPU status word; therefore, to
calculate a remainder, you should repeatedly execute
or until
C2 becomes clear.
FRNDINT : Floating-Point Round to IntegerFRNDINT ; D9 FC [8086,FPU]
rounds the contents of
to an integer, according to the current
rounding mode set in the FPU control word, and stores the result back in
.
FSAVE , FRSTOR : Save/Restore Floating-Point StateFSAVE mem ; 9B DD /6 [8086,FPU] FNSAVE mem ; DD /6 [8086,FPU]
FRSTOR mem ; DD /4 [8086,FPU]
saves the entire floating-point unit
state, including all the information saved by
(section A.80)
plus the contents of all the registers, to a 94 or 108 byte area of memory
(depending on the CPU mode). restores the
floating-point state from the same area of memory.
does the same as
, without first waiting for pending
floating-point exceptions to clear.
FSCALE : Scale Floating-Point Value by Power of TwoFSCALE ; D9 FD [8086,FPU]
scales a number by a power of two: it
rounds towards zero to obtain an integer,
then multiplies by two to the power of that
integer, and stores the result in .
FSETPM : Set Protected ModeFSETPM ; DB E4 [286,FPU]
This instruction initalises protected mode on the 287 floating-point coprocessor. It is only meaningful on that processor: the 387 and above treat the instruction as a no-operation.
FSIN , FSINCOS : Sine and CosineFSIN ; D9 FE [386,FPU] FSINCOS ; D9 FB [386,FPU]
calculates the sine of
(in radians) and stores the result in
. does the
same, but then pushes the cosine of the same value on the register stack,
so that the sine ends up in and the cosine in
. is faster
than executing and
(see section
A.49) in succession.
FSQRT : Floating-Point Square RootFSQRT ; D9 FA [8086,FPU]
calculates the square root of
and stores the result in
.
FST , FSTP : Floating-Point StoreFST mem32 ; D9 /2 [8086,FPU] FST mem64 ; DD /2 [8086,FPU] FST fpureg ; DD D0+r [8086,FPU]
FSTP mem32 ; D9 /3 [8086,FPU] FSTP mem64 ; DD /3 [8086,FPU] FSTP mem80 ; DB /0 [8086,FPU] FSTP fpureg ; DD D8+r [8086,FPU]
stores the value in
into the given memory location or other FPU
register. does the same, but then pops the
register stack.
FSTCW : Store Floating-Point Control WordFSTCW mem16 ; 9B D9 /0 [8086,FPU] FNSTCW mem16 ; D9 /0 [8086,FPU]
stores the FPU control word (governing
things like the rounding mode, the precision, and the exception masks) into
a 2-byte memory area. See also
(section A.66).
does the same thing as
, without first waiting for pending
floating-point exceptions to clear.
FSTENV : Store Floating-Point EnvironmentFSTENV mem ; 9B D9 /6 [8086,FPU] FNSTENV mem ; D9 /6 [8086,FPU]
stores the FPU operating environment
(control word, status word, tag word, instruction pointer, data pointer and
last opcode) into memory. The memory area is 14 or 28 bytes long, depending
on the CPU mode at the time. See also
(section A.67).
does the same thing as
, without first waiting for pending
floating-point exceptions to clear.
FSTSW : Store Floating-Point Status WordFSTSW mem16 ; 9B DD /0 [8086,FPU] FSTSW AX ; 9B DF E0 [286,FPU]
FNSTSW mem16 ; DD /0 [8086,FPU] FNSTSW AX ; DF E0 [286,FPU]
stores the FPU status word into
or into a 2-byte memory area.
does the same thing as
, without first waiting for pending
floating-point exceptions to clear.
FSUB , FSUBP , FSUBR , FSUBRP : Floating-Point SubtractFSUB mem32 ; D8 /4 [8086,FPU] FSUB mem64 ; DC /4 [8086,FPU]
FSUB fpureg ; D8 E0+r [8086,FPU] FSUB ST0,fpureg ; D8 E0+r [8086,FPU]
FSUB TO fpureg ; DC E8+r [8086,FPU] FSUB fpureg,ST0 ; DC E8+r [8086,FPU]
FSUBR mem32 ; D8 /5 [8086,FPU] FSUBR mem64 ; DC /5 [8086,FPU]
FSUBR fpureg ; D8 E8+r [8086,FPU] FSUBR ST0,fpureg ; D8 E8+r [8086,FPU]
FSUBR TO fpureg ; DC E0+r [8086,FPU] FSUBR fpureg,ST0 ; DC E0+r [8086,FPU]
FSUBP fpureg ; DE E8+r [8086,FPU] FSUBP fpureg,ST0 ; DE E8+r [8086,FPU]
FSUBRP fpureg ; DE E0+r [8086,FPU] FSUBRP fpureg,ST0 ; DE E0+r [8086,FPU]
subtracts the given operand from
and stores the result back in
, unless the
qualifier is given, in which case it subtracts
from the given operand and stores the result
in the operand.
does the same thing, but does the
subtraction the other way up: so if is not
given, it subtracts from the given operand
and stores the result in , whereas if
is given it subtracts its operand from
and stores the result in the operand.
operates like
, but pops the register stack once it has
finished. operates like
, but pops the register stack once it has
finished.
FTST : Test ST0 Against ZeroFTST ; D9 E4 [8086,FPU]
compares
with zero and sets the FPU flags accordingly.
is treated as the left-hand side of the comparison, so that a `less-than'
result is generated if is negative.
FUCOMxx : Floating-Point Unordered CompareFUCOM fpureg ; DD E0+r [386,FPU] FUCOM ST0,fpureg ; DD E0+r [386,FPU]
FUCOMP fpureg ; DD E8+r [386,FPU] FUCOMP ST0,fpureg ; DD E8+r [386,FPU]
FUCOMPP ; DA E9 [386,FPU]
FUCOMI fpureg ; DB E8+r [P6,FPU] FUCOMI ST0,fpureg ; DB E8+r [P6,FPU]
FUCOMIP fpureg ; DF E8+r [P6,FPU] FUCOMIP ST0,fpureg ; DF E8+r [P6,FPU]
compares
with the given operand, and sets the FPU flags accordingly.
is treated as the left-hand side of the
comparison, so that the carry flag is set (for a `less-than' result) if
is less than the given operand.
does the same as
, but pops the register stack afterwards.
compares
with and then pops the register stack twice.
and
work like the corresponding forms of and
, but write their results directly to the
CPU flags register rather than the FPU status word, so they can be
immediately followed by conditional jump or conditional move instructions.
The instructions differ from the
instructions
(section A.48) only in the way they handle
quiet NaNs: will handle them silently and
set the condition code flags to an `unordered' result, whereas
will generate an exception.
FWAIT : Wait for Floating-Point ProcessorFWAIT ; 9B [8086]
is a synonym of
(section
A.262).
FXAM : Examine Class of Value in ST0 FXAM ; D9 E5 [8086,FPU]
sets the FPU flags C3, C2 and C0
depending on the type of value stored in : 000
(respectively) for an unsupported format, 001 for a NaN, 010 for a normal
finite number, 011 for an infinity, 100 for a zero, 101 for an empty
register, and 110 for a denormal. It also sets the C1 flag to the sign of
the number.
FXCH : Floating-Point ExchangeFXCH ; D9 C9 [8086,FPU] FXCH fpureg ; D9 C8+r [8086,FPU] FXCH fpureg,ST0 ; D9 C8+r [8086,FPU] FXCH ST0,fpureg ; D9 C8+r [8086,FPU]
exchanges
with a given FPU register. The no-operand form exchanges
with .
FXRSTOR : Restore FP, MMX and SSE StatesFXRSTOR m512byte ; 0F AE /1 [P6,SSE,FPU]
reloads the FP and MMX state, and the
SSE state (environment and registers), from the memory area defined by
m512byte. This data should have been written by a previous
.
FXSAVE : Store FP and MMX State and Streaming SIMDFXSAVE m512byte ; 0F AE /0 [P6,SSE,FPU]
writes the current FP and MMX state,
and SSE state (environment and registers), to the specified destination
defined by m512byte. It does this without checking for pending unmasked
floating-point exceptions (similar to the operation of
). Unlike the
/
instructions, the processor retains the contents of the FP and MMX state
and Streaming SIMD Extension state in the processor after the state has
been saved. This instruction has been optimized to maximize floating-point
save performance.
FXTRACT : Extract Exponent and SignificandFXTRACT ; D9 F4 [8086,FPU]
separates the number in
into its exponent and significand (mantissa),
stores the exponent back into , and then
pushes the significand on the register stack (so that the significand ends
up in , and the exponent in
).
FYL2X , FYL2XP1 : Compute Y times Log2(X) or Log2(X+1)FYL2X ; D9 F1 [8086,FPU] FYL2XP1 ; D9 F9 [8086,FPU]
multiplies
by the base-2 logarithm of , stores the result
in , and pops the register stack (so that the
result ends up in ).
must be non-zero and positive.
works the same way, but replacing the
base-2 log of with that of
plus one. This time,
must have magnitude no greater than 1 minus
half the square root of two.
HLT : Halt ProcessorHLT ; F4 [8086]
puts the processor into a halted state,
where it will perform no more operations until restarted by an interrupt or
a reset.
IBTS : Insert Bit StringIBTS r/m16,reg16 ; o16 0F A7 /r [386,UNDOC] IBTS r/m32,reg32 ; o32 0F A7 /r [386,UNDOC]
No clear documentation seems to be available for this instruction: the
best I've been able to find reads `Takes a string of bits from the second
operand and puts them in the first operand'. It is present only in early
386 processors, and conflicts with the opcodes for
. NASM supports it only for
completeness. Its counterpart is (see
section A.267).
IDIV : Signed Integer DivideIDIV r/m8 ; F6 /7 [8086] IDIV r/m16 ; o16 F7 /7 [8086] IDIV r/m32 ; o32 F7 /7 [386]
performs signed integer division. The
explicit operand provided is the divisor; the dividend and destination
operands are implicit, in the following way:
IDIV r/m8 , AX
is divided by the given operand; the quotient is stored in
AL and the remainder in
AH .
IDIV r/m16 ,
DX:AX is divided by the given operand; the
quotient is stored in AX and the remainder in
DX .
IDIV r/m32 ,
EDX:EAX is divided by the given operand; the
quotient is stored in EAX and the remainder in
EDX .
Unsigned integer division is performed by the
instruction: see
section A.36.
IMUL : Signed Integer MultiplyIMUL r/m8 ; F6 /5 [8086] IMUL r/m16 ; o16 F7 /5 [8086] IMUL r/m32 ; o32 F7 /5 [386]
IMUL reg16,r/m16 ; o16 0F AF /r [386] IMUL reg32,r/m32 ; o32 0F AF /r [386]
IMUL reg16,imm8 ; o16 6B /r ib [286] IMUL reg16,imm16 ; o16 69 /r iw [286] IMUL reg32,imm8 ; o32 6B /r ib [386] IMUL reg32,imm32 ; o32 69 /r id [386]
IMUL reg16,r/m16,imm8 ; o16 6B /r ib [286] IMUL reg16,r/m16,imm16 ; o16 69 /r iw [286] IMUL reg32,r/m32,imm8 ; o32 6B /r ib [386] IMUL reg32,r/m32,imm32 ; o32 69 /r id [386]
performs signed integer multiplication.
For the single-operand form, the other operand and destination are
implicit, in the following way:
IMUL r/m8 , AL
is multiplied by the given operand; the product is stored in
AX .
IMUL r/m16 , AX
is multiplied by the given operand; the product is stored in
DX:AX .
IMUL r/m32 , EAX
is multiplied by the given operand; the product is stored in
EDX:EAX .
The two-operand form multiplies its two operands and stores the result in the destination (first) operand. The three-operand form multiplies its last two operands and stores the result in the first operand.
The two-operand form is in fact a shorthand for the three-operand form,
as can be seen by examining the opcode descriptions: in the two-operand
form, the code takes both its register and
parts from the same operand (the first one).
In the forms with an 8-bit immediate operand and another longer source
operand, the immediate operand is considered to be signed, and is
sign-extended to the length of the other source operand. In these cases,
the qualifier is necessary to force NASM to
generate this form of the instruction.
Unsigned integer multiplication is performed by the
instruction: see
section A.141.
IN : Input from I/O PortIN AL,imm8 ; E4 ib [8086] IN AX,imm8 ; o16 E5 ib [8086] IN EAX,imm8 ; o32 E5 ib [386] IN AL,DX ; EC [8086] IN AX,DX ; o16 ED [8086] IN EAX,DX ; o32 ED [386]
reads a byte, word or doubleword from the
specified I/O port, and stores it in the given destination register. The
port number may be specified as an immediate value if it is between 0 and
255, and otherwise must be stored in . See also
(section A.148).
INC : Increment IntegerINC reg16 ; o16 40+r [8086] INC reg32 ; o32 40+r [386] INC r/m8 ; FE /0 [8086] INC r/m16 ; o16 FF /0 [8086] INC r/m32 ; o32 FF /0 [386]
adds 1 to its operand. It does
not affect the carry flag: to affect the carry flag, use
(see
section A.6). See also
(section A.35).
INSB , INSW , INSD : Input String from I/O PortINSB ; 6C [186] INSW ; o16 6D [186] INSD ; o32 6D [386]
inputs a byte from the I/O port specified
in and stores it at
or . It
then increments or decrements (depending on the direction flag: increments
if the flag is clear, decrements if it is set)
or .
The register used is if the address size is
16 bits, and if it is 32 bits. If you need to
use an address size not equal to the current
setting, you can use an explicit or
prefix.
Segment override prefixes have no effect for this instruction: the use
of for the load from
or cannot be
overridden.
and work
in the same way, but they input a word or a doubleword instead of a byte,
and increment or decrement the addressing register by 2 or 4 instead of 1.
The prefix may be used to repeat the
instruction (or
- again, the address size chooses which) times.
See also ,
and
(section A.149).
INT : Software InterruptINT imm8 ; CD ib [8086]
causes a software interrupt through a
specified vector number from 0 to 255.
The code generated by the instruction is
always two bytes long: although there are short forms for some
instructions, NASM does not generate them
when it sees the mnemonic. In order to
generate single-byte breakpoint instructions, use the
or
instructions (see section A.100) instead.
INT3 , INT1 , ICEBP , INT01 : BreakpointsINT1 ; F1 [P6] ICEBP ; F1 [P6] INT01 ; F1 [P6]
INT3 ; CC [8086] INT03 ; CC [8086]
and are
short one-byte forms of the instructions
and (see section
A.99). They perform a similar function to their longer counterparts,
but take up less code space. They are used as breakpoints by debuggers.
, and its alternative synonyms
and , is an
instruction used by in-circuit emulators (ICEs). It is present, though not
documented, on some processors down to the 286, but is only documented for
the Pentium Pro. is the instruction normally
used as a breakpoint by debuggers.
, and its synonym
, is not precisely equivalent
to: the short form, since it is designed to
be used as a breakpoint, bypasses the normal IOPL checks in virtual-8086
mode, and also does not go through interrupt redirection.
INTO : Interrupt if OverflowINTO ; CE [8086]
performs an
software interrupt (see
section A.99) if and only if the overflow flag
is set.
INVD : Invalidate Internal CachesINVD ; 0F 08 [486]
invalidates and empties the processor's
internal caches, and causes the processor to instruct external caches to do
the same. It does not write the contents of the caches back to memory
first: any modified data held in the caches will be lost. To write the data
back first, use
(section A.263).
INVLPG : Invalidate TLB EntryINVLPG mem ; 0F 01 /0 [486]
invalidates the translation lookahead
buffer (TLB) entry associated with the supplied memory address.
IRET , IRETW , IRETD : Return from InterruptIRET ; CF [8086] IRETW ; o16 CF [8086] IRETD ; o32 CF [386]
returns from an interrupt (hardware or
software) by means of popping (or
), and the flags
off the stack and then continuing execution from the new
.
pops ,
and the flags as 2 bytes each, taking 6 bytes
off the stack in total. pops
as 4 bytes, pops a further 4 bytes of which
the top two are discarded and the bottom two go into
, and pops the flags as 4 bytes as well, taking
12 bytes off the stack.
is a shorthand for either
or ,
depending on the default setting at the
time.
JCXZ , JECXZ : Jump if CX/ECX ZeroJCXZ imm ; o16 E3 rb [8086] JECXZ imm ; o32 E3 rb [386]
performs a short jump (with maximum range
128 bytes) if and only if the contents of the
register is 0. does the same thing, but
with .
JMP : JumpJMP imm ; E9 rw/rd [8086] JMP SHORT imm ; EB rb [8086] JMP imm:imm16 ; o16 EA iw iw [8086] JMP imm:imm32 ; o32 EA id iw [386] JMP FAR mem ; o16 FF /5 [8086] JMP FAR mem ; o32 FF /5 [386] JMP r/m16 ; o16 FF /4 [8086] JMP r/m32 ; o32 FF /4 [386]
jumps to a given address. The address may
be specified as an absolute segment and offset, or as a relative jump
within the current segment.
has a maximum range of 128
bytes, since the displacement is specified as only 8 bits, but takes up
less code space. NASM does not choose when to generate
for you: you must explicitly code
every time you want a short jump.
You can choose between the two immediate far jump forms
() by the use of the
and
keywords: ) or
.
The forms execute a far jump by
loading the destination address out of memory. The address loaded consists
of 16 or 32 bits of offset (depending on the operand size), and 16 bits of
segment. The operand size may be overridden using
or
.
The forms execute a near jump (within
the same segment), loading the destination address out of memory or out of
a register. The keyword may be specified,
for clarity, in these forms, but is not necessary. Again, operand size can
be overridden using or
.
As a convenience, NASM does not require you to jump to a far symbol by
coding the cumbersome ,
but instead allows the easier synonym
.
The forms given above are near calls;
NASM will accept the keyword (e.g.
), even though it is not
strictly necessary.
Jcc : Conditional BranchJcc imm ; 70+cc rb [8086] Jcc NEAR imm ; 0F 80+cc rw/rd [386]
The conditional jump instructions execute a near (same segment) jump if
and only if their conditions are satisfied. For example,
jumps only if the zero flag is not set.
The ordinary form of the instructions has only a 128-byte range; the
form is a 386 extension to the instruction
set, and can span the full size of a segment. NASM will not override your
choice of jump instruction: if you want ,
you have to use the keyword.
The keyword is allowed on the first form
of the instruction, for clarity, but is not necessary.
LAHF : Load AH from FlagsLAHF ; 9F [8086]
sets the
register according to the contents of the low byte of the flags word. See
also (section
A.225).
LAR : Load Access RightsLAR reg16,r/m16 ; o16 0F 02 /r [286,PRIV] LAR reg32,r/m32 ; o32 0F 02 /r [286,PRIV]
takes the segment selector specified by
its source (second) operand, finds the corresponding segment descriptor in
the GDT or LDT, and loads the access-rights byte of the descriptor into its
destination (first) operand.
LDS , LES , LFS , LGS , LSS : Load Far PointerLDS reg16,mem ; o16 C5 /r [8086] LDS reg32,mem ; o32 C5 /r [8086]
LES reg16,mem ; o16 C4 /r [8086] LES reg32,mem ; o32 C4 /r [8086]
LFS reg16,mem ; o16 0F B4 /r [386] LFS reg32,mem ; o32 0F B4 /r [386]
LGS reg16,mem ; o16 0F B5 /r [386] LGS reg32,mem ; o32 0F B5 /r [386]
LSS reg16,mem ; o16 0F B2 /r [386] LSS reg32,mem ; o32 0F B2 /r [386]
These instructions load an entire far pointer (16 or 32 bits of offset,
plus 16 bits of segment) out of memory in one go.
, for example, loads 16 or 32 bits from the
given memory address into the given register (depending on the size of the
register), then loads the next 16 bits from memory into
. ,
, and
work in the same way but use the other
segment registers.
LDMXCSR : SSE Load MXCSRLDMXCSR mem32 ; 0F AE /2 [KATMAI,SSE]
loads a 32-bit value out of memory and
stores it into the MXCSR (the SSE control/status register).
LEA : Load Effective AddressLEA reg16,mem ; o16 8D /r [8086] LEA reg32,mem ; o32 8D /r [8086]
, despite its syntax, does not access
memory. It calculates the effective address specified by its second operand
as if it were going to load or store data from it, but instead it stores
the calculated address into the register specified by its first operand.
This can be used to perform quite complex calculations (e.g.
) in one instruction.
, despite being a purely arithmetic
instruction which accesses no memory, still requires square brackets around
its second operand, as if it were a memory reference.
LEAVE : Destroy Stack FrameLEAVE ; C9 [186]
destroys a stack frame of the form
created by the instruction (see
section A.40). It is functionally equivalent to
followed by
(or
followed by in 16-bit mode).
LGDT , LIDT , LLDT : Load Descriptor TablesLGDT mem ; 0F 01 /2 [286,PRIV] LIDT mem ; 0F 01 /3 [286,PRIV] LLDT r/m16 ; 0F 00 /2 [286,PRIV]
and both
take a 6-byte memory area as an operand: they load a 32-bit linear address
and a 16-bit size limit from that area (in the opposite order) into the
GDTR (global descriptor table register) or IDTR (interrupt descriptor table
register). These are the only instructions which directly use
linear addresses, rather than segment/offset pairs.
takes a segment selector as an operand.
The processor looks up that selector in the GDT and stores the limit and
base address given there into the LDTR (local descriptor table register).
See also ,
and (section
A.232).
LMSW : Load/Store Machine Status WordLMSW r/m16 ; 0F 01 /6 [286,PRIV]
loads the bottom four bits of the source
operand into the bottom four bits of the
control register (or the Machine Status Word, on 286 processors). See also
(section
A.238).
LOADALL , LOADALL286 : Load Processor StateLOADALL ; 0F 07 [386,UNDOC] LOADALL286 ; 0F 05 [286,UNDOC]
This instruction, in its two different-opcode forms, is apparently supported on most 286 processors, some 386 and possibly some 486. The opcode differs between the 286 and the 386.
The function of the instruction is to load all information relating to
the state of the processor out of a block of memory: on the 286, this block
is located implicitly at absolute address ,
and on the 386 and 486 it is at <