
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Immediate Addressing Mode in 8085 Microprocessor
In this mode, the 8/16-bit data is specified in the instruction itself as one of its operand. For example MVI E, ABH: means ABH is copied into register A. Here the operand is immediately available in the instruction.
MVI E ABH
Before |
After |
|
---|---|---|
(A) |
Any value |
ABH |
As example, if we consider instruction MVI E, ABH then it means that ABH will be moved or copied to the register E. And, as a result, the previous value of E will get overwritten.
Address |
Hex Codes |
Mnemonic |
Comment |
---|---|---|---|
2000 |
1E |
MVI E, ABH |
E ← ABH |
2001 |
AB |
ABH as operand |
This instruction will have seven T-states as shown below.
Summary − So this instruction MVI E, ABH requires 2-Bytes, 2-Machine Cycles (Opcode Fetch and Memory Read) and 7T-States for execution as shown in the timing diagram.
Advertisements