summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h8/h83003.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/h8/h83003.h')
-rw-r--r--src/devices/cpu/h8/h83003.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/cpu/h8/h83003.h b/src/devices/cpu/h8/h83003.h
index f988f0301cd..6c4f7cfaced 100644
--- a/src/devices/cpu/h8/h83003.h
+++ b/src/devices/cpu/h8/h83003.h
@@ -35,11 +35,11 @@ public:
void set_mode_a20() { mode_a20 = true; }
void set_mode_a24() { mode_a20 = false; }
- DECLARE_READ8_MEMBER(syscr_r);
- DECLARE_WRITE8_MEMBER(syscr_w);
+ uint8_t syscr_r();
+ void syscr_w(uint8_t data);
- DECLARE_READ8_MEMBER(rtmcsr_r);
- DECLARE_WRITE8_MEMBER(rtmcsr_w);
+ uint8_t rtmcsr_r();
+ void rtmcsr_w(uint8_t data);
protected:
required_device<h8h_intc_device> intc;