summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/hp_taco.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/hp_taco.cpp')
-rw-r--r--src/devices/machine/hp_taco.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/hp_taco.cpp b/src/devices/machine/hp_taco.cpp
index 9c3edf16fc4..f8b712dde7e 100644
--- a/src/devices/machine/hp_taco.cpp
+++ b/src/devices/machine/hp_taco.cpp
@@ -293,7 +293,7 @@ hp_taco_device::hp_taco_device(const machine_config &mconfig, const char *tag, d
{
}
-WRITE16_MEMBER(hp_taco_device::reg_w)
+void hp_taco_device::reg_w(offs_t offset, uint16_t data)
{
LOG_REG("wr R%u = %04x\n", 4 + offset , data);
@@ -323,7 +323,7 @@ WRITE16_MEMBER(hp_taco_device::reg_w)
}
}
-READ16_MEMBER(hp_taco_device::reg_r)
+uint16_t hp_taco_device::reg_r(offs_t offset)
{
uint16_t res = 0;