Selected 8086 Instructions: Quick Reference List
Selected 8086 Instructions: Quick Reference List
A complete listing of all x86 instructions along with usage and encoding information
can be found in the NASM Manual (852 KB). However, when using this manual, be
careful to only use instructions compatible with the 8086. The Am186/Am188
Instruction Set Manual (2,242 KB) contains a more detailed description of instruction
behavior for instructions compatible with the 8086. However, these AMD processors
also support the following x86 instructions which are not 8086 compatible: bound,
enter, ins, leave, outs, popa, and pusha.
Terminology Used:
Instructions:
adc Add with carry flag
Syntax: adc dest, src
dest: memory or register
src: memory, register, or immediate
Action: dest = dest + src + CF
Flags Affected: OF, SF, ZF, AF, PF, CF
Notes: This instruction is used to perform 32-bit addition.
dec Decrement by 1
Syntax: dec op
op: register or memory
Action: op = op - 1
Flags Affected: OF, SF, ZF, AF, PF
inc Increment by 1
Syntax: inc op
op: register or memory
Action: op = op + 1
Flags Affected: OF, SF, ZF, AF, PF
All of the ?? suffixes can also be of the form n?? (e.g., jna for
jump if not above). See 8086 documentation for many more ??
conditions.
Note also that rel8 operand greatly limits conditional jump distance
(-127 to +128 bytes from IP). Use the jmp instruction in combination
with j?? to overcome this barrier.
nop No operation
Syntax: nop
Action: None
Flags Affected: None