summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h8/h8_watchdog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/h8/h8_watchdog.h')
-rw-r--r--src/devices/cpu/h8/h8_watchdog.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/cpu/h8/h8_watchdog.h b/src/devices/cpu/h8/h8_watchdog.h
index 0cad0e67020..1cb63025141 100644
--- a/src/devices/cpu/h8/h8_watchdog.h
+++ b/src/devices/cpu/h8/h8_watchdog.h
@@ -60,10 +60,10 @@ public:
uint64_t internal_update(uint64_t current_time);
- DECLARE_READ16_MEMBER(wd_r);
- DECLARE_WRITE16_MEMBER(wd_w);
- DECLARE_READ16_MEMBER(rst_r);
- DECLARE_WRITE16_MEMBER(rst_w);
+ uint16_t wd_r();
+ void wd_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
+ uint16_t rst_r();
+ void rst_w(uint16_t data);
protected:
virtual void device_start() override;