diff options
author | 2020-06-17 20:42:54 +0200 | |
---|---|---|
committer | 2020-06-17 20:42:54 +0200 | |
commit | 6dff78ed3ab09b83ac0aa8dc08dea227b07562a3 (patch) | |
tree | 92e33e37cb30e2b4f8829eb3dec8e7c8674b6bb4 /src/devices/sound/nile.h | |
parent | 247d71e1cabe101bd29adee2abc57fb86215a911 (diff) |
devices/machine, sound and video: removed read and write macros (nw)
Diffstat (limited to 'src/devices/sound/nile.h')
-rw-r--r-- | src/devices/sound/nile.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/sound/nile.h b/src/devices/sound/nile.h index 20a7a0a0c99..169c90c9e4d 100644 --- a/src/devices/sound/nile.h +++ b/src/devices/sound/nile.h @@ -26,10 +26,10 @@ protected: virtual void sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples) override; public: - DECLARE_WRITE16_MEMBER( nile_snd_w ); - DECLARE_READ16_MEMBER( nile_snd_r ); - DECLARE_WRITE16_MEMBER( nile_sndctrl_w ); - DECLARE_READ16_MEMBER( nile_sndctrl_r ); + void nile_snd_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0); + uint16_t nile_snd_r(offs_t offset); + void nile_sndctrl_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0); + uint16_t nile_sndctrl_r(); private: static constexpr unsigned NILE_VOICES = 8; |