Open In App

Introduction of Single Accumulator based CPU organization

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

The computers, present in the early days of computer history, had accumulator-based CPUs. In this type of CPU organization, the accumulator register is used implicitly for processing all instructions of a program and storing the results into the accumulator. The instruction format that is used by this CPU Organisation is the One address field. Due to this, the CPU is known as One Address Machine

The main points about Single Accumulator based CPU Organisation are: 

  1. In this CPU Organization, the first ALU operand is always stored into the Accumulator and the second operand is present either in Registers or in the Memory. 
  2. Accumulator is the default address thus after data manipulation the results are stored into the accumulator. 
  3. One address instruction is used in this type of organization. 
The format of instruction is: Opcode + Address

Opcode indicates the type of operation to be performed. 
Mainly two types of operation are performed in a single accumulator based CPU organization:  

1. Data transfer operation – 
In this type of operation, the data is transferred from a source to a destination. 

For ex: LOAD X, STORE Y 

Here LOAD is a memory read operation that is data is transferred from memory to accumulator and STORE is a memory write operation that is data is transferred from the accumulator to memory. 

2. ALU operation – 
In this type of operation, arithmetic operations are performed on the data. 

For ex: MULT X 

where X is the address of the operand. The MULT instruction in this example performs the operation, 

AC <-- AC * M[X] 

AC is the Accumulator and M[X] is the memory word located at location X. 

This type of CPU organization is first used in PDP-8 processors and is used for process control and laboratory applications. It has been totally replaced by the introduction of the new general register-based CPU. 

Advantages –  

  • One of the operands is always held by the accumulator register. This results in short instructions and less memory space. 
  • The instruction cycle takes less time because it saves time in instruction fetching from memory. 

Disadvantages – 

  • When complex expressions are computed, program size increases due to the usage of many short instructions to execute it. Thus memory size increases. 
  • As the number of instructions increases for a program, the execution time increases. 
     

 


Last Updated : 13 Jan, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads