diff options
Diffstat (limited to 'src/devices/machine/msm6253.h')
-rw-r--r-- | src/devices/machine/msm6253.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/machine/msm6253.h b/src/devices/machine/msm6253.h index 8830c7dc969..b784bb9aec3 100644 --- a/src/devices/machine/msm6253.h +++ b/src/devices/machine/msm6253.h @@ -42,13 +42,13 @@ public: template <unsigned P, typename... T> void set_input_cb(T &&... args) { m_analog_input_cb[P].set(std::forward<T>(args)...); } // write handlers - WRITE8_MEMBER(address_w); - WRITE8_MEMBER(select_w); + void address_w(offs_t offset, u8 data); + void select_w(offs_t offset, u8 data); // read handlers bool shift_out(); - READ8_MEMBER(d0_r); - READ8_MEMBER(d7_r); + u8 d0_r(address_space &space); + u8 d7_r(address_space &space); protected: // device-level overrides |