What is Indirect addressing mode in 8051 microcontroller?

All QuestionsCategory: Embedded SystemWhat is Indirect addressing mode in 8051 microcontroller?
Chetan Shidling Staff asked 5 years ago

I need short information.

1 Answers
Chetan Shidling Staff answered 5 years ago

Here the address of memory location is indirectly provided by a register. The @ sign indicates that the register holds the address of memory location i.e., fetch the content of memory location whose address is provided in the register.

Example:
MOV A, @R0
Copy the content of the memory location whose address is given in the R0 register.