Primary memory: Difference between revisions

From Computer Science Wiki
No edit summary
No edit summary
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[File:binary.png|frame|right|This is a basic concept in computer science]]
[[File:binary.png|frame|right|This is a basic concept in computer science]]


The primary memory stores the program instructions and the data in binary machine code. The Control Unit deals with the instructions and the Arithmetic and Logic unit handles calculations and comparisons with the data. Data and instructions are moved by buses.
The primary memory stores instructions. It is important to understand primary memory generally holds currently executing processes (at runtime). You can think of primary memory as the last stop before being actually fetched, decoded, executed and stored by the CPU.  


There are two types of memory in primary memory (also known as the Immediate Access Store ) of the computer, RAM and ROM<ref>http://www.ib-computing.net/program/core/memories.html</ref> :
There are two types of memory in primary memory of the computer, RAM and ROM<ref>http://www.ib-computing.net/program/core/memories.html</ref>. For the IB, you should focus on RAM, and not ROM.


* RAM is Random Access Memory which loses its contents when the computer is switched off (it is volatile ). This memory can be written to, instructions and data can be loaded into it.
* RAM is Random Access Memory which loses its contents when the computer is switched off (it is volatile ). This memory can be written to, instructions and data can be loaded into it.
Line 9: Line 9:
* ROM , or Read Only Memory is non-volatile and is used to store programs permanently (the start-up or " boot " instructions, for example), the computer cannot store anything in this type of memory.
* ROM , or Read Only Memory is non-volatile and is used to store programs permanently (the start-up or " boot " instructions, for example), the computer cannot store anything in this type of memory.


When the programs and data files (known as the software ) are not in RAM, they are stored on [[secondary memory]] (also known as backing store ) such as tapes or discs. The tape or disc drives and any input and output devices connected to the CPU are known collectively as peripherals.
When the programs and data files (known as the software ) are not in RAM, they are stored on [[secondary storage]] (also known as backing store ) such as tapes or discs. The tape or disc drives and any input and output devices connected to the CPU are known collectively as peripherals.


'''RAM – Random Access Memory'''<ref>http://dis-dpcs.wikispaces.com/2.1.2+Primary+Memory+and+2.1.3+Cache+Memory</ref>
'''RAM – Random Access Memory'''<ref>http://dis-dpcs.wikispaces.com/2.1.2+Primary+Memory+and+2.1.3+Cache+Memory</ref>
* The RAM is where programs, instructions, values are stored at runtime
* The RAM is where instructions, values are stored at runtime
* The RAM can be accessed a lot faster than the hard disk
* The RAM can be accessed a lot faster than secondary storage, In general the time between primary memory and CPU is 7 to 10 nanoseconds.
* All information is lost when the power is turned off
* All information is lost when the power is turned off (volatile)
* Allows storage and random access of the data
* Allows storage and random access of the data
* Each program instruction & piece of data in the RAM has a unique address
* Each instruction & piece of data in the RAM has a unique address (see also: [[virtual memory]]


'''ROM – Read Only Memory'''
'''ROM – Read Only Memory'''
Line 25: Line 25:
* Stores code for interrupter
* Stores code for interrupter


== NVRAM ==


'''Virtual memory'''
Non-volatile random-access memory (NVRAM) is random-access memory that retains data without applied power. This is in contrast to dynamic random-access memory (DRAM) and static random-access memory (SRAM), which both maintain data only for as long as power is applied, or such forms of memory as magnetic tape, which cannot be randomly accessed but which retains data indefinitely without electric power.
To expand memory usable by the CPU it is possible to use something called virtual memory where the most important instructions for the program are stored in the RAM and the less necessary information is stored in secondary memory (usally the HDD) and then the data is switched between RAM and virtual memory as it is needed (to swap).


Advantages:
Read-only memory devices can be used to store system firmware in embedded systems such as an automotive ignition system control or home appliance. They are also used to hold the initial processor instructions required to bootstrap a computer system. Read-write memory can be used to store calibration constants, passwords, or setup information, and may be integrated into a microcontroller.<ref>https://en.wikipedia.org/wiki/Non-volatile_random-access_memory</ref>
* Bulleted list item
More memory to work with.


Disadvantages:
* It is very slow compared to the primary memory
* Thrashing can occur. Thrashing is a condition when there is too much data that needs to be swapped between RAM and virtual memory, and the computer's response time is compromised.


== Do you understand this topic? ==
* Identify the need for persistent storage
== Do you have an advanced understanding about this topic? ==
* Is a disk-based swap file the same thing as persistent storage?


== References ==
== References ==

Revision as of 07:50, 18 May 2020

This is a basic concept in computer science

The primary memory stores instructions. It is important to understand primary memory generally holds currently executing processes (at runtime). You can think of primary memory as the last stop before being actually fetched, decoded, executed and stored by the CPU.

There are two types of memory in primary memory of the computer, RAM and ROM[1]. For the IB, you should focus on RAM, and not ROM.

  • RAM is Random Access Memory which loses its contents when the computer is switched off (it is volatile ). This memory can be written to, instructions and data can be loaded into it.
  • ROM , or Read Only Memory is non-volatile and is used to store programs permanently (the start-up or " boot " instructions, for example), the computer cannot store anything in this type of memory.

When the programs and data files (known as the software ) are not in RAM, they are stored on secondary storage (also known as backing store ) such as tapes or discs. The tape or disc drives and any input and output devices connected to the CPU are known collectively as peripherals.

RAM – Random Access Memory[2]

  • The RAM is where instructions, values are stored at runtime
  • The RAM can be accessed a lot faster than secondary storage, In general the time between primary memory and CPU is 7 to 10 nanoseconds.
  • All information is lost when the power is turned off (volatile)
  • Allows storage and random access of the data
  • Each instruction & piece of data in the RAM has a unique address (see also: virtual memory

ROM – Read Only Memory

  • Can not be written to easily or at all (often times once only, then never again)
  • In modern PCs usually used for firmware in CPU, Graphics card, hard disks, etc.
  • Many ROM modules are replaced with Flash modules nowadays (ex. BIOS, firmware modules) to allow easier updating
  • In devices like keyboards, etc. which aren’t designed for firmware updates ROM might still be used
  • Stores code for interrupter

NVRAM[edit]

Non-volatile random-access memory (NVRAM) is random-access memory that retains data without applied power. This is in contrast to dynamic random-access memory (DRAM) and static random-access memory (SRAM), which both maintain data only for as long as power is applied, or such forms of memory as magnetic tape, which cannot be randomly accessed but which retains data indefinitely without electric power.

Read-only memory devices can be used to store system firmware in embedded systems such as an automotive ignition system control or home appliance. They are also used to hold the initial processor instructions required to bootstrap a computer system. Read-write memory can be used to store calibration constants, passwords, or setup information, and may be integrated into a microcontroller.[3]


References[edit]