- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Conditional call instructions in 8085 Microprocessor
In 8085 Instruction set, depending upon one of the flag bit values (excluding AC flag bit), the conditional call instructions will branch to a subroutine. The branch takes place based on the value of Cy flag, Z flag, P flag, or S flag. There is no call instruction based on the value of AC(Auxiliary Carry) flag bit. This is because generally, no one is interested in branching to a subroutine based on this flag bit value. The conditional call instructions are 3 Bytes in length, 1 Byte for the opcode, and another 2 Bytes for the subroutine address i.e.low-order Byte and high-Byte of the address values.
Mnemonics, Operand | Opcode(in HEX) | Bytes |
---|---|---|
CC Label | DC | 3 |
CM Label | FC | 3 |
CNC Label | D4 | 3 |
CNZ Label | C4 | 3 |
CP Label | F4 | 3 |
CPE Label | EC | 3 |
CPO Label | E4 | 3 |
CZ Label | CC | 3 |
- Related Articles
- Conditional JUMP instructions in 8085 Microprocessor
- Conditional return instructions in 8085 Microprocessor
- Conditional and Unconditional JUMP instructions in 8085 Microprocessor
- Unconditional call and return instructions in 8085 Microprocessor
- Difference between call and jump instructions in 8085 Microprocessor
- Number of instructions in 8085 Microprocessor
- Restart instructions (RSTn) in 8085 Microprocessor
- IN and OUT instructions in 8085 Microprocessor
- Instructions to perform addition in 8085 Microprocessor
- Instructions to rotate Accumulator in 8085 Microprocessor
- Instructions to perform subtraction in 8085 Microprocessor
- Instructions to perform AND operation in 8085 Microprocessor
- Instructions to perform OR operation in 8085 Microprocessor
- Instructions to perform compare operation in 8085 Microprocessor
- Instructions to perform Exclusive OR operation in 8085 Microprocessor

Advertisements