diff options
author | 2020-03-11 20:04:17 +0100 | |
---|---|---|
committer | 2020-03-11 20:04:17 +0100 | |
commit | 59337f9e503618cf287a1888da376010d6611682 (patch) | |
tree | 092fe65b1aae8aec16cd9bbe4cb80ecdcf25c670 /src/devices/video/ef9369.h | |
parent | 29f838fe84ff1de3ff852c3f8421fbe2b6b0067d (diff) |
src/devices: simplified some handlers (nw)
Diffstat (limited to 'src/devices/video/ef9369.h')
-rw-r--r-- | src/devices/video/ef9369.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/video/ef9369.h b/src/devices/video/ef9369.h index 1e2a1af6f0d..7c10d6d1b22 100644 --- a/src/devices/video/ef9369.h +++ b/src/devices/video/ef9369.h @@ -48,9 +48,9 @@ public: // configuration template <typename... T> void set_color_update_callback(T &&... args) { m_color_update_cb.set(std::forward<T>(args)...); } - DECLARE_READ8_MEMBER(data_r); - DECLARE_WRITE8_MEMBER(data_w); - DECLARE_WRITE8_MEMBER(address_w); + uint8_t data_r(); + void data_w(uint8_t data); + void address_w(uint8_t data); static constexpr int NUMCOLORS = 16; |