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