SlideShare a Scribd company logo
1 of 96
Assembler & Microprocessor Emulator
1
8086 Microprocessor
1. Assembler
2. Emulator
• An Assembler program is used to
translate the assembly language
mnemonics for instructions to the
corresponding binary codes.
• On the first pass through the source
program, the assembler determines the
displacement of named data items, the
offset of labels, etc. and puts this
information in a symbol table.
• On the second pass through the source
program, the assembler produces the
binary code for each instruction and
inserts the offsets, etc., that it
calculated during the first pass.
• One such assembler is
EMU8086- Assembler & Microprocessor
Emulator 4.08
Dheeraj Suri
Assembler & Microprocessor Emulator
2
8086 Microprocessor
1. Assembler
2. Emulator
• Another way to run your program is
through Emulator, such as EMU8086. An
Emulator is a mixture of hardware and
Software.
• Hardware of Emulator is a multiwire
cable which connects the host system to
the system being developed. A plug at
the end of the cable is plugged into the
prototype system in place of its
microprocessor. Through this
connection the software of emulator
allows you to download your object
code program into RAM in the system
being tested and run it.
• Emulator allows you to run programs,
examine and change the contents of
registers, examine and change the
contents of memory locations, and
insert breakpoints in the system.
EMU8086- Assembler & Microprocessor
Emulator 4.08
Dheeraj Suri
Instruction Descriptions
3
8086 Microprocessor
AAA –
ASCII
Adjust for
Addition
Numerical data coming into computer from
a terminal is usually in ASCII code.
In this code, the numbers 0 to 9 are
represented by ASCII codes 30h to 39h.
The 8086 allows you to add the ASCII codes
for two decimal digits without masking off
the “3” in the upper nibble of each.
After the addition, the AAA instruction is
used to make sure the result is correct
unpacked BCD.
Dheeraj Suri
ASCII stands for American Standard Code for Information Interchange.
Computers can only understand numbers, so an ASCII code is the numerical
representation of a character such as 'a' or '@' or an action of some sort.
Instruction Descriptions
4
8086 Microprocessor
AAA –
ASCII
Adjust for
Addition
Example:
Dheeraj Suri
The AAA instruction works only on AL Register. Flags Affected: AF, CF.
; Assume AL = 0011 0101, ASCII
5
; BL = 0011 1001, ASCII 9
ADD AL,BL ; Result: AL = 0110 1110 = 6Eh,
which is incorrect BCD
AAA ; Now AL = 00000100, unpacked
BCD 4.CF = 1 indicates answer is
14 decimal.
OR AL,30h ; Now AL = 0011 0100 = 34h,
The ASCII Code for 4
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
AF CF
Flash Back – what is BCD ?
5
8086 Microprocessor
BCD –
Binary
Coded
Decimal
Binary-coded decimal (BCD) is a class of
binary encodings of decimal numbers where
each decimal digit is represented by a fixed
number of bits, usually four or eight.
As most computers deal with data in 8-bit bytes,
it is possible to use one of the following methods
to encode a BCD number:
Unpacked: each numeral is encoded into one
byte, with four bits representing the numeral
and the remaining bits having no significance.
Packed: two numerals are encoded into a single
byte, with one numeral in the least significant
nibble (bits 0 through 3) and the other numeral
in the most significant nibble (bits 4 through 7).
Dheeraj Suri
Flash Back – what is BCD ?
6
8086 Microprocessor
BCD –
Binary
Coded
Decimal
Example: encoding the decimal number 91D
Using unpacked BCD
Using packed BCD, the same number would fit
into a single byte.
Dheeraj Suri
Decimal 9 1
Binary 0000 1001 0000 0001
Decimal 9 1
Binary 1001 0001
Instruction Descriptions
7
8086 Microprocessor
AAD –
BCD-to-
Binary
Convert
before
Division
AAD converts two unpacked BCD digits in
AH and AL to the equivalent binary number
in AL. The adjustment must be made before
dividing the two unpacked BCD digits in AX
by an unpacked BCD byte. After the
division, AL will contain the unpacked BCD
quotient and AH will contain the unpacked
BCD remainder.
Note: If an attempt is made to divide by 0,
the 8086 will do a type 0 interrupt.
Dheeraj Suri
Flags affected : PF, SF, and ZF are updated.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
SF ZF PF
Instruction Descriptions
8
8086 Microprocessor
AAD –
BCD-to-
Binary
Convert
before
Division
Example:
Dheeraj Suri
Flags affected : PF, SF, and ZF are updated.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
SF ZF PF
;AX = 0607h unpacked BCD for 67
; decimal CH = 09h , now adjust to
; binary
AAD ; Result: AX = 0043 = 43h = 67 D
DIV CH ; Divide AX by unpacked BCD in CH
; Quotient : AL = 07 unpacked BCD
;Remainder: AH = 04 unpacked BCD
; Flags undefined after DIV
Instruction Descriptions
9
8086 Microprocessor
AAM –
BCD
Adjust
after
Multiply
Before you can multiply two ASCII digits,
you must first mask the upper 4 bits of
each. This leaves unpacked BCD (one BCD
digit per byte) in each byte. After two
unpacked BCD digits are multiplied, the
AAM instruction is used to adjust the
product of two unpacked BCD digits in AX.
AAM instruction works only after the
multiplication of two un-packed BCD bytes,
and it works only on an operand in AL.
Dheeraj Suri
Flags affected : PF, SF, and ZF are updated. But AF, CF, and OF are left undefined.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
SF ZF PF
Instruction Descriptions
10
8086 Microprocessor
AAM –
BCD
Adjust
after
Multiply
Dheeraj Suri
Flags affected : PF, SF, and ZF are updated. But AF, CF, and OF are left undefined.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
SF ZF PF
; AL = 00000101 = unpacked BCD 5
; BH = 00001001 = unpacked BCD 9
MUL BH ; AL X BH ; result in AX
; AX = 00000000 00101101 = 002D h
AAM ; AX = 00000100 00000101 = 0405 h
; which is an unpacked BCD for 45.
; if ASCII codes for the result are
desired,
; the next instruction ought to be used.
OR AX,
3030H
; Put 3 in upper nibble of each byte.
; AX = 00110100 00110101 = 3435 h
; which is ASCII code for 45.
Instruction Descriptions
11
8086 Microprocessor
AAS –
ASCII
Adjust for
Subtracti
on
Numerical data coming into a computer
from a terminal is usually in ASCII code. In
this code the numbers 0 to 9 are
represented by the ASCII codes 30H to 39H.
The 8086 allows you to subtract the ASCII
codes for two decimal digits without
masking the “3” in the upper nibble of each.
The AAS instruction is then used to make
sure the result is the correct unpacked BCD.
Dheeraj Suri
Flags affected : AF and CF are updated, but OF, PF, SF and ZF are left undefined.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
AF CF
Instruction Descriptions
12
8086 Microprocessor
AAS –
ASCII
Adjust for
Subtracti
on
Dheeraj Suri
Flags affected : AF and CF are updated, but OF, PF, SF and ZF are left undefined.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
AF CF
; ASCII 9 – ASCII 5 (9 – 5)
; AL = 00111001 = 39 H = ASCII 9
; BL = 00110101 = 35 H = ASCII 5
SUB
AL,BL
; Result: AL = 00000100 = BCD 04,
CF = 0
AAS ; Result; AL = 00000100 = BCD 04
; and CF = 0; no borrow required
; ASCII 5 – ASCII 9 (5 – 9)
; Assume AL = 00110101 = 35h =
; ASCII 5 and BL = 00111001 = 39h
= ASCII 9
Instruction Descriptions
13
8086 Microprocessor
AAS –
ASCII
Adjust for
Subtracti
on
Dheeraj Suri
Flags affected : AF and CF are updated, but OF, PF, SF and ZF are left undefined.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
AF CF
SUB AL, BL ; Result: AL = 11111100 = -4
; in 2’s complement and CF = 1
AAS ; Result: AL = 00000100 =BCD04
; and CF = 1; borrow needed
The AAS instruction leaves the correct
unpacked BCD result in the low nibble of AL
and resets the upper nibble of AL to all 0’s. If
one wants to send the result back to a CRT
terminal, one can OR AL with 30H to produce
the correct ASCII code for the result. The
AAS instruction works only on the AL
register.
Instruction Descriptions
14
8086 Microprocessor
ADC –
Add with
Carry;
ADD –
Add
These instructions add a number from some
source to a number from some destination
and put the result in specified destination.
The Add with Carry instruction, ADC, also
adds the status of the carry flag into the
result. The source may be an immediate
number, a register, or a memory location
specified by any one of the 24 addressing
modes. The destination may be a register or
a memory location specified by any one of
the 24 addressing modes. The source and
the destination in an instruction cannot
both be memory locations and they must be
of same type.
Dheeraj Suri
Flags affected : AF, CF, OF , PF , SF, ZF
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
OF SF ZF AF PF CF
Instruction Descriptions
15
8086 Microprocessor
ADC –
Add with
Carry;
ADD –
Add
If one wants to add a byte to a word, one
must copy the byte to a word location and
fill the upper byte of the word with 0’s
before adding.
Examples(CODING):
Dheeraj Suri
Flags affected : AF, CF, OF , PF , SF, ZF
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
OF SF ZF AF PF CF
ADD AL, 74H ; Add immediate number 74H
; to contents of AL. Result in
; AL
ADC CL, BL ; Add contents of BL plus
carry
; status to contents of CL
ADD DX, BX ; Add contents of BX to
contents
; of DX
Instruction Descriptions
16
8086 Microprocessor
ADC –
Add with
Carry;
ADD –
Add
Examples(CODING)(continued):
Dheeraj Suri
Flags affected : AF, CF, OF , PF , SF, ZF
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
OF SF ZF AF PF CF
ADD DX, [SI] ; Add word from memory at
offset [SI] in DS to contents
of DX
ADC AL,
PRICES[BX]
;ADD byte from effective
address ;PRICES[BX] plus
carry status to ;contents of
AL
ADD
PRICES[BX],AL
;Add contents of AL to
contents
; of memory location at
effective
; address PRICES[BX]
Instruction Descriptions
17
8086 Microprocessor
ADC –
Add with
Carry;
ADD –
Add
Examples(NUMERICAL):
Dheeraj Suri
Flags affected : AF, CF, OF , PF , SF, ZF
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
OF SF ZF AF PF CF
; Addition of unsigned
; numbers CL = 01110011 =
; 115D + BL=01001111 =
; 79D Result in CL
ADD CL, BL ; CL = 11000010 = 194D
; Addition of signed numbers
; CL = 01110011 = + 115 D
; +BL = 01001111 = + 79D
; Result in CL
ADD CL, BL ; CL = 11000010 = -62D –
incorrect because the result
is too large to fit in 7 bits.
Instruction Descriptions
18
8086 Microprocessor
ADC –
Add with
Carry;
ADD –
Add
Flag results for signed addition, Example:
Dheeraj Suri
Flags affected : AF, CF, OF , PF , SF, ZF
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
OF SF ZF AF PF CF
CF = 0 No Carry out of bit 7.
PF = 0 Result has odd parity.
AF = 1 Carry was produced out of bit 3.
ZF = 0 Result in destination was not 0.
SF = 1 Copies most significant bit of result;
indicates negative result if you are
adding signed numbers
OF = 1 Set to indicate that the result of
addition was too large to fit in the
lower 7 bits of the destination used to
represent the magnitude of a signed
number. In other words, the result
was greater than +127D, so the result
overflowed into the sign bit position
and -
Instruction Descriptions
19
8086 Microprocessor
ADC –
Add with
Carry;
ADD –
Add
Flag results for signed addition, Example:
Dheeraj Suri
Flags affected : AF, CF, OF , PF , SF, ZF
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
OF SF ZF AF PF CF
OF = 1 Incorrectly indicated that the result
was negative. If you are adding two
signed 16-bit values, the OF will be
set if the magnitude of the result is
too large to fit in the lower 15 bits of
the destination.
NOTE: PF is meaningful only for an 8-bit result.
AF is set only by a carry out of bit 3. Therefore,
the DAA instruction cannot be used after word
additions to convert the result to correct BCD.
Instruction Descriptions
20
8086 Microprocessor
AND –
AND
correspon
ding Bits
of Two
operands
- AND
Destinati
on,
Source
This instruction ANDs each bit in a source
byte or word with the same number bit in a
destination byte or word. The result is put
in the specified destination. The contents of
the specified source will not be changed.
The result for each bit position will follow
the truth table for a two-input AND gate. In
other words, a bit in the specified
destination will be a 1 only if that bit is a 1
in both the source and the destination
operands. Therefore, a bit can be
masked(reset) by ANDing it with 0.
Dheeraj Suri
Flags affected : PF, SF, and ZF are updated by AND. But CF and OF are both 0. AF is
undefined.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
0 SF ZF PF 0
Instruction Descriptions
21
8086 Microprocessor
AND –
AND
correspon
ding Bits
of Two
operands
- AND
Destinati
on,
Source
The source operand can be an immediate
number, the contents of a register, or the
contents of a memory location specified by
one of the 24 addressing modes. The
destination can be a register or a memory
location. The source and the destination
cannot both be memory locations in the
same instruction. CF and OF are both 0 after
AND. PF, SF, and ZF are updated by AND. AF
is undefined. Note that PF has meaning only
for an 8-bit operand.
Dheeraj Suri
Flags affected : PF, SF, and ZF are updated by AND. But CF and OF are both 0. AF is
undefined.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
0 SF ZF PF 0
Instruction Descriptions
22
8086 Microprocessor
AND –
AND
correspon
ding Bits
of Two
operands
- AND
Destinati
on,
Source
EXAMPLES(CODING):
Dheeraj Suri
Flags affected : PF, SF, and ZF are updated by AND. But CF and OF are both 0. AF is
undefined.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
0 SF ZF PF 0
; AND word in DS at offset[SI]
; with word in CX register
AND
CX,[SI]
; Result in CX Register
AND BH, CL ; AND byte in CL with byte in BH
; Result in BH
; AND words in BX with
immediate
AND BX,
00FFH
; 00FFH. Masks upper byte,
leaves lower byte unchanged.
Instruction Descriptions
23
8086 Microprocessor
AND –
AND
correspon
ding Bits
of Two
operands
- AND
Destinati
on,
Source
EXAMPLES(NUMERICAL):
Dheeraj Suri
Flags affected : PF, SF, and ZF are updated by AND. But CF and OF are both 0. AF is
undefined.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
0 SF ZF PF 0
; BX = 10110011 01011110
AND BX,
00FFH
; Mask out upper 8 bits of BX
; Result: BX = 00000000
01011110
; CF, OF, PF, SF, ZF = 0
Instruction Descriptions
24
8086 Microprocessor
CALL –
Call a
procedure
.
The CALL instruction is used to transfer
execution to a sub-program or procedure.
There are two basic types of calls, near and
far. A near call is a call to a procedure
which is in the same code segment as the
CALL instruction. When the 8086 executes a
near CALL instruction, it decrements the
stack pointer by 2 and copies the offset of
the next instruction after the CALL onto the
stack. This offset saved on the stack is
referred to as return address, because this
is the address that execution will return to
after the procedure executes. A near CALL
instruction will also load the instruction
pointer with the offset of the first
instruction in the procedure. A RET
instruction at the end of the procedure -
Dheeraj Suri
CALL – Call a procedure
25
8086 Microprocessor
-- Will return execution of the instruction after the call by
copying the offset saved on the stack back to IP.
A far call is a call to a procedure which is in different
segment from the one that contains the CALL instruction.
When the 8086 executes a far call, it decrements the
stack pointer by 2 and copies the contents of the CS
register to the stack. It then decrements the stack pointer
by 2 again and copies the offset of the instruction after
the CALL instruction to the stack. Finally it loads CS with
the segment base of the segment which contains the
procedure, and loads IP with the offset of the first
instruction of the procedure in that segment. A RET
instruction at the end of the procedure will return
execution to the next instruction after the CALL by
resorting the saved values of CS and IP from the stack.
Dheeraj Suri
CALL – Call a procedure
26
8086 Microprocessor
Examples:
Dheeraj Suri
CALL MULTO ; A direct within-segment (near or intra-
;segment) call. MULTO is the name of the
;procedure. The assembler determines the
;displacement of MULTO from the instruction
;after the CALL and codes this displacement in
;as part of the instruction.
Call BX ; An indirect within-segment near or intra-
segment
; call. BX contains the offset of the first
instruction
; of the procedure. Replaces the contents of IP
with contents of register BX.
CALL WORD
PTR (BX)
; An indirect within-segment near or Intra-
;segment call. Offset of first instruction of
;procedure is in two memory addresses in DS.
;Replaces contents IP with contents of word
;memory location in DS pointed to by BX.
CALL – Call a procedure
27
8086 Microprocessor
Examples(continued):
Dheeraj Suri
CALL SMART-
DIVIDE
;A direct call to another segment – far or
;intersegment call. SMART-DIVIDE is the name
;of the procedure. The procedure must be
;declared far with SMART_DIVIDE PROC FAR
;at its start. The Assembler will determine the
;code segment base for the segment which
;contains the procedure and the offset of the
;start of the procedure. It will put these values
;in as part of the instruction code.
CALL
DWORD
PTR[BX]
; An indirect call to another segment – far or
;intersegment call. New Values for CS and IP
;are fetched from four memory locations in DS.
;The new value for CS is fetched from [BX] and
;[BX+1]; the new IP is fetched from [BX+2]
;and [BX+3].
Instruction Descriptions
28
8086 Microprocessor
CBW-
Convert
Signed
Byte to
Signed
Word
This instruction copies the sign of a byte in
AL to all the bits in AH. AH is then said to be
the sign extension of AL. The CBW operation
must be done before a signed byte in AL can
be divided by another signed byte with the
IDIV instruction. CBW affects no flags
Dheeraj Suri
Flags affected : No Flags are affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
Instruction Descriptions
29
8086 Microprocessor
CBW-
Convert
Signed
Byte to
Signed
Word
Example:
More examples are illustrated in the IDIV
instruction in the future slides.
Dheeraj Suri
Flags affected : No Flags are affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
;AX = 00000000 10011011 = -155 D
CBW ;Convert signed byte in AL to signed
; word in AX
;Result: AX = 11111111 10011011 =
; -155 D
Instruction Descriptions
30
8086 Microprocessor
CLC –
Clear the
Carry
Flag (CF)
This instruction resets the carry flag to 0.
No other flags are affected.
Example:
CLC
Dheeraj Suri
Flags affected : CF. No other Flags are Affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
CF
Instruction Descriptions
31
8086 Microprocessor
CLD –
Clear
Direction
Flag
This instruction resets the direction flag to
0. No other flags are affected. If the
direction flag is reset, SI and DI will
automatically be incremented when one of
the string instructions, such as MOVS,
CMPS, or SCAS, executes.
Example:
Dheeraj Suri
Flags affected : DF. No other Flags are Affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
DF
CLD ;Clear direction flag so that string
; pointers auto-increment after
; each string operation
Instruction Descriptions
32
8086 Microprocessor
CLI –
Clear
Interrupt
Flag
This instruction resets the interrupt flag to
0. No other flags are affected. If the
interrupt flag is reset, the 8086 will not
respond to an interrupt signal on its INTR
input. The CLI instruction, however, has no
effect on the non-maskable interrupt input,
NMI.
Dheeraj Suri
Flags affected : IF. No other Flags are Affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
IF
Instruction Descriptions
33
8086 Microprocessor
CMC –
Complem
ent the
Carry
Flag
If the Carry flag (CF) is a 0 before this
instruction, it will be set to a 1 after the
instruction. If the carry flag is 1 before this
instruction, it will be reset to 0 after the
instruction executes. Obviously CMC affects
only the Carry Flag.
Example:
CMC ; Invert the carry flag.
Dheeraj Suri
Flags affected : CF. No other Flags are Affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
CF
Instruction Descriptions
34
8086 Microprocessor
CMP –
Compare
Byte or
Word –
CMP
Destinati
on,
Source
Compares a byte/word from the specified source
with a byte/word from the specified destination.
The source can be a an immediate number, a
register, or a memory location. The destination
can be a register or a memory location. The
source and destination cannot both be memory
locations in the same instruction. The
comparison is actually done by subtracting the
source byte or word from the destination byte or
word. The source and the destination are not
changed, but the flags are set to indicate the
results of comparison. AF, OF,SF, ZF, PF, and CF
are updated by the CMP instruction.
Dheeraj Suri
Flags affected : AF, OF, SF, ZF, PF and CF are updated. Rest flags are unaffected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
OF SF ZF AF PF CF
Instruction Descriptions
35
8086 Microprocessor
CMP –
Compare
Byte or
Word –
CMP
Destinati
on,
Source
For the instruction CMP CX, BX ; CF, ZF, and SF
will be left as follows:
Dheeraj Suri
Flags affected : AF, OF, SF, ZF, PF and CF are updated. Rest flags are unaffected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
OF SF ZF AF PF CF
CF ZF SF
CX =
BX
0 1 0 ; Result of
subtraction
; is 0
CX >
BX
0 0 0 ;No borrow required,
so
; CF = 0
CX <
BX
1 0 1 ; Subtraction
; required
; borrow, so CF = 1
Instruction Descriptions
36
8086 Microprocessor
CMP –
Compare
Byte or
Word –
CMP
Destinati
on,
Source
Example:
Dheeraj Suri
Flags affected : AF, OF, SF, ZF, PF and CF are updated. Rest flags are unaffected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
OF SF ZF AF PF CF
CMP
AL,01H
; Compare immediate number
; 01H with byte in AL
CMP BH,
CL
; Compare byte in CL with byte
in
; BH
CMP CX,
TEMP_MIN
; Compare word in DS at
; displacement TEMP_MIN with
word
; in CX
CMP
TEMP_MAX
, CX
;Compare CS with word in DS at
; displacement TEMP_MAX
Instruction Descriptions
37
8086 Microprocessor
CMP –
Compare
Byte or
Word –
CMP
Destinati
on,
Source
Example:
Note: The Compare instructions are often used
with the conditional Jump instruction. For
Example:
Dheeraj Suri
Flags affected : AF, OF, SF, ZF, PF and CF are updated. Rest flags are unaffected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
OF SF ZF AF PF CF
CMP
PRICES[BX],
49H
; Compare immediate 49H
; with byte at offset [BX] in
; array PRICES
CMP BX, CX
JAE TARGET ; Jump to target if BX is above
or
; equal to CX
Instruction Descriptions
38
8086 Microprocessor
CMPS/CM
PSB/CMP
SW –
Compare
String
Bytes or
String
Words
The CMPS instruction can be used to
compare a byte/word in one string with a
byte/word in another string. SI is used to
hold the offset of a byte or word in the
source string, and DI is used to hold the
offset of a byte or word in the other string.
The comparison is done by subtracting the
byte or word pointed to by DI from the byte
or word pointed to by SI. The AF, CF, OF, PF,
SF and ZF flags are affected by the
comparison, but neither operand is affected.
---- contd.
Dheeraj Suri
Flags affected : AF,CF,OF,PF,SF and ZF are updated.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
OF SF ZF AF PF CF
Instruction Descriptions
39
8086 Microprocessor
CMPS/CM
PSB/CMP
SW –
Compare
String
Bytes or
String
Words
After the comparison, SI and DI will
automatically be incremented or decremented to
point to the next elements in the two strings. If
the direction flag has previously been set to a 1
with an STD instruction, then SI and DI will
automatically be decremented by 1 for a byte
string or by 2 for word string. If the direction
flag has been previously set to 0 with a CLD
instruction, SI and DI will automatically be
incremented after the compare. They will be
incremented by 1 for byte strings and by 2 for
word strings. The string pointed to by DI must
be in the extra segment, the string pointed to by
SI must be in the data segment.
Dheeraj Suri
Flags affected : AF,CF,OF,PF,SF and ZF are updated.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
OF SF ZF AF PF CF
Instruction Descriptions
40
8086 Microprocessor
CMPS/CM
PSB/CMP
SW –
Compare
String
Bytes or
String
Words
The CMPS instruction can be used with a REPE,
or REPNE prefix to compare all the elements of a
string. Example:
Dheeraj Suri
Flags affected : AF,CF,OF,PF,SF and ZF are updated.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
OF SF ZF AF PF CF
MOV SI, OFFSET
FIRST_STRING
; Point SI at the
; source string
MOV DI, OFFSET
SECOND_STRING
; Point DI at destination
; string
CLD ; DF cleared, so SI & DI
; would auto increment
; after compare
MOV CX,100 ; Put number of string
; elements in CX
REPE CMPSB ; Repeat the comparison of
; string bytes until end of
; string or until compared
; bytes are not equal
Instruction Descriptions
41
8086 Microprocessor
CMPS/CM
PSB/CMP
SW –
Compare
String
Bytes or
String
Words
-- NOTE:
CX functions as a counter which the REPE prefix
will cause to be decremented after each
compare. The B attached to the CMPS tells the
assembler that the strings are of type byte. If
you want to tell the assembler that strings are of
type word, write the instruction as CMPSW. The
REPE CMPSW instruction will cause the pointers
in SI and DI to be incremented by 2 after each
compare if the direction flag is cleared or
decremented by 2 if the direction flag is set.
Dheeraj Suri
Flags affected : AF,CF,OF,PF,SF and ZF are updated.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
OF SF ZF AF PF CF
Instruction Descriptions
42
8086 Microprocessor
CWD –
Convert
Signed
Word to
signed
double
word
CWD copies the sign bit of a word in AX to
all the bits of the DX register. In other
words, it extends the sign of AX into all of
DX. The CWD operation must be done
before a signed word in AX can be divided
by another signed word with the IDIV
instruction. CWD affects no flags.
Example: --- contd.
Dheeraj Suri
Flags affected : No Flags are Affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
Instruction Descriptions
43
8086 Microprocessor
CWD –
Convert
Signed
Word to
signed
double
word
Example:
Dheeraj Suri
Flags affected : No Flags are Affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
; DX = 00000000 00000000
; AX= 11110000 11000111
; = -3897 decimal
CWD ; Convert signed word in AX to
; signed double word in DX:AX
; Result: DX = 11111111
11111111
; AX = 11110000 11000111
; = -3897 decimal
Instruction Descriptions
44
8086 Microprocessor
DAA –
Decimal
Adjust AL
after BCD
Addition
This instruction is used to make sure the
result of adding two packed BCD numbers is
adjusted to be a legal BCD number. The
result of addition must be in AL for DAA to
work correctly. If the lower nibble in AL
after addition is greater than 9 or AF was
set by the addition, then the DAA
instruction will add 6 to the lower nibble in
AL. If the result in the upper nibble is now
greater than 9 or if the carry flag was set by
the addition or correction, then the DAA
instruction will add 60H to AL
Dheeraj Suri
Flags affected : DAA instruction updates AF, CF, PF, and ZF. OF is undefined after
the DAA instruction.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
XX ZF AF PF CF
Instruction Descriptions
45
8086 Microprocessor
DAA –
Decimal
Adjust AL
after BCD
Addition
Examples:
Dheeraj Suri
Flags affected : DAA instruction updates AF, CF, PF, and ZF. OF is undefined after
the DAA instruction.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
XX ZF AF PF CF
; AL = 0101 1001 = 59 BCD
; BL = 0011 0101 = 35 BCD
ADD AL,BL ;AL = 1000 1110 = 8EH
DAA ; Add 0110 because 1110 > 9
;AL = 1001 0100 = 94 BCD
;AL= 1000 1000 = 88 BCD
;BL = 0100 1001 =49 BCD
ADD AL,BL ;AL = 1101 0001, AF = 1
DAA ;Add 0110 because AF = 1
;AL = 1101 0111 = D7h
Instruction Descriptions
46
8086 Microprocessor
DAA –
Decimal
Adjust AL
after BCD
Addition
Examples: (continued).
A decimal up-counter can be implement
using the DAA instruction, the code shown
in next slide.
Dheeraj Suri
Flags affected : DAA instruction updates AF, CF, PF, and ZF. OF is undefined after
the DAA instruction.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
XX ZF AF PF CF
; 1101 > 9 so add 0110 0000
; AL = 0011 0111 = 37 BCD, CF = 1
Instruction Descriptions
47
8086 Microprocessor
DAA –
Decimal
Adjust AL
after BCD
Addition
Examples: (continued).
Dheeraj Suri
Flags affected : DAA instruction updates AF, CF, PF, and ZF. OF is undefined after
the DAA instruction.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
XX ZF AF PF CF
MOV
COUNT,00h
;Initialize count in memory
; location to 0
; Other instruction here
MOV AL,
COUNT
;Bring count into AL to work on
ADD AL,01h ; Can also count up by 2, by 3. or
; by some other number using the
; ADD instruction
DAA ;Decimal adjust the result
MOV
COUNT,AL
;Put decimal result back in
; memory
Instruction Descriptions
48
8086 Microprocessor
DAS –
Decimal
Adjust
after BCD
Subtracti
on
This instruction is used after subtracting
two packed BCD numbers to make sure the
result is correct packed BCD. The result of
subtraction must be in AL for DAS to work
correctly. If the lower nibble in AL after
subtraction is greater than 9 or the AF was
set by the subtraction, then DAS would
subtract 6 from the lower nibble of AL.
If the result in the upper nibble is now
greater than 9 or if the carry flag was set,
the DAS instruction will subtract 60 from
AL. Examples in the next slide.
Dheeraj Suri
Flags affected : DAS instruction updates AF, CF, SF, PF, and ZF. OF is undefined
after the DAS instruction.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
XX SF ZF AF PF CF
Instruction Descriptions
49
8086 Microprocessor
DAS –
Decimal
Adjust
after BCD
Subtracti
on
Examples:
Dheeraj Suri
Flags affected : DAS instruction updates AF, CF, SF, PF, and ZF. OF is undefined
after the DAS instruction.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
XX SF ZF AF PF CF
;AL = 1000 0110 = 86 BCD
;BH = 0101 0111 = 57 BCD
SUB AL, BH ; AL = 0010 1111 = 2Fh , CF = 0
DAS ; Lower nibble of the result is 1111
; so DAS automatically subtracts
; 0000 0110 to give AL = 00101001
; = 29BCD
; AL = 0100 1001 = 49 BCD
; BH = 0111 0010 = 72 BCD
SUB AL,BH ; AL = 11010111 = D7h, CF = 1
Instruction Descriptions
50
8086 Microprocessor
DAS –
Decimal
Adjust
after BCD
Subtracti
on
Examples:
A decimal down counter can be implemented
using a DAS instruction, as shown in the next
slide.
Dheeraj Suri
Flags affected : DAS instruction updates AF, CF, SF, PF, and ZF. OF is undefined
after the DAS instruction.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
XX SF ZF AF PF CF
DAS ; Subtracts 0110 0000 (-60h)
; because 1101 in the upper nibble
; > 9
; AL = 0111 0111 = 77 BCD , CF = 1
; CF = 1 means borrow was needed
Instruction Descriptions
51
8086 Microprocessor
DAS –
Decimal
Adjust
after BCD
Subtracti
on
Examples:
Dheeraj Suri
Flags affected : DAS instruction updates AF, CF, SF, PF, and ZF. OF is undefined
after the DAS instruction.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
XX SF ZF AF PF CF
MOV AL,
COUNT
; Bring count into AL to work on
SUB AL, 01h ;Decrement. Can also count down
;by 2,3 etc., using SUB instruction
DAS ;Keep results in BCD format
MOV COUNT,
AL
; Put new count back in memory
Instruction Descriptions
52
8086 Microprocessor
DEC –
Decrement
Destination
Register or
Memory –
DEC
Destination
This instruction subtracts 1 from the
destination word or byte. The destination
can be a register or a memory location
specified by any one of the 24 memory
addressing modes. This instruction does not
affect the CF. That means if an 8-bit
destination containing 00h or a 16-bit
destination containing 0000h is
decremented, the result will be FFh or
FFFFh with no carry (borrow).
Dheeraj Suri
Flags affected : AF, OF, PF, SF, and ZF are updated, but CF is not affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
OF SF ZF AF PF
Instruction Descriptions
53
8086 Microprocessor
DEC –
Decrement
Destination
Register or
Memory –
DEC
Destination
Examples:
Dheeraj Suri
Flags affected : AF, OF, PF, SF, and ZF are updated, but CF is not affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
OF SF ZF AF PF
DEC CL ; Subtract 1 from contents of
; CL register
DEC BP ; Subtract 1 from contents of BP
; register
DEC BYTE
PTR[BX]
; Subtract 1 from byte at offset
[BX] in DS. The BYTE PTR directive
is necessary to tell the
; assembler to put in the correct
; code for decrementing a byte in
; memory, rather than
; decrementing a word. The
; instruction essentially says,
; “Decrement the byte in memory
; pointed to by the offset in BX”
Instruction Descriptions
54
8086 Microprocessor
DEC –
Decrement
Destination
Register or
Memory –
DEC
Destination
Examples(continued):
Dheeraj Suri
Flags affected : AF, OF, PF, SF, and ZF are updated, but CF is not affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
OF SF ZF AF PF
DEC WORD
PTR[BP]
;Subtract 1 from a word at offset
; [BP] in SS. The WORD PTR
; directive tells the assembler to
; put in the code for decrementing
; a word pointed to by the
; contents of BP. An offset in BP
; will be added to the SS register
; contents to produce the physical
; address
DEC
TOMATO_CAN
_COUNT
;Subtract 1 from byte or word
; named TOMATO_CAN_COUNT in
DS.
Instruction Descriptions
55
8086 Microprocessor
DIV –
Unsigned
Divide –
DIV source
This instruction is used to divide an unsigned word by
a byte or to divide an unsigned doubleword (32 bits)
by a word.
When a word is divided by a byte, the word must be in
the AX register. The divisor can be a register or in a
memory location. After the division, AL will contain an
8-bit result (quotient), and AH will contain a 8-bit
remainder.
When a double-word is divided by a word, the
MSW(Most significant Word) of the doubleword must
be in DX, and the LSW of the doubleword must be in
AX. After the result, AX will contain the 16-bit
result(quotient), and DX will contain 16-bit remainder.
If one wants to divide a byte by a byte, one must first
put the dividend byte in AL and fill AH with all 0’s. The
SUB AH,AH instruction is a quick way to do this.
Dheeraj Suri
Flags affected : The CF, OF, SF, ZF, AF, and PF flags are undefined.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
IF TF
Instruction Descriptions
56
8086 Microprocessor
DIV –
Unsigned
Divide –
DIV source
Examples(syntax):
Dheeraj Suri
Flags affected : The CF, OF, SF, ZF, AF, and PF flags are undefined
DIV BL ;Divide word in AX by byte in BL.
;Quotient in AL, remainder in AH
DIV CX ;Divide doubleword in DX and AX
; by word in CX. Quotient in AX,
Remainder in DX.
DIV
SCALE[BX]
;AX/(byte at effective address
SCALE[BX] if SCALE[BX] is of type
byte or (DX and AX)/(word at
effective address SCALE[BX]) if
SCALE[BX] is of type word.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
IF TF
Instruction Descriptions
57
8086 Microprocessor
DIV –
Unsigned
Divide –
DIV source
Examples(Numerical):
Dheeraj Suri
Flags affected : The CF, OF, SF, ZF, AF, and PF flags are undefined
;AX = 37D7h = 14,295 D
;BH = 97h = 151 D
DIV BH ; AX/BH, AL = quotient = 5Eh =
94D, AH = remainder = 65h =
101D
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
IF TF
Instruction Descriptions
58
8086 Microprocessor
ESC –
Escape
This instruction is used to pass instructions to a
co-processor, such as the 8087 math processor
which shares the address and data bus with
8086. Instructions for the co-processor are
represented by a 6-bit code embedded in the
escape instruction. As the 8086 fetches
instruction bytes, the co-processor also catches
these bytes from the data bus and puts them in
its queue.
Dheeraj Suri
Instruction Descriptions
59
8086 Microprocessor
HLT – Halt
Processing
The HLT instruction will cause the 8086 to stop
fetching and executing instructions. The 8086
will enter a halt state. The only ways to get the
processor out of the halt state are with an
interrupt signal on the INTR pin, an interrupt
signal on the NMI pin, or a reset signal on the
RESET input.
Dheeraj Suri
Instruction Descriptions
60
8086 Microprocessor
IDIV –
Divide by
signed byte
or word –
IDIV
source
This instruction is used to divide a signed word
by a signed byte, or to divide a signed
doubleword (32bits) by a signed word.
When dividing a signed word by a signed byte,
the world must be in the AX register. The divisor
can be in an 8-bit register or a memory location.
After the division, AL will contain the signed
result (quotient), and AH will contain the signed
remainder. The sign of the remainder will be the
same as the sign of the dividend. If an attempt is
made to divide by 0, the quotient is greater than
127 (7Fh), or the quotient is less than -127
(81h), the 8086 will automatically do a type 0
interrupt.
If one wants to divide a signed byte by a signed
byte, one must first put the dividend byte in AL
and fill AH with copies of the sign bit from AL. In
other words, if AL is +ve, then AH should be
filled with all 0’s . If AL is –ve (sign bit = 1)..
Dheeraj Suri
Instruction Descriptions
61
8086 Microprocessor
IDIV –
Divide by
Signed
Byte or
Word –
IDIV
source
--- then AH should be filled with all 1’s. The
8086 convert byte to world instruction, CBW,
does this by copying the sign bit of AL to all bits
of AH. AH is then said to contain the “sign
extension of AL”.
Likewise, if one wants to divide a signed word by
a signed word, one must put the dividend word
in AX and extend the sign of AX to all bits of DX.
The 8086 Convert Word to Double word
instruction, CWD, will copy the sign bit of AX to
all bits of DX.
Dheeraj Suri
Flags affected : All flags are undefined after a IDIV.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
XX XX XX XX XX XX XX XX XX
Instruction Descriptions
62
8086 Microprocessor
IDIV –
Divide by
Signed
Byte or
Word –
IDIV
source
Examples(Coding):
Dheeraj Suri
Flags affected : All flags are undefined after a IDIV.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
XX XX XX XX XX XX XX XX XX
IDIV BL ; Signed word in AX/signed byte
; in BL
IDIV BP ; Signed double-word in DX and
AX/signed word
IDIV BYTE
PTR[BX]
; AX/byte at offset [BX] in DS
MOV AL,
DIVIDEND
; position byte dividend
CBW ; Extend sign of AL into AH
IDIV
DIVISOR
; Divide by byte divisor
Instruction Descriptions
63
8086 Microprocessor
IDIV –
Divide by
Signed
Byte or
Word –
IDIV
source
Examples(Numerical):
Note: The quotient is negative because positive
Was divided by negative. The remainder has same sign as dividend
(positive)
Dheeraj Suri
Flags affected : All flags are undefined after a IDIV.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
XX XX XX XX XX XX XX XX XX
; A signed word divided by a
; signed byte
; AX = 00000011 10101011
=03ABh = 39 D
; BL = 11010011 = D3h = -2Dh
= -45 decimal
IDIV BL ; Quotient: AL = Ech = -14h = -20
decimal
; Remainder: AH = 27h = + 39D
Instruction Descriptions
64
8086 Microprocessor
IDIV –
Divide by
Signed
Byte or
Word –
IDIV
source
Examples(Numerical)- contd.:
Note: Although the quotient is actually closer to 13 (12.66667) than to
12, the 8086 truncates it to 12 rather than rounding it to 13. If you want
to round the quotient, you can compare the magnitude of the remainder
with (divisor/2) and add 1 to the quotient if the remainder is greater
than (divisor/2). Note that the sign of the remainder is the same as the
sign of the dividend (negative).
Dheeraj Suri
Flags affected : All flags are undefined after a IDIV.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
XX XX XX XX XX XX XX XX XX
; A signed byte divided by a
signed byte
; AX = 11011010= - 26h = -38 D
; CH = 00000011 = +3h = +3D
CBW ; Extend sign of AL through AH
; AX = 11111111 11011010
IDIV CH ; Divide AX by CH
; AL = 11110100 = -0Ch = -12 D
; AH = 11111110 = -2h = -2D
Instruction Descriptions
65
8086 Microprocessor
IMUL –
Multiply
Signed
Numbers –
IMUL
Source
This instruction multiplies a signed byte from some source times a
signed byte in AL or a signed word from some source times a signed word
in AX. The source can be another register or a memory location specified
by any one of the 24 addressing modes (memory addressing). When a
byte from some source is multiplied by AL, the signed result will be put in
AX. A 16-bit destination is required because the result of multiplying two
8-bit numbers can be as large as 16-bits. When a word from some source
is multiplied by AX, the result can be as large as 32 bits. The higher order
word of signed result is put in DX, and lower order word is put in AX. If
the magnitude of the product doesn’t require all bits of destination, the
unused bits will be filled with copies of sign bit. If the upper byte of a 16-
bit result or the upper word of a 32-bit result contains only copies of the
sign bit (all 0’s or all 1’s ) , then CF and OF will be both 0. if the upper
byte of a 16-bit result or the upper word of a 32-bit result contains part
of the product, CF and OF will both be 1. One can use the status of the
flags to determine whether upper byte or word of the product needs to be
kept. One can use the status of these flags to determine whether upper
byte or word of the product needs to be kept.
If one wants to multiply a signed byte by a signed word, one must first
move the byte into a word location and fill the upper byte of the word
with copies of the sign bit. If one moves the byte into AL, one can use the
8086 convert byte to word instruction, CBW, to do this.
Dheeraj Suri
Flags affected : CF and OF are updated. AF, PF, SF and ZF are undefined after IMUL
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
OF CF
Instruction Descriptions
66
8086 Microprocessor
IMUL –
Multiply
Signed
Numbers –
IMUL
Source
Examples (Coding):
Dheeraj Suri
Flags affected : CF and OF are updated. AF, PF, SF and ZF are undefined after IMUL
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
OF CF
IMUL BH ; Signed byte in AL times
; signed byte in BH. Result in AX.
IMUL AX ; AX times AX, result in DX and
; AX
; Multiplying a signed byte by a
; signed word
MOV CX,
MULTIPLIER
; Load signed word in CX
MOV AL,
MULTIPLICAND
; Load signed byte in AL
CBW ; Extend sign of AL into AH
IMUL CX ; Result in DX and AX
Instruction Descriptions
67
8086 Microprocessor
IMUL –
Multiply
Signed
Numbers –
IMUL
Source
Examples (Numerical):
Dheeraj Suri
Flags affected : CF and OF are updated. AF, PF, SF and ZF are undefined after IMUL
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
OF CF
; 69 X 14
; AL = 01000101 = 69 Decimal
; BL = 00001110 = 14 Decimal
IMUL BL ; AX = 03C6h = +966 decimal
; MSB = 0, positive result
; magnitude in true form. SF = 0,
; CF, OF = 1
; -28’ 59
; AL = 11100100 = -28 decimal
; BL = 00111011 = +59 decimal
IMUL BL ; AX = F89Ch = -1652 decimal
; MSB = 1, negative result
magnitude, in 2’s compliment
; SF, CF, OF = 1
Instruction Descriptions
68
8086 Microprocessor
IN – Copy
data from a
port – IN
Accumulato
r, Port
The IN instruction will copy data from a port to the AL
or AX register. If an 8-bit port is read, the data will go
to AL. If a 16-bit port is read, the data will go to AX.
The IN instruction has two possible formats, fixed port
and variable port.
For the fixed port type, the 8-bit address of a port is
specified directly in the instruction. Examples:
Dheeraj Suri
Flags affected : The IN instruction do not change any flags.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
IN AL, 0C8h ;Input a byte from port 0C8h to
; AL
IN AX, 34h ; Input a word from port 34h to AX
A_TO_D EQU
4Ah
IN AX,
A_TO_D
; Input a word from port 4Ah to
; AX
Instruction Descriptions
69
8086 Microprocessor
IN – Copy
data from a
port – IN
Accumulato
r, Port
For the variable-port-type IN instruction, the port
address is loaded into the DX register before the IN
instruction. Since DX is a 16-bit register, the port
address can be any number between 0000h and FFFFh.
Therefore, up to 65,536 ports are addressable in this
mode. Examples:
Dheeraj Suri
Flags affected : The IN instruction do not change any flags.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
MOV DX,
0FF78h
; Initialize DX to point to port
IN AL, DX ; Input a byte from 8-bit port
; 0FF78h to AL
IN AX, DX ; Input a word from 16-bit port
; 0FF78h to AX
Instruction Descriptions
70
8086 Microprocessor
INC –
Increment-
INC
destination
The INC instruction adds 1 to a specified
register or to a memory location specified in
any one of the 24 addressing modes
(memory). Examples:
Note: Carry flag is not affected. This means that if an 8-bit destination containing FFh or
a 16-bit destination containing FFFFh is incremented, the result will be all 0’s with no
Carry
Dheeraj Suri
Flags affected : AF, OF, PF, SF, and ZF are affected. CF is not affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
OF DF IF TF SF ZF AF PF
INC BL ; Add 1 to contents of BL
; register
INC CX ; Add 1 to contents of CX
register
Instruction Descriptions
71
8086 Microprocessor
INT –
Interrupt
Program
Execution –
INT Type
The Term Type in this instruction format
refers to a number between 0 and 255
which identifies the interrupt. When an
8086 executes an INT instruction, it will:
1. Decrement the SP by 2 and push the
flags onto stack.
2. Decrement the SP by 2 and push
contents of CS onto the stack.
3. Decrement the stack pointer by 2 and
push the offset of the next instruction
after the INT number instruction on to
the stack
4. Contd. On next slide.
Dheeraj Suri
Flags affected : IF and TF are affected. Other flags are not affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
IF TF
Instruction Descriptions
72
8086 Microprocessor
INT –
Interrupt
Program
Execution –
INT Type
4. Get a new value for IP from an absolute
memory address of 4 times the type
specified in the instruction.
5. Get a new value for CS from an absolute
memory address of 4 times the type
specified in the instruction plus 2.
6. Reset both IF and TF. Other flags are not
affected. Examples:
Dheeraj Suri
Flags affected : IF and TF are affected. Other flags are not affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
IF TF
INT 35 ; New IP from 0008Ch, new CS from
0008Eh
INT 3 ; This is a special form which has
the single-byte code of CCh. Many
systems use this as a break-point
instruction. New IP from 0000Ch,
new CS from 0000Eh
Instruction Descriptions
73
8086 Microprocessor
INTO-
Interrupt
on
Overflow
If the overflow flag (OF) is set, this instruction will
cause the 8086 to do an indirect far call to a procedure
you write to handle the overflow condition. Before
doing the call, the 8086 will:
1. Decrement the stack pointer by 2 and push the
flags onto stack.
2. Decrement the stack pointer, by 2 and push CS
onto the stack.
3. Decrement the SP by 2 and push the offset of the
next instruction after the INTO instruction onto the
stack.
4. Reset TF and IF. Other flags are not affected. To
do the call, the 8086 will read a new value for IP
from address 00010h and a new value of CS from
address 00012h.
Dheeraj Suri
Flags affected :
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
IF TF
INTO ; Call interrupt procedure if OF = 1
Instruction Descriptions
74
8086 Microprocessor
IRET –
Interrupt
Return
When the 8086 responds to an interrupt signal
or to an interrupt instruction, it pushes the flags,
the current value of CS, and the current value of
IP onto the stack. It then loads CS and IP with
the starting address of the procedure which one
writes for the response to that interrupt. The
IRET instruction is used at the end of the
interrupt service procedure to return execution
to the interrupted program. To do this return,
the 8086 copies the saved value of IP from the
stack to IP, the stored value of CS from the stack
to CS, and the stored value of the flags back to
the flag register. Flags will have the values they
had before the interrupt, so any flag settings
from the procedure will be lost unless they are
specifically saved in some way.
Note: The RET instruction should not normally be used to return from interrupt
procedures because it doesnot copy the flags from the stack back to the flag
register.
Dheeraj Suri
Instruction Descriptions
75
8086 Microprocessor
JA/JNBE
– Jump if
Above/Ju
mp if Not
below or
Equal
The terms above and below are used when
referring to the magnitude of unsigned numbers.
The number 0111 is above the number 0010. If,
after a compare or some other instruction which
affects flags, the zero flag and the carry flag are
both 0, this instruction will cause execution to
jump to a label given in the instruction. If CF and
ZF are not both 0, the instruction will have no
effect on program execution. The destination
label for the jump must be in the range of -128
bytes to +127 bytes from the address of the
instruction after the JA. JA/JNBE affects no
flags.
Dheeraj Suri
Flags affected : No flags are affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
Instruction Descriptions
76
8086 Microprocessor
JA/JNBE
– Jump if
Above/Ju
mp if Not
below or
Equal
Examples:
Dheeraj Suri
Flags affected : No flags are affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
CMP AX, 4371h ; Compare by subtracting 4371h
; from AX
JA RUN_PRESS ; Jump to label RUN_PRESS if
AX is
; above 4371h
CMP AX, 4371h ; Compare (AX – 4371h)
JNBE
RUN_PRESS
; jump to label RUN_PRESS if
AX
; not below or equal to 4371h
Instruction Descriptions
77
8086 Microprocessor
JAE/JNB/
JNC –
Jump if
Above or
Equal/Ju
mp if Not
below/Ju
mp if No
Carry
The three mnemonics represent the same
instruction. The terms above and below are used
when referring to the magnitude of unsigned
numbers. The number 0111 is above the number
0010. If, after a compare or some other
instruction which affects flags, the carry flag is
0, this instruction will cause execution to jump
to a label given in the instruction. If CF is 1, the
instruction will have no effect on the program
execution. The destination label for the jump
must be in the range of -128 bytes to +127 bytes
from the address of the instruction after the JAE.
JAE/JNB/JNC affects no flags.
Dheeraj Suri
Flags affected : No flags are affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
Instruction Descriptions
78
8086 Microprocessor
JAE/JNB/
JNC –
Jump if
Above or
Equal/Ju
mp if Not
below/Ju
mp if No
Carry
Examples:
Dheeraj Suri
Flags affected : No flags are affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
CMP AX,4371h ; Compare (AX – 4371h)
JAE
RUN_PRESS
; Jump to label RUN_PRESS if AX
is
; above or equal to 4371h
CMP AX,
4371h
; Compare (AX – 4371h)
JNB
RUN_PRESS
; Jump to label RUN_PRESS if AX
; not below 4371h
ADD AL,BL ; Add two bytes. If result within
; acceptable range continue
JNC OK
Instruction Descriptions
79
8086 Microprocessor
JB/JC/JN
AE –
Jump if
Below/Ju
mp if
Carry/Ju
mp if Not
above or
Equal
These three mnemonics represent the same
instruction. Just like previous, the description of
these instructions can be understood.
Examples:
Dheeraj Suri
Flags affected : No Flags are affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
CMP AX,4371h ; Compare (AX – 4371h)
JB RUN_PRESS ; Jump to label RUN_PRESS if AX
below
; 4371h
ADD BX,CX ; Add two words and jump to label
ERROR_FIX if CF = 1
JC ERROR_FIX
CMP AX,4371h ; Compare AX – 4371h
JNAE
RUN_PRESS
; Jump to label RUN_PRESS if AX
; not above or equal to 4371h
Instruction Descriptions
80
8086 Microprocessor
JBE/JNA
– Jump if
Below or
Equal/Ju
mp if Not
above
JBE & JNA represent the same instruction. The
terms above and equal are used when referring
to the magnitude of unsigned numbers. The
number 0111 is above the number 0010. If, after
a compare or some other instruction which
affects flags, either the zero flag or the carry flag
is 1, this instruction will cause execution to jump
to a label given in the instruction. If CF and ZF
are both 0, the instruction will have no effect on
program execution. The destination label for the
jump must be in the range of -128 bytes to +127
bytes from the address of the instruction after
the JBE. JBE/JNA affects no flags.
Dheeraj Suri
Flags affected : No flags are affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
Instruction Descriptions
81
8086 Microprocessor
JBE/JNA
– Jump if
Below or
Equal/Ju
mp if Not
above
Examples:
Dheeraj Suri
Flags affected : No flags are affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
CMP AX, 4371h ; Compare (AX – 4371h)
JBE RUN_PRESS ; Jump to label RUN_PRESS
; if AX below or equal to
; 4371h
CMP AX, 4371h ; Compare (AX – 4371h)
JNA RUN_PRESS ; Jump to label RUN_PRESS
if
; AX not above 4371h
Instruction Descriptions
82
8086 Microprocessor
JCXZ –
Jump if
CX
register
is Zero
This instruction will cause a jump to a label given in
the instruction if the CX register contains all 0’s,
execution will simply proceed to the next instruction.
Note that this instruction doesnot look at the zero flag
when it decides whether to jump or not. The
destination label for this instruction must be in the
range of -128 to +127 bytes from the address of the
instruction after JCXZ instruction. JCXZ affects no
flags. Example:
Dheeraj Suri
Flags affected : No flags are affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
JCXZ SKIP_LOOP ; IF CX = 0, skip the process
NXT: SUB [BX], 07h ; Subtract 7 from data value
INC BX ; point to next value
LOOP NXT ; Loop until CX = 0
SKIP_LOOP: ; Next instruction
Instruction Descriptions
83
8086 Microprocessor
JE/JZ –
Jump if
Equal/Ju
mp if
Zero
JE & JZ mnemonics represent the same
instruction. If the zero flag is set, this instruction
will cause execution to jump to a label given in
the instruction. If the zero flag is not 1,
execution will simply go on to the next
instruction after JE or JZ. The destination label
for the JE/JZ instruction must be in the range of
-128 to +127 bytes from the address of the
instruction after the JE/JZ instruction. JE/JZ
affects no flags. Example : (next slide)
Dheeraj Suri
Flags affected : No flags are affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
Instruction Descriptions
84
8086 Microprocessor
JE/JZ –
Jump if
Equal/Ju
mp if
Zero
Dheeraj Suri
Flags affected : No flags are affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
NXT: CMP BX, DX ; Compare (BX – DX)
JE DONE ; Jump to DONE if BX = DX
SUB BX, AX ; Else subtract AX
INC CX ; Increment Counter
JMP NXT ; Check again
DONE: MOV AX, CX ; Copy count to AX
IN AL, 8Fh ; Read data from port 8Fh
SUB AL, 30h ; Subtract minimum value
JZ START_MACHINE ; Jump to label if result of
; subtraction was 0
Instruction Descriptions
85
8086 Microprocessor
JG/JNLE-
Jump if
Greater/J
ump if
Not less
than or
Equal
JG or JNLE represent the same instruction. The
terms greater or less are used to refer to the
relationship of two signed numbers. Greater
means more positive. The number 00000111 is
greater than the number 11101010, because in
signed notation the second number is negative.
This instruction is usually used after a Compare
instruction. The instruction will cause a jump to
a label given in the instruction if the Zero Flag is
0 and the carry flag is the same as the overflow
flag. The destination label must be in the range
of -128 bytes to +127 bytes from the address of
instruction after JG/JNLE instruction. If the jump
is not taken, execution simply goes on to the
next instruction after the JG or JNLE instruction.
JG/JNLE affects no flags.
Dheeraj Suri
Flags affected : No flags are affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
Instruction Descriptions
86
8086 Microprocessor
JG/JNLE-
Jump if
Greater/J
ump if
Not less
than or
Equal
Examples:
Dheeraj Suri
Flags affected : No flags are affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
CMP BL, 39h ; Compare by subtracting 30h
; from BL
JG NEXT_1 ; Jump to label if BL more
positive than 39h
CMP BL, 39h ; Compare by subtracting 39h
; from BL
JNLE NEXT_1 ; Jump to label if BL not less
than
; or equal to 39h
Instruction Descriptions
87
8086 Microprocessor
JGE/JNL
– Jump if
Greater
Than or
Equal/Ju
mp if Not
less Than
Dheeraj Suri
Flags affected : No flags are affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
JGE/JNL both represent the same instruction. The
terms greater and less are used to refer to the
relationship of two signed numbers. Greater means
more positive. The number 00000111 is greater
than the number 11101010, because in signed
notation the second number is negative. This
instruction is usually used after the compare
instruction. The instruction will cause a jump to a
label given in the instruction if the sign flag is equal
to the overflow flag. The destination label must be
in the range of -128 bytes to +127 bytes from the
address of the instruction after the JGE/JNL
instruction. If the jump is not taken, execution
simply goes on to the next instruction after the JGE
or JNL instruction. JGE/JNL affects no flags.
Example (on next slide)
Instruction Descriptions
88
8086 Microprocessor
JGE/JNL
– Jump if
Greater
Than or
Equal/Ju
mp if Not
less Than
Dheeraj Suri
Flags affected : No flags are affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
CMP BL, 39h ; Compare by subtracting 39h
from BL
JGE NEXT_1 ; Jump to label if BL more
positive
; than 39h or equal to 39h
CMP BL, 39h ; Compare by subtracting 39h
from BL
JNL NEXT_1 ; Jump to label if BL not less
than 39h
Instruction Descriptions
89
8086 Microprocessor
JL/JNGE –
Jump if
Less
Than/Jump
if Not
Greater
Than or
Equal
Dheeraj Suri
Flags affected : No flags are affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
JL/JNGE both represent the same instruction. The
terms greater and less are used to refer to the
relationship of two signed numbers. Greater means
more positive. The number 00000111 is greater
than the number 11101010, because in signed
notation the second number is negative. This
instruction is usually used after the compare
instruction. The instruction will cause a jump to a
label given in the instruction if the sign flag is not
equal to the overflow flag. The destination label
must be in the range of -128 bytes to +127 bytes
from the address of the instruction after the
JL/JNGE instruction. If the jump is not taken,
execution simply goes on to the next instruction
after the JL or JNGE instruction. JL/JNGE affects no
flags. Example (on next slide)
Instruction Descriptions
90
8086 Microprocessor
JL/JNGE –
Jump if
Less
Than/Jump
if Not
Greater
Than or
Equal
Dheeraj Suri
Flags affected : No flags are affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
CMP BL, 39h ; Compare by subtracting 39h
from BL
JL AGAIN ;Jump to label if BL more
negative than 39h
CMP BL, 39h ; Compare by subtracting 39h
from BL
JNGE AGAIN ; Jump to label if BL not more
positive than 39h or BL not
equal to 39h
Instruction Descriptions
91
8086 Microprocessor
JLE/JNG –
Jump if
Less Than
or
Equal/Jump
if Not
Greater
Dheeraj Suri
Flags affected : No flags are affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
JLE/JNG both represent the same instruction. The
terms greater and less are used to refer to the
relationship of two signed numbers. Greater means
more positive. The number 00000111 is greater
than the number 11101010, because in signed
notation the second number is negative. This
instruction is usually used after the compare
instruction. The instruction will cause a jump to a
label given in the instruction if the zero flag is set,
or if the sign flag is not equal to the overflow flag.
The destination label must be in the range of -128
bytes to +127 bytes from the address of the
instruction after the JLE/JNG instruction. If the
jump is not taken, execution simply goes on to the
next instruction after the JL or JNGE instruction.
JLE/JNG affects no flags. Example (on next slide)
Instruction Descriptions
92
8086 Microprocessor
JLE/JNG –
Jump if
Less Than
or
Equal/Jum
p if Not
Greater
Dheeraj Suri
Flags affected : No flags are affected.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
CMP BL, 39h ; Compare by subtracting 39h
from BL
JLE NXT_1 ; Jump to label if BL more than
39h or equal to 39h
CMP BL,39h ; Compare by subtracting 39h
from BL
JNG
PRINTER
; Jump to label if BL not more
positive than 39h
Instruction Descriptions
93
8086 Microprocessor
JMP-
Unconditio
nal Jump
to
Specified
Destination
Will always cause the 8086 to fetch the next
instruction from the location specified in the
instruction rather than from the next location
after the JMP instruction. If the destination is in
the same code segment as the JMP instruction,
then only the instruction pointer will be changed
to get to the destination location (near jump). If
the destination for the jump instruction is in a
segment with a name different from that of the
segment containing the JMP instruction, then
both the IP and CS segment register contents
will be changed to get to the destination location
(far jump). The JMP instruction affects no flags.
Examples: (next slide)
Dheeraj Suri
Flags affected : No flags are affected after JMP instruction.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
Instruction Descriptions
94
8086 Microprocessor
JMP-
Unconditio
nal Jump
to
Specified
Destination
Dheeraj Suri
Flags affected : No flags are affected after JMP instruction.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
JMP Continue ; Fetch next instruction from
address at label CONTINUE
JMP BX ; Replace the contents of IP
with
; the contents of BX. BX must
first be loaded with the offset
of the destination instruction
in CS. This is a near jump. It is
also referred to as an indirect
jump because the new value
for IP comes from a register
rather than from the
instruction itself, as in a direct
jump.
Instruction Descriptions
95
8086 Microprocessor
JMP-
Unconditio
nal Jump
to
Specified
Destination
Dheeraj Suri
Flags affected : No flags are affected after JMP instruction.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
JMP WORD
PTR[BX]
; Replace IP with a word to by
BX ; in DS. This is an indirect
near jump.
JMP DWORD
PTR[SI]
; Replace IP with a word
pointed to by SI in DS. Replace
CS with a word pointed to by
SI + 2 in DS. This is an indirect
far jump.
Instruction Descriptions
96
8086 Microprocessor
The slides for rest of the instructions are
Under construction. Until then students
Are advised to refer section 6.2 in
Douglas V. Hall!
Dheeraj Suri
Flags affected :
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
OF DF IF TF SF ZF AF PF CF

More Related Content

What's hot

Addressing Modes Of 8086
Addressing Modes Of 8086Addressing Modes Of 8086
Addressing Modes Of 8086Ikhlas Rahman
 
8257 DMA Controller
8257 DMA Controller8257 DMA Controller
8257 DMA ControllerShivamSood22
 
Memory banking-of-8086-final
Memory banking-of-8086-finalMemory banking-of-8086-final
Memory banking-of-8086-finalEstiak Khan
 
Assembly language 8086
Assembly language 8086Assembly language 8086
Assembly language 8086John Cutajar
 
Addressing modes of 8086
Addressing modes of 8086Addressing modes of 8086
Addressing modes of 8086saurav kumar
 
Instruction sets of 8086
Instruction sets of 8086Instruction sets of 8086
Instruction sets of 8086Mahalakshmiv11
 
Logical instructions (and, or, xor, not, test)
Logical instructions (and, or, xor, not, test)Logical instructions (and, or, xor, not, test)
Logical instructions (and, or, xor, not, test)Irfan Anjum
 
Serial Communication
Serial CommunicationSerial Communication
Serial CommunicationUshaRani289
 
8086 instructions
8086 instructions8086 instructions
8086 instructionsRavi Anand
 
Jumps in Assembly Language.
Jumps in Assembly Language.Jumps in Assembly Language.
Jumps in Assembly Language.NA000000
 
Computer registers
Computer registersComputer registers
Computer registersDeepikaT13
 
Logic, shift and rotate instruction
Logic, shift and rotate instructionLogic, shift and rotate instruction
Logic, shift and rotate instructionkashif Shafqat
 
Memory & I/O interfacing
Memory & I/O  interfacingMemory & I/O  interfacing
Memory & I/O interfacingdeval patel
 
Programmableperipheralinterface 8255 ppt
Programmableperipheralinterface 8255 pptProgrammableperipheralinterface 8255 ppt
Programmableperipheralinterface 8255 pptsharan Kumar
 
memory reference instruction
memory reference instructionmemory reference instruction
memory reference instructionDeepikaT13
 
8086 class notes-Y.N.M
8086 class notes-Y.N.M8086 class notes-Y.N.M
8086 class notes-Y.N.MDr.YNM
 

What's hot (20)

Addressing Modes Of 8086
Addressing Modes Of 8086Addressing Modes Of 8086
Addressing Modes Of 8086
 
8257 DMA Controller
8257 DMA Controller8257 DMA Controller
8257 DMA Controller
 
Memory banking-of-8086-final
Memory banking-of-8086-finalMemory banking-of-8086-final
Memory banking-of-8086-final
 
Assembly language 8086
Assembly language 8086Assembly language 8086
Assembly language 8086
 
Addressing modes of 8086
Addressing modes of 8086Addressing modes of 8086
Addressing modes of 8086
 
Assembly 8086
Assembly 8086Assembly 8086
Assembly 8086
 
Instruction sets of 8086
Instruction sets of 8086Instruction sets of 8086
Instruction sets of 8086
 
Logical instructions (and, or, xor, not, test)
Logical instructions (and, or, xor, not, test)Logical instructions (and, or, xor, not, test)
Logical instructions (and, or, xor, not, test)
 
Lecture 3 instruction set
Lecture 3  instruction setLecture 3  instruction set
Lecture 3 instruction set
 
Serial Communication
Serial CommunicationSerial Communication
Serial Communication
 
8086 instructions
8086 instructions8086 instructions
8086 instructions
 
8251 USART
8251 USART8251 USART
8251 USART
 
Jumps in Assembly Language.
Jumps in Assembly Language.Jumps in Assembly Language.
Jumps in Assembly Language.
 
Computer registers
Computer registersComputer registers
Computer registers
 
8086 memory segmentation
8086 memory segmentation8086 memory segmentation
8086 memory segmentation
 
Logic, shift and rotate instruction
Logic, shift and rotate instructionLogic, shift and rotate instruction
Logic, shift and rotate instruction
 
Memory & I/O interfacing
Memory & I/O  interfacingMemory & I/O  interfacing
Memory & I/O interfacing
 
Programmableperipheralinterface 8255 ppt
Programmableperipheralinterface 8255 pptProgrammableperipheralinterface 8255 ppt
Programmableperipheralinterface 8255 ppt
 
memory reference instruction
memory reference instructionmemory reference instruction
memory reference instruction
 
8086 class notes-Y.N.M
8086 class notes-Y.N.M8086 class notes-Y.N.M
8086 class notes-Y.N.M
 

Viewers also liked

Ascii adjust & decimal adjust
Ascii adjust & decimal adjustAscii adjust & decimal adjust
Ascii adjust & decimal adjustTech_MX
 
Assembly Language Lecture 5
Assembly Language Lecture 5Assembly Language Lecture 5
Assembly Language Lecture 5Motaz Saad
 
Assembly Language Lecture 1
Assembly Language Lecture 1Assembly Language Lecture 1
Assembly Language Lecture 1Motaz Saad
 
8086 microprocessor instruction set by Er. Swapnil Kaware
8086 microprocessor instruction set by Er. Swapnil Kaware8086 microprocessor instruction set by Er. Swapnil Kaware
8086 microprocessor instruction set by Er. Swapnil KawareProf. Swapnil V. Kaware
 
Microprocessors-based systems (under graduate course) Lecture 4 of 9
Microprocessors-based systems (under graduate course) Lecture 4 of 9 Microprocessors-based systems (under graduate course) Lecture 4 of 9
Microprocessors-based systems (under graduate course) Lecture 4 of 9 Randa Elanwar
 
Microprocessors-based systems (under graduate course) Lecture 8 of 9
Microprocessors-based systems (under graduate course) Lecture 8 of 9 Microprocessors-based systems (under graduate course) Lecture 8 of 9
Microprocessors-based systems (under graduate course) Lecture 8 of 9 Randa Elanwar
 
Time delay programs and assembler directives 8086
Time delay programs and assembler directives 8086Time delay programs and assembler directives 8086
Time delay programs and assembler directives 8086Dheeraj Suri
 
Instruction set of 8086
Instruction set of 8086Instruction set of 8086
Instruction set of 8086aviban
 
Assembly language programming_fundamentals 8086
Assembly language programming_fundamentals 8086Assembly language programming_fundamentals 8086
Assembly language programming_fundamentals 8086Shehrevar Davierwala
 
Instruction Set of 8086 Microprocessor
Instruction Set of 8086 MicroprocessorInstruction Set of 8086 Microprocessor
Instruction Set of 8086 MicroprocessorAshita Agrawal
 
Microprocessor Use Of Emulator 8088/86 Thermometer By Fawad Masood Khattak
Microprocessor Use Of Emulator 8088/86 Thermometer By Fawad Masood KhattakMicroprocessor Use Of Emulator 8088/86 Thermometer By Fawad Masood Khattak
Microprocessor Use Of Emulator 8088/86 Thermometer By Fawad Masood KhattakFawad Masood
 
8086-instruction-set-ppt
 8086-instruction-set-ppt 8086-instruction-set-ppt
8086-instruction-set-pptjemimajerome
 

Viewers also liked (18)

Ascii adjust & decimal adjust
Ascii adjust & decimal adjustAscii adjust & decimal adjust
Ascii adjust & decimal adjust
 
Assembly Language Lecture 5
Assembly Language Lecture 5Assembly Language Lecture 5
Assembly Language Lecture 5
 
Assembly Language Lecture 1
Assembly Language Lecture 1Assembly Language Lecture 1
Assembly Language Lecture 1
 
8086 microprocessor instruction set by Er. Swapnil Kaware
8086 microprocessor instruction set by Er. Swapnil Kaware8086 microprocessor instruction set by Er. Swapnil Kaware
8086 microprocessor instruction set by Er. Swapnil Kaware
 
Emu86 short
Emu86 shortEmu86 short
Emu86 short
 
Lecture1
Lecture1Lecture1
Lecture1
 
Introduction To EMU
Introduction To EMUIntroduction To EMU
Introduction To EMU
 
Microprocessors-based systems (under graduate course) Lecture 4 of 9
Microprocessors-based systems (under graduate course) Lecture 4 of 9 Microprocessors-based systems (under graduate course) Lecture 4 of 9
Microprocessors-based systems (under graduate course) Lecture 4 of 9
 
Lecture4
Lecture4Lecture4
Lecture4
 
Emu8086
Emu8086Emu8086
Emu8086
 
8086 Instruction set
8086 Instruction set8086 Instruction set
8086 Instruction set
 
Microprocessors-based systems (under graduate course) Lecture 8 of 9
Microprocessors-based systems (under graduate course) Lecture 8 of 9 Microprocessors-based systems (under graduate course) Lecture 8 of 9
Microprocessors-based systems (under graduate course) Lecture 8 of 9
 
Time delay programs and assembler directives 8086
Time delay programs and assembler directives 8086Time delay programs and assembler directives 8086
Time delay programs and assembler directives 8086
 
Instruction set of 8086
Instruction set of 8086Instruction set of 8086
Instruction set of 8086
 
Assembly language programming_fundamentals 8086
Assembly language programming_fundamentals 8086Assembly language programming_fundamentals 8086
Assembly language programming_fundamentals 8086
 
Instruction Set of 8086 Microprocessor
Instruction Set of 8086 MicroprocessorInstruction Set of 8086 Microprocessor
Instruction Set of 8086 Microprocessor
 
Microprocessor Use Of Emulator 8088/86 Thermometer By Fawad Masood Khattak
Microprocessor Use Of Emulator 8088/86 Thermometer By Fawad Masood KhattakMicroprocessor Use Of Emulator 8088/86 Thermometer By Fawad Masood Khattak
Microprocessor Use Of Emulator 8088/86 Thermometer By Fawad Masood Khattak
 
8086-instruction-set-ppt
 8086-instruction-set-ppt 8086-instruction-set-ppt
8086-instruction-set-ppt
 

Similar to Microprocessor 8086 instruction description

Bcd and ascii arithmetic instructions
Bcd and ascii arithmetic instructionsBcd and ascii arithmetic instructions
Bcd and ascii arithmetic instructionsDr. Girish GS
 
Ascii arithmetic instructions
Ascii arithmetic instructionsAscii arithmetic instructions
Ascii arithmetic instructionsDr. Girish GS
 
Bcd arithmetic instructions
Bcd arithmetic instructionsBcd arithmetic instructions
Bcd arithmetic instructionsDr. Girish GS
 
15CS44 MP & MC Module 2
15CS44 MP & MC Module  215CS44 MP & MC Module  2
15CS44 MP & MC Module 2RLJIT
 
1344 Alp Of 8086
1344 Alp Of 80861344 Alp Of 8086
1344 Alp Of 8086techbed
 
microcomputer architecture - Arithmetic instruction
microcomputer architecture - Arithmetic instructionmicrocomputer architecture - Arithmetic instruction
microcomputer architecture - Arithmetic instructionramya marichamy
 
Chap 3_2.ppt
Chap 3_2.pptChap 3_2.ppt
Chap 3_2.pptinian2
 
Mastering Assembly Language: Programming with 8086
Mastering Assembly Language: Programming with 8086Mastering Assembly Language: Programming with 8086
Mastering Assembly Language: Programming with 8086sravanithonta79
 
Introduction of 8086 micro processor .
Introduction of 8086 micro processor .Introduction of 8086 micro processor .
Introduction of 8086 micro processor .Siraj Ahmed
 
Instruction set of 8086
Instruction set of 8086Instruction set of 8086
Instruction set of 8086Vijay Kumar
 
Instructionsetof8086 180224060745(3)
Instructionsetof8086 180224060745(3)Instructionsetof8086 180224060745(3)
Instructionsetof8086 180224060745(3)AmitPaliwal20
 
Instruction 4.pptx
Instruction 4.pptxInstruction 4.pptx
Instruction 4.pptxHebaEng
 

Similar to Microprocessor 8086 instruction description (20)

Bcd and ascii arithmetic instructions
Bcd and ascii arithmetic instructionsBcd and ascii arithmetic instructions
Bcd and ascii arithmetic instructions
 
Ascii arithmetic instructions
Ascii arithmetic instructionsAscii arithmetic instructions
Ascii arithmetic instructions
 
Instruction set of 8086
Instruction set of 8086Instruction set of 8086
Instruction set of 8086
 
Bcd arithmetic instructions
Bcd arithmetic instructionsBcd arithmetic instructions
Bcd arithmetic instructions
 
Arithmetic instrctions
Arithmetic instrctionsArithmetic instrctions
Arithmetic instrctions
 
15CS44 MP & MC Module 2
15CS44 MP & MC Module  215CS44 MP & MC Module  2
15CS44 MP & MC Module 2
 
1344 Alp Of 8086
1344 Alp Of 80861344 Alp Of 8086
1344 Alp Of 8086
 
microcomputer architecture - Arithmetic instruction
microcomputer architecture - Arithmetic instructionmicrocomputer architecture - Arithmetic instruction
microcomputer architecture - Arithmetic instruction
 
Chap 3_2.ppt
Chap 3_2.pptChap 3_2.ppt
Chap 3_2.ppt
 
Mastering Assembly Language: Programming with 8086
Mastering Assembly Language: Programming with 8086Mastering Assembly Language: Programming with 8086
Mastering Assembly Language: Programming with 8086
 
Introduction of 8086 micro processor .
Introduction of 8086 micro processor .Introduction of 8086 micro processor .
Introduction of 8086 micro processor .
 
Chap3 8086 artithmetic
Chap3 8086 artithmeticChap3 8086 artithmetic
Chap3 8086 artithmetic
 
8086 ins2 math
8086 ins2 math8086 ins2 math
8086 ins2 math
 
Chapter 3 8086 ins2 math
Chapter 3 8086 ins2 mathChapter 3 8086 ins2 math
Chapter 3 8086 ins2 math
 
Instruction set of 8086
Instruction set of 8086Instruction set of 8086
Instruction set of 8086
 
Instructionsetof8086 180224060745(3)
Instructionsetof8086 180224060745(3)Instructionsetof8086 180224060745(3)
Instructionsetof8086 180224060745(3)
 
DAA AND DAS
DAA AND DASDAA AND DAS
DAA AND DAS
 
Instruction 4.pptx
Instruction 4.pptxInstruction 4.pptx
Instruction 4.pptx
 
Module 2 (1).pptx
Module 2 (1).pptxModule 2 (1).pptx
Module 2 (1).pptx
 
Mod-2.pptx
Mod-2.pptxMod-2.pptx
Mod-2.pptx
 

Recently uploaded

High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdfankushspencer015
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...ranjana rawat
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduitsrknatarajan
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)simmis5
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 

