Lecture-2
Lecture-2
Language of 8086
Outlines:
• Addressing Mode
• Instructions Set
Intersegment Intrasegment
Intersegment Intrasegment
Direct Direct
Intersegment Intrasegment
Indirect Indirect
9 Microcomputer and Interfacing
Cont..
Intersegment Direct:
The address to which the transfer the control is to be
transferred is in a different segment.
It provides a means for branching from one code
segment to another code segment.
The CS and IP of the destination address are specified
directly in the instructions.
Example: JMP 5000H, 2000H; Jump to effective address
2000H in segment 5000H
10 Microcomputer and Interfacing
Cont..
Intersegment Indirect:
It is passed to the instruction indirectly.
Example:
MOV BX,[2000H]; Copy the 8 –bit content of the memory location, at a displacement
of 2000H from data segment base to CL register
Thank You!