1 Answers
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.