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