summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h8/h8s2245.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/h8/h8s2245.h')
-rw-r--r--src/devices/cpu/h8/h8s2245.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/cpu/h8/h8s2245.h b/src/devices/cpu/h8/h8s2245.h
index 732f4c02692..4fca522bbc5 100644
--- a/src/devices/cpu/h8/h8s2245.h
+++ b/src/devices/cpu/h8/h8s2245.h
@@ -37,10 +37,10 @@ class h8s2245_device : public h8s2000_device {
public:
h8s2245_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- DECLARE_READ8_MEMBER(syscr_r);
- DECLARE_WRITE8_MEMBER(syscr_w);
- DECLARE_READ16_MEMBER(mstpcr_r);
- DECLARE_WRITE16_MEMBER(mstpcr_w);
+ uint8_t syscr_r();
+ void syscr_w(uint8_t data);
+ uint16_t mstpcr_r();
+ void mstpcr_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
protected:
required_device<h8s_intc_device> intc;