Instruction Set Architecture of 8085 Microprocessor

In this course, we will study the What is Instruction Set Architecture of 8085 Microprocessor, its major parts, classification, and branching instructions with examples. So let us start.

Instruction Set Architecture of 8085 Microprocessor

Before learning what the Instruction Set Architecture of 8085 Microprocessor is let us learn what an instruction set is. An instruction set is a group of instructions that are supported by the microprocessor. Different processors have different instruction sets. The instruction set architecture can be defined as the format in which the instructions can be written. There are different formats that instructions can take, like, the instruction length, the size, memory organization, and memory transfer length.

    1. Instruction length: It is the most basic issue of the format design. Longer will be the length of the instruction the more time is needed to fetch it.
    2. Memory size: If a larger memory range is to be addressed then more bits will be required in the address field.
    3. Memory organization: If the system supports virtual memory then the memory range that needs to be addressed by the instruction, is larger than the physical memory.
    4. Memory transfer length: The length of instruction should be equal to the data bus length or it should be multiple of it.

Major parts of the Instruction Set Architecture of 8085 Microprocessor?

There are three major parts in an instruction-

  • Opcode Instruction Set Architecture of 8085 Microprocessor
  • Operand Instruction Set Architecture of 8085 Microprocessor
  • Addressing mode Instruction Set Architecture of 8085 Microprocessor

What is an opcode?

Opcode means operation code. This is used to specify the operations that are to be performed. The operations to be done are specified in bit form. Generally, its size is 6 bits and we can perform 32 operations using it.

What is an operand?

These are used to specify the data upon which the operation is to be performed. The operand can also contain the address. There are 24 bits. We can have the data as well as the addresses in it.

What is an addressing mode?

These are used to specify the way the operand or its address is to be addressed. There are two bits 6 and 7. We can define 4 different addressing modes.

What is the Instruction Set Architecture of 8085 Microprocessor?

An instruction can be defined as a binary pattern that is designed inside the microprocessor for performing a specific function. The entire group of instructions that the microprocessor supports is known as an instruction set of the microprocessor. There are 246 instructions in the 8085 microprocessor. An 8-bit binary value is used to represent the instruction. These 8 bits of binary values are known as op-code or instruction bytes.

What is the classification of Instruction Set Architecture of 8085 Microprocessor?

In the Instruction Set Architecture of 8085 Microprocessor, the instructions can be classified into various categories. Some of them are listed below:

  • Data transfer instruction
  • Arithmetic instruction
  • Logic instruction
  • Branching instruction
  • Control instruction

Instruction Set Architecture of 8085 Microprocessor

What are the data transfer instructions Set in 8085 Microprocessor?

  • These instructions are used to move the data between registers or between memory and registers.
  • These instructions copy data from source to destination.
  • These do not change the original data.
  • For example, MOV, MIV, LDA, LDAX, LXI, LHLD, STA, STAX, etc.

MOV source, destination

  1. This instruction copies the content of the source registers to the destination register.
  2. If one of the operands is a memory location, then its location is specified by the content of the HL registers.

MIV destination, data

  1. The data is stored in the destination register or memory.
  2. If the operand is a memory location, the contents of the HL registers will specify its location.

LDA 16-bit address

  1. The contents of the memory location that are specified by a 16-bit address in the operand, are copied to the accumulator.
  2. The contents of the source are not altered.

What is the arithmetic instruction Set in 8085 Microprocessor?

These instructions perform operations like addition, subtraction, increment, and decrement.

ADDITION

  1. Any 8-bit number or the contents of the register or contents of the memory location can be added to the contents of the accumulator.
  2. The result is always stored in the accumulator.
  3. No two 8-bit numbers can be added directly.
  4. There are instructions like ADC, ADD, ADI, DAD, etc.

SUBTRACTION

  1. Any 8-bit number or the contents of the register or contents of the memory location can be subtracted from the contents of the accumulator.
  2. The result is always stored in the accumulator.
  3. Subtraction is performed in 2’s complement form.
  4. In case the result came out to be negative then it is stored in 2’s complement form.
  5. No two 8-bit numbers can be subtracted directly.
  6. There are instructions like SUB, SBB, SUI, and SBI.

INCREMENT/DECREMENT

  1. The 8-bit contents of the register or a memory location can be incremented or decremented by 1.
  2. The 16-bit contents of the register pair can be incremented or decremented by 1.
  3. Increment or decrement can be performed on any register or memory location.
  4. There are instructions like INR, INX, DCR, and DCX.

What are the logical instructions Set in 8085 Microprocessor?

These instructions perform operations like AND, OR, XOR, rotate, compare, and complement.

AND, OR, XOR

  1. Any 8-bit data, or the contents of the register, or memory location can logically have these operations with the contents of the accumulator.
  2. The result is stored in the accumulator.

COMPLEMENT

  1. The contents of the accumulator can be complemented.
  2. Every 0 is replaced by 1 and every 1 is replaced by 0.
  3. There are instructions like CMA, CMC, etc.

What are the branching instructions Set in 8085 Microprocessor?

  • These instructions allow the microprocessor to change the sequence of the program either conditionally or under certain test conditions.
  • There are instructions like jump, call, return, and restart.

Thanks for giving the time to learn the Instruction Set Architecture of 8085 Microprocessor. I hope your like this article.