Memories are divided into two types:
RAM
|
Random Access Memory,
any cell can be read or written
|
ROM
|
Read Only Memory,
any cell can be read but not written
|
RAM memories are used to store running programs and the data they work on,
while ROMs are used for special programs and unchanging data. When a
computer first starts up, a small program called a bootstrap program is
read from a ROM and executed. Since ROMs cannot be altered, this bootstrap
program cannot be deleted, erased, or harmed in any way. Once the bootstrap
starts, it turns on the other components such as the monitor, keyboard,
mouse and disk drives, and the real operating system is read from a disk
drive. ROMs are also used for many other things, such as character fonts
for printers.
|