ADDRESSING MODES for 8085
1. Immediate addressing.
2. Register addressing.
3. Direct addressing.
4. Indirect addressing.
Immediate addressing
Load the immediate data into the register, R.
Example: MVI R,data
Register addressing
Data from source register is moved into destination register.
Example: MOV Rd, Rs
Direct addressing
Accepts data from external devices to be stored in the accumulator or sends the data from the accumulator to the external device.
Example: IN 00H or OUT 01H
Indirect Addressing
Here the Effective Address is calculated by the processor. And the contents of the address is used as a second address. At the second address the data is stored.