What is immediate addressing mode in 8051 microcontroller?

All QuestionsCategory: Embedded SystemWhat is immediate 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

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.