Instruction Set 8086
Instruction Set 8086
MOV :
This instruction copies a word or a byte of data from some source to a destination.
The destination can be a register or a memory location. The source can be a register, a
memory location, or an immediate number.
MOV AX,BX
MOV AX,5000H
MOV AX,[SI]
MOV AX,[2000H]
MOV AX,50H[BX]
MOV [734AH],BX
MOV DS,CX
MOV CL,[357AH]
Direct loading of the segment registers with immediate data is not permitted.
PUSH : Push to Stack
This instruction pushes the contents of the specified register/memory location on
to the stack. The stack pointer is decremented by 2, after each execution of the
instruction.
E.g. PUSH AX
• PUSH DS
• PUSH [5000H]
3
XLAT :
Translate byte using look-up table
Eg. LEA BX, TABLE1
MOV AL, 04H
XLAT
Simple input and output port transfer Instructions:
IN:
Copy a byte or word from specified port to accumulator.
Eg. IN AL,03H
IN AX,DX
OUT:
Copy a byte or word from accumulator specified port.
Eg. OUT 03H, AL
OUT DX, AX
LEA :
Load effective address of operand in specified register.
[reg] offset portion of address in DS
Eg. LEA reg, offset
LDS:
Load DS register and other specified register from memory.
[reg] [mem]
[DS] [mem + 2]
Eg. LDS reg, mem
LES:
Load ES register and other specified register from memory.
[reg] [mem]
[ES] [mem + 2]
Eg. LES reg, mem
4
SAHF:
Store (copy) AH register to low byte of flag register.
[Flags low byte] [AH]
Eg. SAHF
PUSHF:
Copy flag register to top of stack.
[SP] [SP] – 2
[[SP]] [Flags]
Eg. PUSHF
POPF :
Copy word at top of stack to flag register.
[Flags] [[SP]]
[SP] [SP] + 2
Arithmetic Instructions:
The 8086 provides many arithmetic operations: addition, subtraction, negation,
multiplication and comparing two values.
ADD :
The add instruction adds the contents of the source operand to the destination
operand.
ADD AX, 0100H Eg.
ADD AX, BX ADD
AX, [SI] ADD AX,
[5000H]
ADD [5000H], 0100H
ADD 0100H
5
SUB : Subtract
The subtract instruction subtracts the source operand from the destination operand
and the result is left in the destination operand.
Eg. SUB AX, 0100H
SUB AX, BX SUB
AX, [5000H]
SUB [5000H], 0100H
INC : Increment
This instruction increases the contents of the specified Register or memory location by 1.
Immediate data cannot be operand of this instruction.
Eg. INC AX INC
[BX] INC
[5000H]
DEC : Decrement
The decrement instruction subtracts 1 from the contents of the specified register or
memory location.
Eg. DEC AX DEC
[5000H]
NEG : Negate
The negate instruction forms 2‟s complement of the specified destination in the
instruction. The destination can be a register or a memory location. This instruction can
be implemented by inverting each bit and adding 1 to it.
Eg. NEG AL
AL = 0011 0101 35H Replace number in AL with its 2‟s complement
AL = 1100 1011 = CBH
CMP : Compare
This instruction compares the source operand, which may be a register or an
immediate data or a memory location, with a destination operand that may be a
6
register or a memory location
Eg. CMP BX, 0100H CMP
AX, 0100H
CMP [5000H], 0100H
CMP BX, [SI]
CMP BX, CX
7
AAA : ASCII Adjust After Addition
The AAA instruction is executed aftr an ADD instruction that adds two ASCII coded
operand to give a byte of result in AL. The AAA instruction converts the resulting
contents of Al to a unpacked decimal digits.
Eg. ADD CL, DL ; [CL] = 32H = ASCII for 2
; [DL] = 35H = ASCII for 5
; Result [CL] = 67H
MOV AL, CL ; Move ASCII result into AL since
; AAA adjust only [AL]
AAA ; [AL]=07, unpacked BCD for 7
8
DAS : Decimal Adjust after Subtraction
This instruction converts the result of the subtraction of two packed BCD numbers to
a valid BCD number. The subtraction has to be in AL only.
Eg. AL = 75, BH = 46
SUB AL, BH ; AL 2 F = (AL) - (BH)
; AF = 1
DAS ; AL 2 9 (as F>9, F - 6 = 9)
Logical Instructions
AND : Logical AND
This instruction bit by bit ANDs the source operand that may be an immediate
register or a memory location to the destination operand that may a register or a memory
location. The result is stored in the destination operand.
Eg. AND AX, 0008H
AND AX, BX
OR : Logical OR
This instruction bit by bit ORs the source operand that may be an immediate ,
register or a memory location to the destination operand that may a register or a memory
location. The result is stored in the destination operand.
Eg. OR AX, 0008H
OR AX, BX
9
SAL/SHL : SAL / SHL destination, count.
SAL and SHL are two mnemonics for the same instruction. This instruction shifts
each bit in the specified destination to the left and 0 is stored at LSB position. The MSB
is shifted into the carry flag. The destination can be a byte or a word.
It can be in a register or in a memory location. The number of shifts is indicated
by count.
SAL CX, 1 E
SAL AX, CL g
.
11
Branch Instructions :
Branch Instructions transfers the flow of execution of the program to a new
address specified in the instruction directly or indirectly. When this type of instruction is
executed, the CS and IP registers get loaded with new values of CS and IP corresponding
to the location to be transferred.
There are two types of procedure depending upon whether it is available in the
same segment or in another segment.
i. Near CALL i.e., ±32K displacement.
ii. For CALL i.e., anywhere outside the segment.
On execution this instruction stores the incremented IP & CS onto the stack and
loads the CS & IP registers with segment and offset addresses of the procedure to be
called.
12
INTO: Interrupt on Overflow
This instruction is executed, when the overflow flag OF is set. This is equivalent to a
Type 4 Interrupt instruction.
JZ/JE Label
Transfer execution control to address „Label‟, if ZF=1.
JNZ/JNE Label
Transfer execution control to address „Label‟, if ZF=0
JS Label
Transfer execution control to address „Label‟, if SF=1.
JNS Label
Transfer execution control to address „Label‟, if SF=0.
JO Label
Transfer execution control to address „Label‟, if OF=1.
13
JNO Label
Transfer execution control to address „Label‟, if OF=0.
JNP Label
Transfer execution control to address „Label‟, if PF=0.
JP Label
Transfer execution control to address „Label‟, if PF=1.
JB Label
Transfer execution control to address „Label‟, if CF=1.
JNB Label
Transfer execution control to address „Label‟, if CF=0.
JCXZ Label
Transfer execution control to address „Label‟, if CX=0
14
by one. On the other hand, if it is a word string operation, the index registers are updated
by two.
These are used for CMPS, SCAS instructions only, as instruction prefixes.
15
STOS : Store String Byte or String Word
The STOS instruction Stores the AL / AX register contents to a location in the
string pointer by ES : DI register pair. The DI is modified accordingly, No Flags are
affected by this instruction.
The direction Flag controls the String instruction execution, The source index SI
and Destination Index DI are modified after each iteration automatically. If DF=1, then
the execution follows autodecrement mode, SI and DI are decremented automatically
after each iteration. If DF=0, then the execution follows autoincrement mode. In this
mode, SI and DI are incremented automatically after each iteration.
These instructions control the functioning of the available hardware inside the
processor chip. These instructions are categorized into two types:
16