Why is EEPROM called "ROM"?

2020-01-07

This article is a bit old and the content may be outdated, so please refer to it with caution and remember to check the latest official materials (such as documentation, etc.)

After searching on the Internet, I found interesting facts:

And early EEPROM devices could only be erased all together, and programming required conditions very different from those associated with normal operation; consequently, as with PROM/EPROM devices, they were generally used in circuitry which could read but not write them.

So unlike RAM (random access memory) which holds its contents during power cycle and, therefore, behaved more like a ROM.

To conclude, EEPROM was hard to erase and write, and is more often read than written. So it still served more like a ROM.

About the relationship between EEPROM and flash memory #

EEPROM is in fact Flash.

EEPROM is an evolution of the older UV-eraseable EPROMs (EEPROM's "EE" stands for "Electrically Eraseable"). However, despite it being an improvement to its old pal, today's EEPROM's way of holding information is the exact same of the flash memory.

The ONLY major difference between the two is the read/write/erase logic.

Reference:

Leave your comments and reactions on GitHub