CS Electrical And Electronics
@cselectricalandelectronics

What is immediate addressing mode in 8051 microcontroller?

All QuestionsCategory: Embedded SystemWhat is immediate addressing mode in 8051 microcontroller?
CS Electrical And Electronics Staff asked 4 years ago

I need short information.

1 Answers
CS Electrical And Electronics Staff answered 4 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.