Warning: Trying to access array offset on false in /home3/indiakep/public_html/wp-content/plugins/dw-question-answer/inc/Template.php on line 8
1 Answers
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.
