Accumulator (computing)
In a
computer CPU, an accumulator is a
register in which intermediate
arithmetic and logic results are stored. Without a register like an accumulator, it would be necessary to write the result of each calculation (addition, multiplication, shift, etc.) to
main memory, perhaps only to be read right back again for use in the next operation. Access to main memory is slower than access to a register like the accumulator because the technology used for the large main memory is slower (but cheaper) than that used for a register.
See more at Wikipedia.org...
Accumulateur (informatique)
Akkumulator (Computer)
Ein Akkumulator ist ein
Register innerhalb einer
CPU, in dem Ergebnisse der Recheneinheit (
ALU) gespeichert werden. Meist ist das Akkumulatorregister fest mit dem zweiten Eingang der ALU verschaltet. Einzelne Akkumulatoren spielen heute fast nur noch in kleineren Mikroprozessoren eine Rolle. Die meisten 16- oder 32-bit-Prozessoren (oder breiter) verwenden eine größere Anzahl von Akkumulatoren, die man dann als Datenregister bezeichnet. Siehe auch:
Akkumulatorrechner
Mehr unter Wikipedia.org...
Akumulator (informatyka)
Akumulator – specjalizowany
rejestr procesora, zazwyczaj oznaczany A lub ACC (w architekturze
x86 AX oraz EAX).Akumulator jest bezpośrednio sprzężony z
jednostką arytmetyczno-logiczną procesora. Jego zawartość jest najczęściej przyłączona do szyny danych. Przed operacją w akumulatorze jest jeden z argumentów, po operacji wynik. Akumulator jest wielkości
słowa maszynowego.W procesorze musi być co najmniej jeden akumulator. Niektóre procesory mają akumulatory pomocnicze, jeden lub kilka (w
x86 rejestr DX). Służą one do zwiększenia dokładności obliczeń, zapamiętywania reszty z dzielenia, przechowywania drugiego argumentu przy mnożeniu i dzieleniu.
W celu uzyskania więcej informacji, zobacz w Wikipedia.οrg...
© W niniejszym artykule wykorzystano materialy pochodzace z
Wikipedia® i posiada on Powszechna
Licencje Publiczna GNU
Accumulatore (informatica)
L'accumulatore nelle
CPU è il registro più importante perché è quello che coinvolge quasi tutte le operazioni logico-aritmetiche. È legato intimamente alla
ALU di cui segue la larghezza che è caratteristica del
microprocessore utilizzato. Normalmente in
assembly prende il nome 'A', in alcuni processori vi sono 2 accumulatori il secondo prende il nome 'B'. Nei processori della serie
x86 si chiama 'AL' se coinvolge operazioni a 8
bit 'AX' per operazioni da 16 bit.Esempi d'uso:
ADD AL,25h ; Somma immediata a 8 bit.
SUB CX,AX ; Sottrazione a 16 bit tra registri. Il risultato in CX.
AND (HL) ; And di A con una cella di memoria, risultato in A. Assembly
Z80.
ORAB $#0F ; Or immediato che coinvolge l'accumulatore B. Assembly
Motorola.
Per saperne di più visita Wikipedia.org...