summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/eeprompar.cpp
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2018-01-18 17:13:10 +0100
committer Olivier Galibert <galibert@pobox.com>2018-01-19 08:23:19 +0100
commitd0715c830d0f3866a6bac66c46cad83ca112c7b0 (patch)
tree2dfcfee4360916b8a6fc95d0e6c9f1e89163e088 /src/devices/machine/eeprompar.cpp
parent7f0684bcacfbbf50a1e76b4ad1f0a36a903c5511 (diff)
memory: Deambiguate handlers, also a hint of things to come (nw)
Diffstat (limited to 'src/devices/machine/eeprompar.cpp')
-rw-r--r--src/devices/machine/eeprompar.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/eeprompar.cpp b/src/devices/machine/eeprompar.cpp
index 6d11e66141f..ee717972f07 100644
--- a/src/devices/machine/eeprompar.cpp
+++ b/src/devices/machine/eeprompar.cpp
@@ -204,9 +204,9 @@ WRITE_LINE_MEMBER(eeprom_parallel_28xx_device::oe_w)
// /OE line through external flip-flop
//-------------------------------------------------
-WRITE8_MEMBER(eeprom_parallel_28xx_device::unlock_write) { oe_w(1); }
-WRITE16_MEMBER(eeprom_parallel_28xx_device::unlock_write) { oe_w(1); }
-WRITE32_MEMBER(eeprom_parallel_28xx_device::unlock_write) { oe_w(1); }
+WRITE8_MEMBER(eeprom_parallel_28xx_device::unlock_write8) { oe_w(1); }
+WRITE16_MEMBER(eeprom_parallel_28xx_device::unlock_write16) { oe_w(1); }
+WRITE32_MEMBER(eeprom_parallel_28xx_device::unlock_write32) { oe_w(1); }
//**************************************************************************