summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/upd7002.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/upd7002.h')
-rw-r--r--src/devices/machine/upd7002.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/upd7002.h b/src/devices/machine/upd7002.h
index 2a68774d435..5b62d13dc34 100644
--- a/src/devices/machine/upd7002.h
+++ b/src/devices/machine/upd7002.h
@@ -30,9 +30,9 @@ public:
template <typename... T> void set_get_analogue_callback(T &&... args) { m_get_analogue_cb = get_analogue_delegate(std::forward<T>(args)...); }
template <typename... T> void set_eoc_callback(T &&... args) { m_eoc_cb = eoc_delegate(std::forward<T>(args)...); }
- DECLARE_READ_LINE_MEMBER(eoc_r);
- uint8_t read(offs_t offset);
- void write(offs_t offset, uint8_t data);
+ DECLARE_READ8_MEMBER(eoc_r);
+ DECLARE_READ8_MEMBER(read);
+ DECLARE_WRITE8_MEMBER(write);
protected:
// device-level overrides