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