Registers within the CPU: Difference between revisions

From Computer Science Wiki
 
(7 intermediate revisions by 2 users not shown)
Line 9: Line 9:




== Do you understand this topic? ==  
== Registers ==  


'''Registers''',  a memory location within the actual processor that work at very fast speeds. It stores instructions which await to be decoded or executed.
'''Registers''',  a memory location within the actual processor that work at very fast speeds. It stores instructions which await to be decoded or executed.
Line 20: Line 20:
# CIR - current instruction register - stores actual instruction that is being decoded and executed  
# CIR - current instruction register - stores actual instruction that is being decoded and executed  
# ACC - accumulator - stores result of calculations   
# ACC - accumulator - stores result of calculations   
# IR - interrupt register - manages requests from I/O devices  
# IR - interrupt register - manages requests from I/O devices
 
 
 
 
[[File:Blank CPU diagram.png|caption|Can you fill this in?|225px ]]


== See Also ==
== See Also ==
Line 31: Line 26:
* [[Binary]]
* [[Binary]]


== Formative assessment ==
== Standards ==  
<html>
* Outline the architecture of the central processing unit (CPU) and the functions of the arithmetic logic unit (ALU) and the control unit (CU) and the registers within the CPU.
<iframe src="https://assess.computersciencelearning.org/h5p/4/embed" width="846" height="248" frameborder="0" allowfullscreen="allowfullscreen"></iframe>
</html>


== References ==
== References ==

Latest revision as of 09:33, 5 September 2022

This is a basic concept in computer science

In computer architecture, a processor register is a quickly accessible location available to a digital processor's central processing unit (CPU). Registers usually consist of a small amount of fast storage, although some registers have specific hardware functions, and may be read-only or write-only. Registers are typically addressed by mechanisms other than main memory, but may in some cases be memory mapped.

Almost all computers, whether load-store architecture or not, load data from a larger memory into registers where it is used for arithmetic operations and is manipulated or tested by machine instructions. Manipulated data is then often stored back to main memory, either by the same instruction or by a subsequent one. Modern processors use either static or dynamic RAM as main memory, with the latter usually accessed via one or more cache levels.

Processor registers are normally at the top of the memory hierarchy, and provide the fastest way to access data. The term normally refers only to the group of registers that are directly encoded as part of an instruction, as defined by the instruction set.[1]


Registers[edit]

Registers, a memory location within the actual processor that work at very fast speeds. It stores instructions which await to be decoded or executed.

  1. PC - program counter - stores address of the -> next <- instruction in RAM
  2. MAR - memory address register - stores the address of the:
    1. next address -or-
    2. next instruction
  3. MDR - memory data register - stores the data that is to be sent to or fetched from memory
  4. CIR - current instruction register - stores actual instruction that is being decoded and executed
  5. ACC - accumulator - stores result of calculations
  6. IR - interrupt register - manages requests from I/O devices

See Also[edit]

Standards[edit]

  • Outline the architecture of the central processing unit (CPU) and the functions of the arithmetic logic unit (ALU) and the control unit (CU) and the registers within the CPU.

References[edit]