Home Microprocessor MicroProcessor 8085 Architecture and Features

Introduction
As discussed earlier, 8085 microprocessor was introduced by Intel in the year 1976. This microprocessor is an update of 8080 microprocessor. The 8080 processor was updated with Enable/Disable instruction pins and Interrupt pins to form the 8085 microprocessor. Let us discuss the architecture of 8085 microprocessor in detail.

Features of 8085 microprocessor

8085 microprocessor is an 8-bit microprocessor with a 40 pin dual in line package. The address and data bus are multiplexed in this processor which helps in providing more control signals. 8085 microprocessor has 1 Non-maskable interrupt and 3 maskable interrupts. It provides serial interfacing with serial input data (SID) and serial output data (SOD).microprocessor

It has a set of registers for performing various operations. The various registers include

  • Accumulator (register A)
  • Registers: B, C, D, E, H and L
  • Stack pointer
  • Program Counter
  • Temporary register

Architecture of 8085 microprocessor
8085 consists of various units and each unit performs its own functions. The various units of a microprocessor are listed below

  • Accumulator
  • Arithmetic and logic Unit
  • General purpose register
  • Program counter
  • Stack pointer
  • Temporary register

Accumulator

Accumulator is nothing but a register which can hold 8-bit data. Accumulator aids in storing two quantities.The data to be processed by arithmetic and logic unit is stored in accumulator.

It also stores the result of the operation carried out by the Arithmetic and Logic unit.The accumulator is also called an 8-bit register. The accumulator is connected to Internal Data bus and ALU (arithmetic and logic unit). The accumulator can be used to send or receive data from the Internal Data bus.

Arithmetic and Logic Unit

There is always a need to perform arithmetic operations like +, -, *, / and to perform logical operations like AND, OR, NOT etc. So there is a necessity for creating a separate unit which can perform such types of operations. These operations are performed by the Arithmetic and Logic Unit (ALU). ALU performs these operations on 8-bit data.
But these operations cannot be performed unless we have an input (or) data on which the desired operation is to be performed. So from where do these inputs reach the ALU? For this purpose accumulator is used. ALU gets its Input from accumulator and temporary register.
General Purpose Registers

Apart from accumulator 8085 consists of six special types of registers called General Purpose Registers.These general purpose registers are used to hold data like any other registers. The general purpose registers in 8085 processors are B, C, D, E, H and L. Each register can hold 8-bit data. Apart from the above function these registers can also be used to work in pairs to hold 16-bit data.

Program counter

ALU finished executing the instruction, the processor looks for the next instruction to be executed. So, there is a necessity for holding the address of the next instruction to be executed in order to save time. This is taken care by the program counter.

A program counter stores the address of the next instruction to be executed. In other words the program counter keeps track of the memory address of the instructions that are being executed by the microprocessor and the memory address of the next instruction that is going to be executed.

Microprocessor increments the program whenever an instruction is being executed, so that the program counter points to the memory address of the next instruction that is going to be executed. Program counter is a 16-bit register.

Stack pointer

Stack Pointer is also a 16-bit register which is used as a memory pointer. A stack is nothing but the portion of RAM (Random access memory).Stack pointer maintains the address of the last byte that is entered into stack.

Temporary Register

As the name suggests this register acts as a temporary memory during the arithmetic and logical operations. Unlike other registers, this temporary register can only be accessed by the microprocessor and it is completely inaccessible to programmers. Temporary register is an 8-bit register.

 

Leave a Comment