Addressing Modes 8085
Addressing Modes 8085
Addressing Modes 8085
For Example:
MVI A,75H (for 8- bit number)
For Example:
LDA 1575H
Load accumulator from the given address data
STA 4565H
Store accumulator at given address
Register Direct Addressing Mode
If 8/16 bit data required for executing the instruction present in register(for
8-bit)/ register pair(for 16-bit) and the name of the register / register pair is
given along with instruction then such type of instructions are called
Register Direct Addressing Mode instruction.
➢ For Example –
MOV C, D
Move data from register D to Register C
Register Indirect Addressing Mode
➢If 8/16 bit data required for executing the instruction present in
memory location and the address of that memory location is
present in register pair and the name of that register pair is given
along with instruction then such type of instructions are called
Register Indirect Addressing mode instruction .
➢For Example :
LDAX B
Load accumulator from the register pair address data.
STAX D
Store accumulator at given register address.
Implicit Addressing Mode
➢ For Example: