What is immediate addressing mode in 8051 microcontroller?


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
All QuestionsCategory: Embedded SystemWhat is immediate addressing mode in 8051 microcontroller?
Chetan Shidling Staff asked 6 years ago

I need short information.

1 Answers
Chetan Shidling Staff answered 6 years ago

In this type, the operand is specified in the instruction along with the opcode. In a simple way, it means data is provided in the instruction itself.

Example:
MOV A, #05H

Where MOV stands for move, # represents immediate data, 05H is the data. It means the immediate data 05H provided in instruction is moved into A register.