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
This addressing mode is basically used for accessing data from a lookup table. Here the address of memory is indexed i.e., added to form the actual address of memory.
Example:
MOVC A, @A+DPTR
Here C means Code. Here the content of A register is added with the content of DPTR and the resultant is the address of memory location from where the data is copied to “A” register.
