summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h8/h83008.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/h8/h83008.h')
-rw-r--r--src/devices/cpu/h8/h83008.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/h8/h83008.h b/src/devices/cpu/h8/h83008.h
index cdab99bd950..bb65adfcc9d 100644
--- a/src/devices/cpu/h8/h83008.h
+++ b/src/devices/cpu/h8/h83008.h
@@ -32,8 +32,8 @@ 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);
protected:
required_device<h8h_intc_device> intc;