summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/e05a03.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/e05a03.cpp')
-rw-r--r--src/devices/machine/e05a03.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/e05a03.cpp b/src/devices/machine/e05a03.cpp
index 3b5ca84b556..2ccf97f026b 100644
--- a/src/devices/machine/e05a03.cpp
+++ b/src/devices/machine/e05a03.cpp
@@ -90,7 +90,7 @@ void e05a03_device::device_reset()
IMPLEMENTATION
***************************************************************************/
-WRITE8_MEMBER( e05a03_device::write )
+void e05a03_device::write(offs_t offset, uint8_t data)
{
logerror("%s: e05a03_w(%02x): %02x\n", machine().describe_context(), offset, data);
@@ -127,7 +127,7 @@ WRITE8_MEMBER( e05a03_device::write )
}
}
-READ8_MEMBER( e05a03_device::read )
+uint8_t e05a03_device::read(offs_t offset)
{
uint8_t result = 0;