summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/xavix_io.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/xavix_io.h')
-rw-r--r--src/mame/machine/xavix_io.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/machine/xavix_io.h b/src/mame/machine/xavix_io.h
index 31bb695d3f5..fe9b46fdd8e 100644
--- a/src/mame/machine/xavix_io.h
+++ b/src/mame/machine/xavix_io.h
@@ -15,11 +15,11 @@ public:
auto write_0_callback() { return m_out0_cb.bind(); }
auto write_1_callback() { return m_out1_cb.bind(); }
- DECLARE_WRITE8_MEMBER(xav_7a0x_dir_w);
- DECLARE_WRITE8_MEMBER(xav_7a0x_dat_w);
+ void xav_7a0x_dir_w(offs_t offset, uint8_t data);
+ void xav_7a0x_dat_w(offs_t offset, uint8_t data);
- DECLARE_READ8_MEMBER(xav_7a0x_dir_r);
- DECLARE_READ8_MEMBER(xav_7a0x_dat_r);
+ uint8_t xav_7a0x_dir_r(offs_t offset);
+ uint8_t xav_7a0x_dat_r(offs_t offset);
protected:
// device-level overrides