summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/1ma6.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/1ma6.cpp')
-rw-r--r--src/devices/machine/1ma6.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/1ma6.cpp b/src/devices/machine/1ma6.cpp
index 479c7b9d6d3..284088a9f00 100644
--- a/src/devices/machine/1ma6.cpp
+++ b/src/devices/machine/1ma6.cpp
@@ -117,7 +117,7 @@ hp_1ma6_device::hp_1ma6_device(const machine_config &mconfig, const char *tag, d
clear_state();
}
-WRITE8_MEMBER(hp_1ma6_device::reg_w)
+void hp_1ma6_device::reg_w(offs_t offset, uint8_t data)
{
LOG("WR %u=%02x\n" , offset , data);
switch(offset) {
@@ -133,7 +133,7 @@ WRITE8_MEMBER(hp_1ma6_device::reg_w)
}
}
-READ8_MEMBER(hp_1ma6_device::reg_r)
+uint8_t hp_1ma6_device::reg_r(offs_t offset)
{
uint8_t res = 0;