summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/vino.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/vino.h')
-rw-r--r--src/mame/machine/vino.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/vino.h b/src/mame/machine/vino.h
index 2de5da5996c..b1f0d2e0cd7 100644
--- a/src/mame/machine/vino.h
+++ b/src/mame/machine/vino.h
@@ -22,8 +22,8 @@ class vino_device : public device_t
public:
vino_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0U);
- DECLARE_READ32_MEMBER(read);
- DECLARE_WRITE32_MEMBER(write);
+ uint32_t read(offs_t offset, uint32_t mem_mask = ~0);
+ void write(offs_t offset, uint32_t data, uint32_t mem_mask = ~0);
auto i2c_data_out() { return m_i2c_data_out.bind(); }
auto i2c_data_in() { return m_i2c_data_in.bind(); }