Recently uploaded (20)

High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduits
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 

Microprocessor 8086 instruction description

  • 1. Assembler & Microprocessor Emulator 1 8086 Microprocessor 1. Assembler 2. Emulator • An Assembler program is used to translate the assembly language mnemonics for instructions to the corresponding binary codes. • On the first pass through the source program, the assembler determines the displacement of named data items, the offset of labels, etc. and puts this information in a symbol table. • On the second pass through the source program, the assembler produces the binary code for each instruction and inserts the offsets, etc., that it calculated during the first pass. • One such assembler is EMU8086- Assembler & Microprocessor Emulator 4.08 Dheeraj Suri
  • 2. Assembler & Microprocessor Emulator 2 8086 Microprocessor 1. Assembler 2. Emulator • Another way to run your program is through Emulator, such as EMU8086. An Emulator is a mixture of hardware and Software. • Hardware of Emulator is a multiwire cable which connects the host system to the system being developed. A plug at the end of the cable is plugged into the prototype system in place of its microprocessor. Through this connection the software of emulator allows you to download your object code program into RAM in the system being tested and run it. • Emulator allows you to run programs, examine and change the contents of registers, examine and change the contents of memory locations, and insert breakpoints in the system. EMU8086- Assembler & Microprocessor Emulator 4.08 Dheeraj Suri
  • 3. Instruction Descriptions 3 8086 Microprocessor AAA – ASCII Adjust for Addition Numerical data coming into computer from a terminal is usually in ASCII code. In this code, the numbers 0 to 9 are represented by ASCII codes 30h to 39h. The 8086 allows you to add the ASCII codes for two decimal digits without masking off the “3” in the upper nibble of each. After the addition, the AAA instruction is used to make sure the result is correct unpacked BCD. Dheeraj Suri ASCII stands for American Standard Code for Information Interchange. Computers can only understand numbers, so an ASCII code is the numerical representation of a character such as 'a' or '@' or an action of some sort.
  • 4. Instruction Descriptions 4 8086 Microprocessor AAA – ASCII Adjust for Addition Example: Dheeraj Suri The AAA instruction works only on AL Register. Flags Affected: AF, CF. ; Assume AL = 0011 0101, ASCII 5 ; BL = 0011 1001, ASCII 9 ADD AL,BL ; Result: AL = 0110 1110 = 6Eh, which is incorrect BCD AAA ; Now AL = 00000100, unpacked BCD 4.CF = 1 indicates answer is 14 decimal. OR AL,30h ; Now AL = 0011 0100 = 34h, The ASCII Code for 4 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 AF CF
  • 5. Flash Back – what is BCD ? 5 8086 Microprocessor BCD – Binary Coded Decimal Binary-coded decimal (BCD) is a class of binary encodings of decimal numbers where each decimal digit is represented by a fixed number of bits, usually four or eight. As most computers deal with data in 8-bit bytes, it is possible to use one of the following methods to encode a BCD number: Unpacked: each numeral is encoded into one byte, with four bits representing the numeral and the remaining bits having no significance. Packed: two numerals are encoded into a single byte, with one numeral in the least significant nibble (bits 0 through 3) and the other numeral in the most significant nibble (bits 4 through 7). Dheeraj Suri
  • 6. Flash Back – what is BCD ? 6 8086 Microprocessor BCD – Binary Coded Decimal Example: encoding the decimal number 91D Using unpacked BCD Using packed BCD, the same number would fit into a single byte. Dheeraj Suri Decimal 9 1 Binary 0000 1001 0000 0001 Decimal 9 1 Binary 1001 0001
  • 7. Instruction Descriptions 7 8086 Microprocessor AAD – BCD-to- Binary Convert before Division AAD converts two unpacked BCD digits in AH and AL to the equivalent binary number in AL. The adjustment must be made before dividing the two unpacked BCD digits in AX by an unpacked BCD byte. After the division, AL will contain the unpacked BCD quotient and AH will contain the unpacked BCD remainder. Note: If an attempt is made to divide by 0, the 8086 will do a type 0 interrupt. Dheeraj Suri Flags affected : PF, SF, and ZF are updated. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 SF ZF PF
  • 8. Instruction Descriptions 8 8086 Microprocessor AAD – BCD-to- Binary Convert before Division Example: Dheeraj Suri Flags affected : PF, SF, and ZF are updated. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 SF ZF PF ;AX = 0607h unpacked BCD for 67 ; decimal CH = 09h , now adjust to ; binary AAD ; Result: AX = 0043 = 43h = 67 D DIV CH ; Divide AX by unpacked BCD in CH ; Quotient : AL = 07 unpacked BCD ;Remainder: AH = 04 unpacked BCD ; Flags undefined after DIV
  • 9. Instruction Descriptions 9 8086 Microprocessor AAM – BCD Adjust after Multiply Before you can multiply two ASCII digits, you must first mask the upper 4 bits of each. This leaves unpacked BCD (one BCD digit per byte) in each byte. After two unpacked BCD digits are multiplied, the AAM instruction is used to adjust the product of two unpacked BCD digits in AX. AAM instruction works only after the multiplication of two un-packed BCD bytes, and it works only on an operand in AL. Dheeraj Suri Flags affected : PF, SF, and ZF are updated. But AF, CF, and OF are left undefined. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 SF ZF PF
  • 10. Instruction Descriptions 10 8086 Microprocessor AAM – BCD Adjust after Multiply Dheeraj Suri Flags affected : PF, SF, and ZF are updated. But AF, CF, and OF are left undefined. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 SF ZF PF ; AL = 00000101 = unpacked BCD 5 ; BH = 00001001 = unpacked BCD 9 MUL BH ; AL X BH ; result in AX ; AX = 00000000 00101101 = 002D h AAM ; AX = 00000100 00000101 = 0405 h ; which is an unpacked BCD for 45. ; if ASCII codes for the result are desired, ; the next instruction ought to be used. OR AX, 3030H ; Put 3 in upper nibble of each byte. ; AX = 00110100 00110101 = 3435 h ; which is ASCII code for 45.
  • 11. Instruction Descriptions 11 8086 Microprocessor AAS – ASCII Adjust for Subtracti on Numerical data coming into a computer from a terminal is usually in ASCII code. In this code the numbers 0 to 9 are represented by the ASCII codes 30H to 39H. The 8086 allows you to subtract the ASCII codes for two decimal digits without masking the “3” in the upper nibble of each. The AAS instruction is then used to make sure the result is the correct unpacked BCD. Dheeraj Suri Flags affected : AF and CF are updated, but OF, PF, SF and ZF are left undefined. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 AF CF
  • 12. Instruction Descriptions 12 8086 Microprocessor AAS – ASCII Adjust for Subtracti on Dheeraj Suri Flags affected : AF and CF are updated, but OF, PF, SF and ZF are left undefined. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 AF CF ; ASCII 9 – ASCII 5 (9 – 5) ; AL = 00111001 = 39 H = ASCII 9 ; BL = 00110101 = 35 H = ASCII 5 SUB AL,BL ; Result: AL = 00000100 = BCD 04, CF = 0 AAS ; Result; AL = 00000100 = BCD 04 ; and CF = 0; no borrow required ; ASCII 5 – ASCII 9 (5 – 9) ; Assume AL = 00110101 = 35h = ; ASCII 5 and BL = 00111001 = 39h = ASCII 9
  • 13. Instruction Descriptions 13 8086 Microprocessor AAS – ASCII Adjust for Subtracti on Dheeraj Suri Flags affected : AF and CF are updated, but OF, PF, SF and ZF are left undefined. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 AF CF SUB AL, BL ; Result: AL = 11111100 = -4 ; in 2’s complement and CF = 1 AAS ; Result: AL = 00000100 =BCD04 ; and CF = 1; borrow needed The AAS instruction leaves the correct unpacked BCD result in the low nibble of AL and resets the upper nibble of AL to all 0’s. If one wants to send the result back to a CRT terminal, one can OR AL with 30H to produce the correct ASCII code for the result. The AAS instruction works only on the AL register.
  • 14. Instruction Descriptions 14 8086 Microprocessor ADC – Add with Carry; ADD – Add These instructions add a number from some source to a number from some destination and put the result in specified destination. The Add with Carry instruction, ADC, also adds the status of the carry flag into the result. The source may be an immediate number, a register, or a memory location specified by any one of the 24 addressing modes. The destination may be a register or a memory location specified by any one of the 24 addressing modes. The source and the destination in an instruction cannot both be memory locations and they must be of same type. Dheeraj Suri Flags affected : AF, CF, OF , PF , SF, ZF 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 OF SF ZF AF PF CF
  • 15. Instruction Descriptions 15 8086 Microprocessor ADC – Add with Carry; ADD – Add If one wants to add a byte to a word, one must copy the byte to a word location and fill the upper byte of the word with 0’s before adding. Examples(CODING): Dheeraj Suri Flags affected : AF, CF, OF , PF , SF, ZF 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 OF SF ZF AF PF CF ADD AL, 74H ; Add immediate number 74H ; to contents of AL. Result in ; AL ADC CL, BL ; Add contents of BL plus carry ; status to contents of CL ADD DX, BX ; Add contents of BX to contents ; of DX
  • 16. Instruction Descriptions 16 8086 Microprocessor ADC – Add with Carry; ADD – Add Examples(CODING)(continued): Dheeraj Suri Flags affected : AF, CF, OF , PF , SF, ZF 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 OF SF ZF AF PF CF ADD DX, [SI] ; Add word from memory at offset [SI] in DS to contents of DX ADC AL, PRICES[BX] ;ADD byte from effective address ;PRICES[BX] plus carry status to ;contents of AL ADD PRICES[BX],AL ;Add contents of AL to contents ; of memory location at effective ; address PRICES[BX]
  • 17. Instruction Descriptions 17 8086 Microprocessor ADC – Add with Carry; ADD – Add Examples(NUMERICAL): Dheeraj Suri Flags affected : AF, CF, OF , PF , SF, ZF 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 OF SF ZF AF PF CF ; Addition of unsigned ; numbers CL = 01110011 = ; 115D + BL=01001111 = ; 79D Result in CL ADD CL, BL ; CL = 11000010 = 194D ; Addition of signed numbers ; CL = 01110011 = + 115 D ; +BL = 01001111 = + 79D ; Result in CL ADD CL, BL ; CL = 11000010 = -62D – incorrect because the result is too large to fit in 7 bits.
  • 18. Instruction Descriptions 18 8086 Microprocessor ADC – Add with Carry; ADD – Add Flag results for signed addition, Example: Dheeraj Suri Flags affected : AF, CF, OF , PF , SF, ZF 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 OF SF ZF AF PF CF CF = 0 No Carry out of bit 7. PF = 0 Result has odd parity. AF = 1 Carry was produced out of bit 3. ZF = 0 Result in destination was not 0. SF = 1 Copies most significant bit of result; indicates negative result if you are adding signed numbers OF = 1 Set to indicate that the result of addition was too large to fit in the lower 7 bits of the destination used to represent the magnitude of a signed number. In other words, the result was greater than +127D, so the result overflowed into the sign bit position and -
  • 19. Instruction Descriptions 19 8086 Microprocessor ADC – Add with Carry; ADD – Add Flag results for signed addition, Example: Dheeraj Suri Flags affected : AF, CF, OF , PF , SF, ZF 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 OF SF ZF AF PF CF OF = 1 Incorrectly indicated that the result was negative. If you are adding two signed 16-bit values, the OF will be set if the magnitude of the result is too large to fit in the lower 15 bits of the destination. NOTE: PF is meaningful only for an 8-bit result. AF is set only by a carry out of bit 3. Therefore, the DAA instruction cannot be used after word additions to convert the result to correct BCD.
  • 20. Instruction Descriptions 20 8086 Microprocessor AND – AND correspon ding Bits of Two operands - AND Destinati on, Source This instruction ANDs each bit in a source byte or word with the same number bit in a destination byte or word. The result is put in the specified destination. The contents of the specified source will not be changed. The result for each bit position will follow the truth table for a two-input AND gate. In other words, a bit in the specified destination will be a 1 only if that bit is a 1 in both the source and the destination operands. Therefore, a bit can be masked(reset) by ANDing it with 0. Dheeraj Suri Flags affected : PF, SF, and ZF are updated by AND. But CF and OF are both 0. AF is undefined. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 0 SF ZF PF 0
  • 21. Instruction Descriptions 21 8086 Microprocessor AND – AND correspon ding Bits of Two operands - AND Destinati on, Source The source operand can be an immediate number, the contents of a register, or the contents of a memory location specified by one of the 24 addressing modes. The destination can be a register or a memory location. The source and the destination cannot both be memory locations in the same instruction. CF and OF are both 0 after AND. PF, SF, and ZF are updated by AND. AF is undefined. Note that PF has meaning only for an 8-bit operand. Dheeraj Suri Flags affected : PF, SF, and ZF are updated by AND. But CF and OF are both 0. AF is undefined. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 0 SF ZF PF 0
  • 22. Instruction Descriptions 22 8086 Microprocessor AND – AND correspon ding Bits of Two operands - AND Destinati on, Source EXAMPLES(CODING): Dheeraj Suri Flags affected : PF, SF, and ZF are updated by AND. But CF and OF are both 0. AF is undefined. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 0 SF ZF PF 0 ; AND word in DS at offset[SI] ; with word in CX register AND CX,[SI] ; Result in CX Register AND BH, CL ; AND byte in CL with byte in BH ; Result in BH ; AND words in BX with immediate AND BX, 00FFH ; 00FFH. Masks upper byte, leaves lower byte unchanged.
  • 23. Instruction Descriptions 23 8086 Microprocessor AND – AND correspon ding Bits of Two operands - AND Destinati on, Source EXAMPLES(NUMERICAL): Dheeraj Suri Flags affected : PF, SF, and ZF are updated by AND. But CF and OF are both 0. AF is undefined. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 0 SF ZF PF 0 ; BX = 10110011 01011110 AND BX, 00FFH ; Mask out upper 8 bits of BX ; Result: BX = 00000000 01011110 ; CF, OF, PF, SF, ZF = 0
  • 24. Instruction Descriptions 24 8086 Microprocessor CALL – Call a procedure . The CALL instruction is used to transfer execution to a sub-program or procedure. There are two basic types of calls, near and far. A near call is a call to a procedure which is in the same code segment as the CALL instruction. When the 8086 executes a near CALL instruction, it decrements the stack pointer by 2 and copies the offset of the next instruction after the CALL onto the stack. This offset saved on the stack is referred to as return address, because this is the address that execution will return to after the procedure executes. A near CALL instruction will also load the instruction pointer with the offset of the first instruction in the procedure. A RET instruction at the end of the procedure - Dheeraj Suri
  • 25. CALL – Call a procedure 25 8086 Microprocessor -- Will return execution of the instruction after the call by copying the offset saved on the stack back to IP. A far call is a call to a procedure which is in different segment from the one that contains the CALL instruction. When the 8086 executes a far call, it decrements the stack pointer by 2 and copies the contents of the CS register to the stack. It then decrements the stack pointer by 2 again and copies the offset of the instruction after the CALL instruction to the stack. Finally it loads CS with the segment base of the segment which contains the procedure, and loads IP with the offset of the first instruction of the procedure in that segment. A RET instruction at the end of the procedure will return execution to the next instruction after the CALL by resorting the saved values of CS and IP from the stack. Dheeraj Suri
  • 26. CALL – Call a procedure 26 8086 Microprocessor Examples: Dheeraj Suri CALL MULTO ; A direct within-segment (near or intra- ;segment) call. MULTO is the name of the ;procedure. The assembler determines the ;displacement of MULTO from the instruction ;after the CALL and codes this displacement in ;as part of the instruction. Call BX ; An indirect within-segment near or intra- segment ; call. BX contains the offset of the first instruction ; of the procedure. Replaces the contents of IP with contents of register BX. CALL WORD PTR (BX) ; An indirect within-segment near or Intra- ;segment call. Offset of first instruction of ;procedure is in two memory addresses in DS. ;Replaces contents IP with contents of word ;memory location in DS pointed to by BX.
  • 27. CALL – Call a procedure 27 8086 Microprocessor Examples(continued): Dheeraj Suri CALL SMART- DIVIDE ;A direct call to another segment – far or ;intersegment call. SMART-DIVIDE is the name ;of the procedure. The procedure must be ;declared far with SMART_DIVIDE PROC FAR ;at its start. The Assembler will determine the ;code segment base for the segment which ;contains the procedure and the offset of the ;start of the procedure. It will put these values ;in as part of the instruction code. CALL DWORD PTR[BX] ; An indirect call to another segment – far or ;intersegment call. New Values for CS and IP ;are fetched from four memory locations in DS. ;The new value for CS is fetched from [BX] and ;[BX+1]; the new IP is fetched from [BX+2] ;and [BX+3].
  • 28. Instruction Descriptions 28 8086 Microprocessor CBW- Convert Signed Byte to Signed Word This instruction copies the sign of a byte in AL to all the bits in AH. AH is then said to be the sign extension of AL. The CBW operation must be done before a signed byte in AL can be divided by another signed byte with the IDIV instruction. CBW affects no flags Dheeraj Suri Flags affected : No Flags are affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
  • 29. Instruction Descriptions 29 8086 Microprocessor CBW- Convert Signed Byte to Signed Word Example: More examples are illustrated in the IDIV instruction in the future slides. Dheeraj Suri Flags affected : No Flags are affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 ;AX = 00000000 10011011 = -155 D CBW ;Convert signed byte in AL to signed ; word in AX ;Result: AX = 11111111 10011011 = ; -155 D
  • 30. Instruction Descriptions 30 8086 Microprocessor CLC – Clear the Carry Flag (CF) This instruction resets the carry flag to 0. No other flags are affected. Example: CLC Dheeraj Suri Flags affected : CF. No other Flags are Affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 CF
  • 31. Instruction Descriptions 31 8086 Microprocessor CLD – Clear Direction Flag This instruction resets the direction flag to 0. No other flags are affected. If the direction flag is reset, SI and DI will automatically be incremented when one of the string instructions, such as MOVS, CMPS, or SCAS, executes. Example: Dheeraj Suri Flags affected : DF. No other Flags are Affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 DF CLD ;Clear direction flag so that string ; pointers auto-increment after ; each string operation
  • 32. Instruction Descriptions 32 8086 Microprocessor CLI – Clear Interrupt Flag This instruction resets the interrupt flag to 0. No other flags are affected. If the interrupt flag is reset, the 8086 will not respond to an interrupt signal on its INTR input. The CLI instruction, however, has no effect on the non-maskable interrupt input, NMI. Dheeraj Suri Flags affected : IF. No other Flags are Affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 IF
  • 33. Instruction Descriptions 33 8086 Microprocessor CMC – Complem ent the Carry Flag If the Carry flag (CF) is a 0 before this instruction, it will be set to a 1 after the instruction. If the carry flag is 1 before this instruction, it will be reset to 0 after the instruction executes. Obviously CMC affects only the Carry Flag. Example: CMC ; Invert the carry flag. Dheeraj Suri Flags affected : CF. No other Flags are Affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 CF
  • 34. Instruction Descriptions 34 8086 Microprocessor CMP – Compare Byte or Word – CMP Destinati on, Source Compares a byte/word from the specified source with a byte/word from the specified destination. The source can be a an immediate number, a register, or a memory location. The destination can be a register or a memory location. The source and destination cannot both be memory locations in the same instruction. The comparison is actually done by subtracting the source byte or word from the destination byte or word. The source and the destination are not changed, but the flags are set to indicate the results of comparison. AF, OF,SF, ZF, PF, and CF are updated by the CMP instruction. Dheeraj Suri Flags affected : AF, OF, SF, ZF, PF and CF are updated. Rest flags are unaffected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 OF SF ZF AF PF CF
  • 35. Instruction Descriptions 35 8086 Microprocessor CMP – Compare Byte or Word – CMP Destinati on, Source For the instruction CMP CX, BX ; CF, ZF, and SF will be left as follows: Dheeraj Suri Flags affected : AF, OF, SF, ZF, PF and CF are updated. Rest flags are unaffected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 OF SF ZF AF PF CF CF ZF SF CX = BX 0 1 0 ; Result of subtraction ; is 0 CX > BX 0 0 0 ;No borrow required, so ; CF = 0 CX < BX 1 0 1 ; Subtraction ; required ; borrow, so CF = 1
  • 36. Instruction Descriptions 36 8086 Microprocessor CMP – Compare Byte or Word – CMP Destinati on, Source Example: Dheeraj Suri Flags affected : AF, OF, SF, ZF, PF and CF are updated. Rest flags are unaffected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 OF SF ZF AF PF CF CMP AL,01H ; Compare immediate number ; 01H with byte in AL CMP BH, CL ; Compare byte in CL with byte in ; BH CMP CX, TEMP_MIN ; Compare word in DS at ; displacement TEMP_MIN with word ; in CX CMP TEMP_MAX , CX ;Compare CS with word in DS at ; displacement TEMP_MAX
  • 37. Instruction Descriptions 37 8086 Microprocessor CMP – Compare Byte or Word – CMP Destinati on, Source Example: Note: The Compare instructions are often used with the conditional Jump instruction. For Example: Dheeraj Suri Flags affected : AF, OF, SF, ZF, PF and CF are updated. Rest flags are unaffected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 OF SF ZF AF PF CF CMP PRICES[BX], 49H ; Compare immediate 49H ; with byte at offset [BX] in ; array PRICES CMP BX, CX JAE TARGET ; Jump to target if BX is above or ; equal to CX
  • 38. Instruction Descriptions 38 8086 Microprocessor CMPS/CM PSB/CMP SW – Compare String Bytes or String Words The CMPS instruction can be used to compare a byte/word in one string with a byte/word in another string. SI is used to hold the offset of a byte or word in the source string, and DI is used to hold the offset of a byte or word in the other string. The comparison is done by subtracting the byte or word pointed to by DI from the byte or word pointed to by SI. The AF, CF, OF, PF, SF and ZF flags are affected by the comparison, but neither operand is affected. ---- contd. Dheeraj Suri Flags affected : AF,CF,OF,PF,SF and ZF are updated. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 OF SF ZF AF PF CF
  • 39. Instruction Descriptions 39 8086 Microprocessor CMPS/CM PSB/CMP SW – Compare String Bytes or String Words After the comparison, SI and DI will automatically be incremented or decremented to point to the next elements in the two strings. If the direction flag has previously been set to a 1 with an STD instruction, then SI and DI will automatically be decremented by 1 for a byte string or by 2 for word string. If the direction flag has been previously set to 0 with a CLD instruction, SI and DI will automatically be incremented after the compare. They will be incremented by 1 for byte strings and by 2 for word strings. The string pointed to by DI must be in the extra segment, the string pointed to by SI must be in the data segment. Dheeraj Suri Flags affected : AF,CF,OF,PF,SF and ZF are updated. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 OF SF ZF AF PF CF
  • 40. Instruction Descriptions 40 8086 Microprocessor CMPS/CM PSB/CMP SW – Compare String Bytes or String Words The CMPS instruction can be used with a REPE, or REPNE prefix to compare all the elements of a string. Example: Dheeraj Suri Flags affected : AF,CF,OF,PF,SF and ZF are updated. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 OF SF ZF AF PF CF MOV SI, OFFSET FIRST_STRING ; Point SI at the ; source string MOV DI, OFFSET SECOND_STRING ; Point DI at destination ; string CLD ; DF cleared, so SI & DI ; would auto increment ; after compare MOV CX,100 ; Put number of string ; elements in CX REPE CMPSB ; Repeat the comparison of ; string bytes until end of ; string or until compared ; bytes are not equal
  • 41. Instruction Descriptions 41 8086 Microprocessor CMPS/CM PSB/CMP SW – Compare String Bytes or String Words -- NOTE: CX functions as a counter which the REPE prefix will cause to be decremented after each compare. The B attached to the CMPS tells the assembler that the strings are of type byte. If you want to tell the assembler that strings are of type word, write the instruction as CMPSW. The REPE CMPSW instruction will cause the pointers in SI and DI to be incremented by 2 after each compare if the direction flag is cleared or decremented by 2 if the direction flag is set. Dheeraj Suri Flags affected : AF,CF,OF,PF,SF and ZF are updated. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 OF SF ZF AF PF CF
  • 42. Instruction Descriptions 42 8086 Microprocessor CWD – Convert Signed Word to signed double word CWD copies the sign bit of a word in AX to all the bits of the DX register. In other words, it extends the sign of AX into all of DX. The CWD operation must be done before a signed word in AX can be divided by another signed word with the IDIV instruction. CWD affects no flags. Example: --- contd. Dheeraj Suri Flags affected : No Flags are Affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
  • 43. Instruction Descriptions 43 8086 Microprocessor CWD – Convert Signed Word to signed double word Example: Dheeraj Suri Flags affected : No Flags are Affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 ; DX = 00000000 00000000 ; AX= 11110000 11000111 ; = -3897 decimal CWD ; Convert signed word in AX to ; signed double word in DX:AX ; Result: DX = 11111111 11111111 ; AX = 11110000 11000111 ; = -3897 decimal
  • 44. Instruction Descriptions 44 8086 Microprocessor DAA – Decimal Adjust AL after BCD Addition This instruction is used to make sure the result of adding two packed BCD numbers is adjusted to be a legal BCD number. The result of addition must be in AL for DAA to work correctly. If the lower nibble in AL after addition is greater than 9 or AF was set by the addition, then the DAA instruction will add 6 to the lower nibble in AL. If the result in the upper nibble is now greater than 9 or if the carry flag was set by the addition or correction, then the DAA instruction will add 60H to AL Dheeraj Suri Flags affected : DAA instruction updates AF, CF, PF, and ZF. OF is undefined after the DAA instruction. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 XX ZF AF PF CF
  • 45. Instruction Descriptions 45 8086 Microprocessor DAA – Decimal Adjust AL after BCD Addition Examples: Dheeraj Suri Flags affected : DAA instruction updates AF, CF, PF, and ZF. OF is undefined after the DAA instruction. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 XX ZF AF PF CF ; AL = 0101 1001 = 59 BCD ; BL = 0011 0101 = 35 BCD ADD AL,BL ;AL = 1000 1110 = 8EH DAA ; Add 0110 because 1110 > 9 ;AL = 1001 0100 = 94 BCD ;AL= 1000 1000 = 88 BCD ;BL = 0100 1001 =49 BCD ADD AL,BL ;AL = 1101 0001, AF = 1 DAA ;Add 0110 because AF = 1 ;AL = 1101 0111 = D7h
  • 46. Instruction Descriptions 46 8086 Microprocessor DAA – Decimal Adjust AL after BCD Addition Examples: (continued). A decimal up-counter can be implement using the DAA instruction, the code shown in next slide. Dheeraj Suri Flags affected : DAA instruction updates AF, CF, PF, and ZF. OF is undefined after the DAA instruction. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 XX ZF AF PF CF ; 1101 > 9 so add 0110 0000 ; AL = 0011 0111 = 37 BCD, CF = 1
  • 47. Instruction Descriptions 47 8086 Microprocessor DAA – Decimal Adjust AL after BCD Addition Examples: (continued). Dheeraj Suri Flags affected : DAA instruction updates AF, CF, PF, and ZF. OF is undefined after the DAA instruction. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 XX ZF AF PF CF MOV COUNT,00h ;Initialize count in memory ; location to 0 ; Other instruction here MOV AL, COUNT ;Bring count into AL to work on ADD AL,01h ; Can also count up by 2, by 3. or ; by some other number using the ; ADD instruction DAA ;Decimal adjust the result MOV COUNT,AL ;Put decimal result back in ; memory
  • 48. Instruction Descriptions 48 8086 Microprocessor DAS – Decimal Adjust after BCD Subtracti on This instruction is used after subtracting two packed BCD numbers to make sure the result is correct packed BCD. The result of subtraction must be in AL for DAS to work correctly. If the lower nibble in AL after subtraction is greater than 9 or the AF was set by the subtraction, then DAS would subtract 6 from the lower nibble of AL. If the result in the upper nibble is now greater than 9 or if the carry flag was set, the DAS instruction will subtract 60 from AL. Examples in the next slide. Dheeraj Suri Flags affected : DAS instruction updates AF, CF, SF, PF, and ZF. OF is undefined after the DAS instruction. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 XX SF ZF AF PF CF
  • 49. Instruction Descriptions 49 8086 Microprocessor DAS – Decimal Adjust after BCD Subtracti on Examples: Dheeraj Suri Flags affected : DAS instruction updates AF, CF, SF, PF, and ZF. OF is undefined after the DAS instruction. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 XX SF ZF AF PF CF ;AL = 1000 0110 = 86 BCD ;BH = 0101 0111 = 57 BCD SUB AL, BH ; AL = 0010 1111 = 2Fh , CF = 0 DAS ; Lower nibble of the result is 1111 ; so DAS automatically subtracts ; 0000 0110 to give AL = 00101001 ; = 29BCD ; AL = 0100 1001 = 49 BCD ; BH = 0111 0010 = 72 BCD SUB AL,BH ; AL = 11010111 = D7h, CF = 1
  • 50. Instruction Descriptions 50 8086 Microprocessor DAS – Decimal Adjust after BCD Subtracti on Examples: A decimal down counter can be implemented using a DAS instruction, as shown in the next slide. Dheeraj Suri Flags affected : DAS instruction updates AF, CF, SF, PF, and ZF. OF is undefined after the DAS instruction. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 XX SF ZF AF PF CF DAS ; Subtracts 0110 0000 (-60h) ; because 1101 in the upper nibble ; > 9 ; AL = 0111 0111 = 77 BCD , CF = 1 ; CF = 1 means borrow was needed
  • 51. Instruction Descriptions 51 8086 Microprocessor DAS – Decimal Adjust after BCD Subtracti on Examples: Dheeraj Suri Flags affected : DAS instruction updates AF, CF, SF, PF, and ZF. OF is undefined after the DAS instruction. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 XX SF ZF AF PF CF MOV AL, COUNT ; Bring count into AL to work on SUB AL, 01h ;Decrement. Can also count down ;by 2,3 etc., using SUB instruction DAS ;Keep results in BCD format MOV COUNT, AL ; Put new count back in memory
  • 52. Instruction Descriptions 52 8086 Microprocessor DEC – Decrement Destination Register or Memory – DEC Destination This instruction subtracts 1 from the destination word or byte. The destination can be a register or a memory location specified by any one of the 24 memory addressing modes. This instruction does not affect the CF. That means if an 8-bit destination containing 00h or a 16-bit destination containing 0000h is decremented, the result will be FFh or FFFFh with no carry (borrow). Dheeraj Suri Flags affected : AF, OF, PF, SF, and ZF are updated, but CF is not affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 OF SF ZF AF PF
  • 53. Instruction Descriptions 53 8086 Microprocessor DEC – Decrement Destination Register or Memory – DEC Destination Examples: Dheeraj Suri Flags affected : AF, OF, PF, SF, and ZF are updated, but CF is not affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 OF SF ZF AF PF DEC CL ; Subtract 1 from contents of ; CL register DEC BP ; Subtract 1 from contents of BP ; register DEC BYTE PTR[BX] ; Subtract 1 from byte at offset [BX] in DS. The BYTE PTR directive is necessary to tell the ; assembler to put in the correct ; code for decrementing a byte in ; memory, rather than ; decrementing a word. The ; instruction essentially says, ; “Decrement the byte in memory ; pointed to by the offset in BX”
  • 54. Instruction Descriptions 54 8086 Microprocessor DEC – Decrement Destination Register or Memory – DEC Destination Examples(continued): Dheeraj Suri Flags affected : AF, OF, PF, SF, and ZF are updated, but CF is not affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 OF SF ZF AF PF DEC WORD PTR[BP] ;Subtract 1 from a word at offset ; [BP] in SS. The WORD PTR ; directive tells the assembler to ; put in the code for decrementing ; a word pointed to by the ; contents of BP. An offset in BP ; will be added to the SS register ; contents to produce the physical ; address DEC TOMATO_CAN _COUNT ;Subtract 1 from byte or word ; named TOMATO_CAN_COUNT in DS.
  • 55. Instruction Descriptions 55 8086 Microprocessor DIV – Unsigned Divide – DIV source This instruction is used to divide an unsigned word by a byte or to divide an unsigned doubleword (32 bits) by a word. When a word is divided by a byte, the word must be in the AX register. The divisor can be a register or in a memory location. After the division, AL will contain an 8-bit result (quotient), and AH will contain a 8-bit remainder. When a double-word is divided by a word, the MSW(Most significant Word) of the doubleword must be in DX, and the LSW of the doubleword must be in AX. After the result, AX will contain the 16-bit result(quotient), and DX will contain 16-bit remainder. If one wants to divide a byte by a byte, one must first put the dividend byte in AL and fill AH with all 0’s. The SUB AH,AH instruction is a quick way to do this. Dheeraj Suri Flags affected : The CF, OF, SF, ZF, AF, and PF flags are undefined. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 IF TF
  • 56. Instruction Descriptions 56 8086 Microprocessor DIV – Unsigned Divide – DIV source Examples(syntax): Dheeraj Suri Flags affected : The CF, OF, SF, ZF, AF, and PF flags are undefined DIV BL ;Divide word in AX by byte in BL. ;Quotient in AL, remainder in AH DIV CX ;Divide doubleword in DX and AX ; by word in CX. Quotient in AX, Remainder in DX. DIV SCALE[BX] ;AX/(byte at effective address SCALE[BX] if SCALE[BX] is of type byte or (DX and AX)/(word at effective address SCALE[BX]) if SCALE[BX] is of type word. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 IF TF
  • 57. Instruction Descriptions 57 8086 Microprocessor DIV – Unsigned Divide – DIV source Examples(Numerical): Dheeraj Suri Flags affected : The CF, OF, SF, ZF, AF, and PF flags are undefined ;AX = 37D7h = 14,295 D ;BH = 97h = 151 D DIV BH ; AX/BH, AL = quotient = 5Eh = 94D, AH = remainder = 65h = 101D 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 IF TF
  • 58. Instruction Descriptions 58 8086 Microprocessor ESC – Escape This instruction is used to pass instructions to a co-processor, such as the 8087 math processor which shares the address and data bus with 8086. Instructions for the co-processor are represented by a 6-bit code embedded in the escape instruction. As the 8086 fetches instruction bytes, the co-processor also catches these bytes from the data bus and puts them in its queue. Dheeraj Suri
  • 59. Instruction Descriptions 59 8086 Microprocessor HLT – Halt Processing The HLT instruction will cause the 8086 to stop fetching and executing instructions. The 8086 will enter a halt state. The only ways to get the processor out of the halt state are with an interrupt signal on the INTR pin, an interrupt signal on the NMI pin, or a reset signal on the RESET input. Dheeraj Suri
  • 60. Instruction Descriptions 60 8086 Microprocessor IDIV – Divide by signed byte or word – IDIV source This instruction is used to divide a signed word by a signed byte, or to divide a signed doubleword (32bits) by a signed word. When dividing a signed word by a signed byte, the world must be in the AX register. The divisor can be in an 8-bit register or a memory location. After the division, AL will contain the signed result (quotient), and AH will contain the signed remainder. The sign of the remainder will be the same as the sign of the dividend. If an attempt is made to divide by 0, the quotient is greater than 127 (7Fh), or the quotient is less than -127 (81h), the 8086 will automatically do a type 0 interrupt. If one wants to divide a signed byte by a signed byte, one must first put the dividend byte in AL and fill AH with copies of the sign bit from AL. In other words, if AL is +ve, then AH should be filled with all 0’s . If AL is –ve (sign bit = 1).. Dheeraj Suri
  • 61. Instruction Descriptions 61 8086 Microprocessor IDIV – Divide by Signed Byte or Word – IDIV source --- then AH should be filled with all 1’s. The 8086 convert byte to world instruction, CBW, does this by copying the sign bit of AL to all bits of AH. AH is then said to contain the “sign extension of AL”. Likewise, if one wants to divide a signed word by a signed word, one must put the dividend word in AX and extend the sign of AX to all bits of DX. The 8086 Convert Word to Double word instruction, CWD, will copy the sign bit of AX to all bits of DX. Dheeraj Suri Flags affected : All flags are undefined after a IDIV. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 XX XX XX XX XX XX XX XX XX
  • 62. Instruction Descriptions 62 8086 Microprocessor IDIV – Divide by Signed Byte or Word – IDIV source Examples(Coding): Dheeraj Suri Flags affected : All flags are undefined after a IDIV. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 XX XX XX XX XX XX XX XX XX IDIV BL ; Signed word in AX/signed byte ; in BL IDIV BP ; Signed double-word in DX and AX/signed word IDIV BYTE PTR[BX] ; AX/byte at offset [BX] in DS MOV AL, DIVIDEND ; position byte dividend CBW ; Extend sign of AL into AH IDIV DIVISOR ; Divide by byte divisor
  • 63. Instruction Descriptions 63 8086 Microprocessor IDIV – Divide by Signed Byte or Word – IDIV source Examples(Numerical): Note: The quotient is negative because positive Was divided by negative. The remainder has same sign as dividend (positive) Dheeraj Suri Flags affected : All flags are undefined after a IDIV. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 XX XX XX XX XX XX XX XX XX ; A signed word divided by a ; signed byte ; AX = 00000011 10101011 =03ABh = 39 D ; BL = 11010011 = D3h = -2Dh = -45 decimal IDIV BL ; Quotient: AL = Ech = -14h = -20 decimal ; Remainder: AH = 27h = + 39D
  • 64. Instruction Descriptions 64 8086 Microprocessor IDIV – Divide by Signed Byte or Word – IDIV source Examples(Numerical)- contd.: Note: Although the quotient is actually closer to 13 (12.66667) than to 12, the 8086 truncates it to 12 rather than rounding it to 13. If you want to round the quotient, you can compare the magnitude of the remainder with (divisor/2) and add 1 to the quotient if the remainder is greater than (divisor/2). Note that the sign of the remainder is the same as the sign of the dividend (negative). Dheeraj Suri Flags affected : All flags are undefined after a IDIV. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 XX XX XX XX XX XX XX XX XX ; A signed byte divided by a signed byte ; AX = 11011010= - 26h = -38 D ; CH = 00000011 = +3h = +3D CBW ; Extend sign of AL through AH ; AX = 11111111 11011010 IDIV CH ; Divide AX by CH ; AL = 11110100 = -0Ch = -12 D ; AH = 11111110 = -2h = -2D
  • 65. Instruction Descriptions 65 8086 Microprocessor IMUL – Multiply Signed Numbers – IMUL Source This instruction multiplies a signed byte from some source times a signed byte in AL or a signed word from some source times a signed word in AX. The source can be another register or a memory location specified by any one of the 24 addressing modes (memory addressing). When a byte from some source is multiplied by AL, the signed result will be put in AX. A 16-bit destination is required because the result of multiplying two 8-bit numbers can be as large as 16-bits. When a word from some source is multiplied by AX, the result can be as large as 32 bits. The higher order word of signed result is put in DX, and lower order word is put in AX. If the magnitude of the product doesn’t require all bits of destination, the unused bits will be filled with copies of sign bit. If the upper byte of a 16- bit result or the upper word of a 32-bit result contains only copies of the sign bit (all 0’s or all 1’s ) , then CF and OF will be both 0. if the upper byte of a 16-bit result or the upper word of a 32-bit result contains part of the product, CF and OF will both be 1. One can use the status of the flags to determine whether upper byte or word of the product needs to be kept. One can use the status of these flags to determine whether upper byte or word of the product needs to be kept. If one wants to multiply a signed byte by a signed word, one must first move the byte into a word location and fill the upper byte of the word with copies of the sign bit. If one moves the byte into AL, one can use the 8086 convert byte to word instruction, CBW, to do this. Dheeraj Suri Flags affected : CF and OF are updated. AF, PF, SF and ZF are undefined after IMUL 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 OF CF
  • 66. Instruction Descriptions 66 8086 Microprocessor IMUL – Multiply Signed Numbers – IMUL Source Examples (Coding): Dheeraj Suri Flags affected : CF and OF are updated. AF, PF, SF and ZF are undefined after IMUL 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 OF CF IMUL BH ; Signed byte in AL times ; signed byte in BH. Result in AX. IMUL AX ; AX times AX, result in DX and ; AX ; Multiplying a signed byte by a ; signed word MOV CX, MULTIPLIER ; Load signed word in CX MOV AL, MULTIPLICAND ; Load signed byte in AL CBW ; Extend sign of AL into AH IMUL CX ; Result in DX and AX
  • 67. Instruction Descriptions 67 8086 Microprocessor IMUL – Multiply Signed Numbers – IMUL Source Examples (Numerical): Dheeraj Suri Flags affected : CF and OF are updated. AF, PF, SF and ZF are undefined after IMUL 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 OF CF ; 69 X 14 ; AL = 01000101 = 69 Decimal ; BL = 00001110 = 14 Decimal IMUL BL ; AX = 03C6h = +966 decimal ; MSB = 0, positive result ; magnitude in true form. SF = 0, ; CF, OF = 1 ; -28’ 59 ; AL = 11100100 = -28 decimal ; BL = 00111011 = +59 decimal IMUL BL ; AX = F89Ch = -1652 decimal ; MSB = 1, negative result magnitude, in 2’s compliment ; SF, CF, OF = 1
  • 68. Instruction Descriptions 68 8086 Microprocessor IN – Copy data from a port – IN Accumulato r, Port The IN instruction will copy data from a port to the AL or AX register. If an 8-bit port is read, the data will go to AL. If a 16-bit port is read, the data will go to AX. The IN instruction has two possible formats, fixed port and variable port. For the fixed port type, the 8-bit address of a port is specified directly in the instruction. Examples: Dheeraj Suri Flags affected : The IN instruction do not change any flags. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 IN AL, 0C8h ;Input a byte from port 0C8h to ; AL IN AX, 34h ; Input a word from port 34h to AX A_TO_D EQU 4Ah IN AX, A_TO_D ; Input a word from port 4Ah to ; AX
  • 69. Instruction Descriptions 69 8086 Microprocessor IN – Copy data from a port – IN Accumulato r, Port For the variable-port-type IN instruction, the port address is loaded into the DX register before the IN instruction. Since DX is a 16-bit register, the port address can be any number between 0000h and FFFFh. Therefore, up to 65,536 ports are addressable in this mode. Examples: Dheeraj Suri Flags affected : The IN instruction do not change any flags. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 MOV DX, 0FF78h ; Initialize DX to point to port IN AL, DX ; Input a byte from 8-bit port ; 0FF78h to AL IN AX, DX ; Input a word from 16-bit port ; 0FF78h to AX
  • 70. Instruction Descriptions 70 8086 Microprocessor INC – Increment- INC destination The INC instruction adds 1 to a specified register or to a memory location specified in any one of the 24 addressing modes (memory). Examples: Note: Carry flag is not affected. This means that if an 8-bit destination containing FFh or a 16-bit destination containing FFFFh is incremented, the result will be all 0’s with no Carry Dheeraj Suri Flags affected : AF, OF, PF, SF, and ZF are affected. CF is not affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 OF DF IF TF SF ZF AF PF INC BL ; Add 1 to contents of BL ; register INC CX ; Add 1 to contents of CX register
  • 71. Instruction Descriptions 71 8086 Microprocessor INT – Interrupt Program Execution – INT Type The Term Type in this instruction format refers to a number between 0 and 255 which identifies the interrupt. When an 8086 executes an INT instruction, it will: 1. Decrement the SP by 2 and push the flags onto stack. 2. Decrement the SP by 2 and push contents of CS onto the stack. 3. Decrement the stack pointer by 2 and push the offset of the next instruction after the INT number instruction on to the stack 4. Contd. On next slide. Dheeraj Suri Flags affected : IF and TF are affected. Other flags are not affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 IF TF
  • 72. Instruction Descriptions 72 8086 Microprocessor INT – Interrupt Program Execution – INT Type 4. Get a new value for IP from an absolute memory address of 4 times the type specified in the instruction. 5. Get a new value for CS from an absolute memory address of 4 times the type specified in the instruction plus 2. 6. Reset both IF and TF. Other flags are not affected. Examples: Dheeraj Suri Flags affected : IF and TF are affected. Other flags are not affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 IF TF INT 35 ; New IP from 0008Ch, new CS from 0008Eh INT 3 ; This is a special form which has the single-byte code of CCh. Many systems use this as a break-point instruction. New IP from 0000Ch, new CS from 0000Eh
  • 73. Instruction Descriptions 73 8086 Microprocessor INTO- Interrupt on Overflow If the overflow flag (OF) is set, this instruction will cause the 8086 to do an indirect far call to a procedure you write to handle the overflow condition. Before doing the call, the 8086 will: 1. Decrement the stack pointer by 2 and push the flags onto stack. 2. Decrement the stack pointer, by 2 and push CS onto the stack. 3. Decrement the SP by 2 and push the offset of the next instruction after the INTO instruction onto the stack. 4. Reset TF and IF. Other flags are not affected. To do the call, the 8086 will read a new value for IP from address 00010h and a new value of CS from address 00012h. Dheeraj Suri Flags affected : 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 IF TF INTO ; Call interrupt procedure if OF = 1
  • 74. Instruction Descriptions 74 8086 Microprocessor IRET – Interrupt Return When the 8086 responds to an interrupt signal or to an interrupt instruction, it pushes the flags, the current value of CS, and the current value of IP onto the stack. It then loads CS and IP with the starting address of the procedure which one writes for the response to that interrupt. The IRET instruction is used at the end of the interrupt service procedure to return execution to the interrupted program. To do this return, the 8086 copies the saved value of IP from the stack to IP, the stored value of CS from the stack to CS, and the stored value of the flags back to the flag register. Flags will have the values they had before the interrupt, so any flag settings from the procedure will be lost unless they are specifically saved in some way. Note: The RET instruction should not normally be used to return from interrupt procedures because it doesnot copy the flags from the stack back to the flag register. Dheeraj Suri
  • 75. Instruction Descriptions 75 8086 Microprocessor JA/JNBE – Jump if Above/Ju mp if Not below or Equal The terms above and below are used when referring to the magnitude of unsigned numbers. The number 0111 is above the number 0010. If, after a compare or some other instruction which affects flags, the zero flag and the carry flag are both 0, this instruction will cause execution to jump to a label given in the instruction. If CF and ZF are not both 0, the instruction will have no effect on program execution. The destination label for the jump must be in the range of -128 bytes to +127 bytes from the address of the instruction after the JA. JA/JNBE affects no flags. Dheeraj Suri Flags affected : No flags are affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
  • 76. Instruction Descriptions 76 8086 Microprocessor JA/JNBE – Jump if Above/Ju mp if Not below or Equal Examples: Dheeraj Suri Flags affected : No flags are affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 CMP AX, 4371h ; Compare by subtracting 4371h ; from AX JA RUN_PRESS ; Jump to label RUN_PRESS if AX is ; above 4371h CMP AX, 4371h ; Compare (AX – 4371h) JNBE RUN_PRESS ; jump to label RUN_PRESS if AX ; not below or equal to 4371h
  • 77. Instruction Descriptions 77 8086 Microprocessor JAE/JNB/ JNC – Jump if Above or Equal/Ju mp if Not below/Ju mp if No Carry The three mnemonics represent the same instruction. The terms above and below are used when referring to the magnitude of unsigned numbers. The number 0111 is above the number 0010. If, after a compare or some other instruction which affects flags, the carry flag is 0, this instruction will cause execution to jump to a label given in the instruction. If CF is 1, the instruction will have no effect on the program execution. The destination label for the jump must be in the range of -128 bytes to +127 bytes from the address of the instruction after the JAE. JAE/JNB/JNC affects no flags. Dheeraj Suri Flags affected : No flags are affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
  • 78. Instruction Descriptions 78 8086 Microprocessor JAE/JNB/ JNC – Jump if Above or Equal/Ju mp if Not below/Ju mp if No Carry Examples: Dheeraj Suri Flags affected : No flags are affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 CMP AX,4371h ; Compare (AX – 4371h) JAE RUN_PRESS ; Jump to label RUN_PRESS if AX is ; above or equal to 4371h CMP AX, 4371h ; Compare (AX – 4371h) JNB RUN_PRESS ; Jump to label RUN_PRESS if AX ; not below 4371h ADD AL,BL ; Add two bytes. If result within ; acceptable range continue JNC OK
  • 79. Instruction Descriptions 79 8086 Microprocessor JB/JC/JN AE – Jump if Below/Ju mp if Carry/Ju mp if Not above or Equal These three mnemonics represent the same instruction. Just like previous, the description of these instructions can be understood. Examples: Dheeraj Suri Flags affected : No Flags are affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 CMP AX,4371h ; Compare (AX – 4371h) JB RUN_PRESS ; Jump to label RUN_PRESS if AX below ; 4371h ADD BX,CX ; Add two words and jump to label ERROR_FIX if CF = 1 JC ERROR_FIX CMP AX,4371h ; Compare AX – 4371h JNAE RUN_PRESS ; Jump to label RUN_PRESS if AX ; not above or equal to 4371h
  • 80. Instruction Descriptions 80 8086 Microprocessor JBE/JNA – Jump if Below or Equal/Ju mp if Not above JBE & JNA represent the same instruction. The terms above and equal are used when referring to the magnitude of unsigned numbers. The number 0111 is above the number 0010. If, after a compare or some other instruction which affects flags, either the zero flag or the carry flag is 1, this instruction will cause execution to jump to a label given in the instruction. If CF and ZF are both 0, the instruction will have no effect on program execution. The destination label for the jump must be in the range of -128 bytes to +127 bytes from the address of the instruction after the JBE. JBE/JNA affects no flags. Dheeraj Suri Flags affected : No flags are affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
  • 81. Instruction Descriptions 81 8086 Microprocessor JBE/JNA – Jump if Below or Equal/Ju mp if Not above Examples: Dheeraj Suri Flags affected : No flags are affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 CMP AX, 4371h ; Compare (AX – 4371h) JBE RUN_PRESS ; Jump to label RUN_PRESS ; if AX below or equal to ; 4371h CMP AX, 4371h ; Compare (AX – 4371h) JNA RUN_PRESS ; Jump to label RUN_PRESS if ; AX not above 4371h
  • 82. Instruction Descriptions 82 8086 Microprocessor JCXZ – Jump if CX register is Zero This instruction will cause a jump to a label given in the instruction if the CX register contains all 0’s, execution will simply proceed to the next instruction. Note that this instruction doesnot look at the zero flag when it decides whether to jump or not. The destination label for this instruction must be in the range of -128 to +127 bytes from the address of the instruction after JCXZ instruction. JCXZ affects no flags. Example: Dheeraj Suri Flags affected : No flags are affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 JCXZ SKIP_LOOP ; IF CX = 0, skip the process NXT: SUB [BX], 07h ; Subtract 7 from data value INC BX ; point to next value LOOP NXT ; Loop until CX = 0 SKIP_LOOP: ; Next instruction
  • 83. Instruction Descriptions 83 8086 Microprocessor JE/JZ – Jump if Equal/Ju mp if Zero JE & JZ mnemonics represent the same instruction. If the zero flag is set, this instruction will cause execution to jump to a label given in the instruction. If the zero flag is not 1, execution will simply go on to the next instruction after JE or JZ. The destination label for the JE/JZ instruction must be in the range of -128 to +127 bytes from the address of the instruction after the JE/JZ instruction. JE/JZ affects no flags. Example : (next slide) Dheeraj Suri Flags affected : No flags are affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
  • 84. Instruction Descriptions 84 8086 Microprocessor JE/JZ – Jump if Equal/Ju mp if Zero Dheeraj Suri Flags affected : No flags are affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 NXT: CMP BX, DX ; Compare (BX – DX) JE DONE ; Jump to DONE if BX = DX SUB BX, AX ; Else subtract AX INC CX ; Increment Counter JMP NXT ; Check again DONE: MOV AX, CX ; Copy count to AX IN AL, 8Fh ; Read data from port 8Fh SUB AL, 30h ; Subtract minimum value JZ START_MACHINE ; Jump to label if result of ; subtraction was 0
  • 85. Instruction Descriptions 85 8086 Microprocessor JG/JNLE- Jump if Greater/J ump if Not less than or Equal JG or JNLE represent the same instruction. The terms greater or less are used to refer to the relationship of two signed numbers. Greater means more positive. The number 00000111 is greater than the number 11101010, because in signed notation the second number is negative. This instruction is usually used after a Compare instruction. The instruction will cause a jump to a label given in the instruction if the Zero Flag is 0 and the carry flag is the same as the overflow flag. The destination label must be in the range of -128 bytes to +127 bytes from the address of instruction after JG/JNLE instruction. If the jump is not taken, execution simply goes on to the next instruction after the JG or JNLE instruction. JG/JNLE affects no flags. Dheeraj Suri Flags affected : No flags are affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
  • 86. Instruction Descriptions 86 8086 Microprocessor JG/JNLE- Jump if Greater/J ump if Not less than or Equal Examples: Dheeraj Suri Flags affected : No flags are affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 CMP BL, 39h ; Compare by subtracting 30h ; from BL JG NEXT_1 ; Jump to label if BL more positive than 39h CMP BL, 39h ; Compare by subtracting 39h ; from BL JNLE NEXT_1 ; Jump to label if BL not less than ; or equal to 39h
  • 87. Instruction Descriptions 87 8086 Microprocessor JGE/JNL – Jump if Greater Than or Equal/Ju mp if Not less Than Dheeraj Suri Flags affected : No flags are affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 JGE/JNL both represent the same instruction. The terms greater and less are used to refer to the relationship of two signed numbers. Greater means more positive. The number 00000111 is greater than the number 11101010, because in signed notation the second number is negative. This instruction is usually used after the compare instruction. The instruction will cause a jump to a label given in the instruction if the sign flag is equal to the overflow flag. The destination label must be in the range of -128 bytes to +127 bytes from the address of the instruction after the JGE/JNL instruction. If the jump is not taken, execution simply goes on to the next instruction after the JGE or JNL instruction. JGE/JNL affects no flags. Example (on next slide)
  • 88. Instruction Descriptions 88 8086 Microprocessor JGE/JNL – Jump if Greater Than or Equal/Ju mp if Not less Than Dheeraj Suri Flags affected : No flags are affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 CMP BL, 39h ; Compare by subtracting 39h from BL JGE NEXT_1 ; Jump to label if BL more positive ; than 39h or equal to 39h CMP BL, 39h ; Compare by subtracting 39h from BL JNL NEXT_1 ; Jump to label if BL not less than 39h
  • 89. Instruction Descriptions 89 8086 Microprocessor JL/JNGE – Jump if Less Than/Jump if Not Greater Than or Equal Dheeraj Suri Flags affected : No flags are affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 JL/JNGE both represent the same instruction. The terms greater and less are used to refer to the relationship of two signed numbers. Greater means more positive. The number 00000111 is greater than the number 11101010, because in signed notation the second number is negative. This instruction is usually used after the compare instruction. The instruction will cause a jump to a label given in the instruction if the sign flag is not equal to the overflow flag. The destination label must be in the range of -128 bytes to +127 bytes from the address of the instruction after the JL/JNGE instruction. If the jump is not taken, execution simply goes on to the next instruction after the JL or JNGE instruction. JL/JNGE affects no flags. Example (on next slide)
  • 90. Instruction Descriptions 90 8086 Microprocessor JL/JNGE – Jump if Less Than/Jump if Not Greater Than or Equal Dheeraj Suri Flags affected : No flags are affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 CMP BL, 39h ; Compare by subtracting 39h from BL JL AGAIN ;Jump to label if BL more negative than 39h CMP BL, 39h ; Compare by subtracting 39h from BL JNGE AGAIN ; Jump to label if BL not more positive than 39h or BL not equal to 39h
  • 91. Instruction Descriptions 91 8086 Microprocessor JLE/JNG – Jump if Less Than or Equal/Jump if Not Greater Dheeraj Suri Flags affected : No flags are affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 JLE/JNG both represent the same instruction. The terms greater and less are used to refer to the relationship of two signed numbers. Greater means more positive. The number 00000111 is greater than the number 11101010, because in signed notation the second number is negative. This instruction is usually used after the compare instruction. The instruction will cause a jump to a label given in the instruction if the zero flag is set, or if the sign flag is not equal to the overflow flag. The destination label must be in the range of -128 bytes to +127 bytes from the address of the instruction after the JLE/JNG instruction. If the jump is not taken, execution simply goes on to the next instruction after the JL or JNGE instruction. JLE/JNG affects no flags. Example (on next slide)
  • 92. Instruction Descriptions 92 8086 Microprocessor JLE/JNG – Jump if Less Than or Equal/Jum p if Not Greater Dheeraj Suri Flags affected : No flags are affected. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 CMP BL, 39h ; Compare by subtracting 39h from BL JLE NXT_1 ; Jump to label if BL more than 39h or equal to 39h CMP BL,39h ; Compare by subtracting 39h from BL JNG PRINTER ; Jump to label if BL not more positive than 39h
  • 93. Instruction Descriptions 93 8086 Microprocessor JMP- Unconditio nal Jump to Specified Destination Will always cause the 8086 to fetch the next instruction from the location specified in the instruction rather than from the next location after the JMP instruction. If the destination is in the same code segment as the JMP instruction, then only the instruction pointer will be changed to get to the destination location (near jump). If the destination for the jump instruction is in a segment with a name different from that of the segment containing the JMP instruction, then both the IP and CS segment register contents will be changed to get to the destination location (far jump). The JMP instruction affects no flags. Examples: (next slide) Dheeraj Suri Flags affected : No flags are affected after JMP instruction. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
  • 94. Instruction Descriptions 94 8086 Microprocessor JMP- Unconditio nal Jump to Specified Destination Dheeraj Suri Flags affected : No flags are affected after JMP instruction. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 JMP Continue ; Fetch next instruction from address at label CONTINUE JMP BX ; Replace the contents of IP with ; the contents of BX. BX must first be loaded with the offset of the destination instruction in CS. This is a near jump. It is also referred to as an indirect jump because the new value for IP comes from a register rather than from the instruction itself, as in a direct jump.
  • 95. Instruction Descriptions 95 8086 Microprocessor JMP- Unconditio nal Jump to Specified Destination Dheeraj Suri Flags affected : No flags are affected after JMP instruction. 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 JMP WORD PTR[BX] ; Replace IP with a word to by BX ; in DS. This is an indirect near jump. JMP DWORD PTR[SI] ; Replace IP with a word pointed to by SI in DS. Replace CS with a word pointed to by SI + 2 in DS. This is an indirect far jump.
  • 96. Instruction Descriptions 96 8086 Microprocessor The slides for rest of the instructions are Under construction. Until then students Are advised to refer section 6.2 in Douglas V. Hall! Dheeraj Suri Flags affected : 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 OF DF IF TF SF ZF AF PF CF