0
8.3kviews
Explain the addressing modes of 8051.
1 Answer
written 6.4 years ago by | • modified 6.4 years ago |
1. Immediate Addressing Mode
This addressing mode is named as “immediate” because it transfers an 8-bit data immediately to the accumulator (destination operand). For Example : MOV A, #6AH
The picture above describes the above instruction and its execution. The opcode for MOV A, # data is 74H. When the …