|
The memory sub-system is the work area the CPU uses for reading instructions to execute, and for the reading and writing of data. Memory is frequently referred to as RAM or Random Access Memory. This is because any memory location can be accessed directly through it's address, rather than having to read sequentially through every location to get to a desired address. Another commonly used acronym is ROM which refers to Read-Only Memory.
The information kept in memory is typically temporary; it disappears when the system is shut off or rebooted. However there are some forms of memory where the information is persistent. For example Electrically Erasable Programmable Read-Only Memory or EEPROM's, are memory chips where information is burned into the chip and will persist even after the loss of power or a reboot. Memory that can retain its information permanently is known as non-volatile memory.
ROM's and EEPROM's are important because they contain machine code instructions that basically jump start the computer. These instructions are also known as the Basic Input-Output System or BIOS. If these non-volatile memory chips did not exist in a computer, it would just sit there and do nothing when first powered on. (See the section titled BIOS below.)
|