summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h8/h8s2655.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/h8/h8s2655.cpp')
-rw-r--r--src/devices/cpu/h8/h8s2655.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/h8/h8s2655.cpp b/src/devices/cpu/h8/h8s2655.cpp
index f09b08bcab0..eb29b29bdc3 100644
--- a/src/devices/cpu/h8/h8s2655.cpp
+++ b/src/devices/cpu/h8/h8s2655.cpp
@@ -394,12 +394,12 @@ void h8s2655_device::device_reset()
syscr = 0x01;
}
-READ8_MEMBER(h8s2655_device::syscr_r)
+uint8_t h8s2655_device::syscr_r()
{
return syscr;
}
-WRITE8_MEMBER(h8s2655_device::syscr_w)
+void h8s2655_device::syscr_w(uint8_t data)
{
syscr = data;
update_irq_filter();