Spread the love
Types of Addressing Modes in 8086:-
There are several addressing modes in Assembly language. Three modes are very important which are.
- Register Addressing.
- Memory Addressing.
- Immediate Addressing.

-
Register Addressing.
- Register Addressing mode is that in which one operand is Register and other operand is Register, constant or expression. Syntax.
-
- Add Ax,6
- Mov Ax,bl
-
- Register Addressing mode is that in which one operand is Register and other operand is Register, constant or expression. Syntax.
3.Memory Addressing.
In this addressing mode, one operand is always memory location and other is Register, Memory Location or constant.
Load R1,@200
Load the content of memory address stored at memory address 200 to the register R1.
4. Direct Addressing.
Direct addressing is a scheme in which the address specifies which memory word or register contains the operand.
e.g
LOAD R1, 100 Load the content of memory address 100 to register R1.
Download Link:-