diff options
Diffstat (limited to 'src/devices/machine/ds1315.h')
-rw-r--r-- | src/devices/machine/ds1315.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/machine/ds1315.h b/src/devices/machine/ds1315.h index a5b70c38c76..720c4a08202 100644 --- a/src/devices/machine/ds1315.h +++ b/src/devices/machine/ds1315.h @@ -24,12 +24,12 @@ public: auto read_backing() { return m_backing_read.bind(); } // this handler automates the bits 0/2 stuff - DECLARE_READ8_MEMBER(read); + uint8_t read(offs_t offset); - DECLARE_READ8_MEMBER(read_0); - DECLARE_READ8_MEMBER(read_1); - DECLARE_READ8_MEMBER(read_data); - DECLARE_READ8_MEMBER(write_data); + uint8_t read_0(); + uint8_t read_1(); + uint8_t read_data(); + uint8_t write_data(offs_t offset); bool chip_enable(); void chip_reset(); |