summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/emu/machine/eeprom.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/machine/eeprom.c b/src/emu/machine/eeprom.c
index 8db3e9ab6f0..6df782121a4 100644
--- a/src/emu/machine/eeprom.c
+++ b/src/emu/machine/eeprom.c
@@ -209,11 +209,11 @@ logerror("EEPROM erase address %02x\n",address);
{
if (intf->data_bits == 16)
{
- eeprom_data[2*address+0] = 0x00;
- eeprom_data[2*address+1] = 0x00;
+ eeprom_data[2*address+0] = 0xff;
+ eeprom_data[2*address+1] = 0xff;
}
else
- eeprom_data[address] = 0x00;
+ eeprom_data[address] = 0xff;
}
else
logerror("Error: EEPROM is locked\n");