summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/ef9369.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/ef9369.h')
-rw-r--r--src/devices/video/ef9369.h6
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;