answersLogoWhite

0

An accumulator is a register that is a part of a processor. It has more/faster instructions than other registers. Examples:

/360: no accumulator

8080: A

6800: A and B

8086: AX

80386: EAX

x86-64: RAX
The accumulator in an automatic transmission softens the shift between gears.

User Avatar

Wiki User

12y ago

What else can I help you with?

Continue Learning about Math & Arithmetic

Write three different methods to clear Accumulator?

To clear an Accumulator in programming, you can use the following methods: Reset to Zero: Simply assign the Accumulator variable to zero (e.g., accumulator = 0;), which effectively clears its value. Re-initialize: If the Accumulator is part of a data structure or object, re-initialize the entire structure or object to its default state, which will also clear the Accumulator. Use a Clear Method: If the programming language or framework provides a specific method to clear or reset the Accumulator, call that method (e.g., accumulator.clear()), which is often designed to handle additional cleanup tasks.


Where the result of arithmetic logical operations are stored?

ACCUMULATOR


If the 8085 add 89h and 79h specify the contents of the accumulator?

In the 8085, if the accumulator starts as 00H, then adding 89H and 79H to it results in a value of 02H with CARRY set.


Difference between LDA and STA instruction in 8085?

In the 8085, the LDA instruction loads the accumulator from memory, while the STA instruction stores the accumulator to memory. LDA is a read, while STA is a write. LDA is opcode 3AH, while STA is opcode 32H.


What are the steps for integer multiplication in booth algorithm?

The Booth algorithm for integer multiplication involves several key steps. First, it initializes the multiplicand, multiplier, and an accumulator, along with a bit to track the previous bit of the multiplier. The algorithm then iterates through the bits of the multiplier, performing the following actions based on the current and previous bits: if the previous bit is 0 and the current bit is 1, the multiplicand is added to the accumulator; if the previous bit is 1 and the current bit is 0, the multiplicand is subtracted from the accumulator. Finally, the algorithm performs a right arithmetic shift on the combined values of the accumulator and multiplier after each operation, repeating the process until all bits of the multiplier have been processed.

Related Questions

What is accumulator function in c language?

Normally the return value from the function is through the information from the accumulator.


What is the function of a accumulator?

A hydraulic accumulator is a device wherein its main function is to store energy in an efficient way. It does this by temporarily removing the stresses and pressures of external sources such as gasses. There are other types of accumulators as well.


What is theFunction of accumulator in hydraulics system?

The function of accumulator in hydraulic system is to receive and store excess oil pumped through the system, which is used to compensate sudden increase in loads.


What is the function of the accumulator?

An accumulator is a register that is a part of a processor. It has more/faster instructions than other registers. Examples:/360: no accumulator8080: A6800: A and B8086: AX80386: EAXx86-64: RAXThe accumulator in an automatic transmission softens the shift between gears.


What is the function of accumulator 8085?

It is an 8 bit register which is accessable to programmer and is main fuction is to perfom all arithmetic and logical function.


Function of flag register?

The main function of flag register is show the status of result stored in accumulator after execution of an instruction. Amar oli Dang,Nepal


Can you lower the equipment on a caterpillar 10k at forklift with the accumulator dicharged?

No, you should not lower the equipment on a Caterpillar 10K forklift with a discharged accumulator. The accumulator plays a crucial role in maintaining hydraulic pressure, and without it, the hydraulic system may not function properly, risking uncontrolled descent of the load. Always ensure the accumulator is charged and in good condition before operating the forklift to ensure safety and proper functionality.


What is the function of a hydraulic accumulator?

A hydraulic accumulator is a device wherein its main function is to store energy in an efficient way. It does this by temporarily removing the stresses and pressures of external sources such as gasses. There are other types of accumulators as well.


To draw diagram of accumulator?

A mechanical, or electrical accumulator???


What does accumulator mean in British?

Accumulator is what the British call a capacitor.


Can you write a C program to find the sum of a given column in a 2D array?

Use the following function to find the sum of a given column in an array of integers: int sum_column (int** array, unsigned int rows, unsigned int columns, unsigned int column) { assert (column<columns); int accumulator int row; accumulator = 0; for (row=0; row<rows; ++row) { accumulator += array[row][column]; } return accumulator; }


What is the size of the accumulator of a 64bit processor?

The size of the accumulator is the same,means 64bit.