diff options
Diffstat (limited to 'src/devices/sound/upd7752.cpp')
-rw-r--r-- | src/devices/sound/upd7752.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/devices/sound/upd7752.cpp b/src/devices/sound/upd7752.cpp index e2e28317d4c..ca0f47c46ea 100644 --- a/src/devices/sound/upd7752.cpp +++ b/src/devices/sound/upd7752.cpp @@ -9,8 +9,7 @@ skeleton device ***************************************************************************/ #include "emu.h" -#include "sound/upd7752.h" - +#include "upd7752.h" /* status flags */ @@ -99,7 +98,7 @@ void upd7752_device::device_stop() // sound_stream_update - handle a stream update //------------------------------------------------- -void upd7752_device::sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples) +void upd7752_device::sound_stream_update(sound_stream &stream) { } @@ -133,7 +132,7 @@ void upd7752_device::status_change(uint8_t flag,bool type) m_status &= ~flag; } -READ8_MEMBER( upd7752_device::read ) +uint8_t upd7752_device::read(offs_t offset) { switch(offset & 3) { @@ -151,7 +150,7 @@ READ8_MEMBER( upd7752_device::read ) return 0xff; } -WRITE8_MEMBER( upd7752_device::write ) +void upd7752_device::write(offs_t offset, uint8_t data) { switch(offset & 3) { |