diff options
Diffstat (limited to 'src/devices/sound/s14001a.cpp')
-rw-r--r-- | src/devices/sound/s14001a.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/sound/s14001a.cpp b/src/devices/sound/s14001a.cpp index 75227c22c2d..524e996e31c 100644 --- a/src/devices/sound/s14001a.cpp +++ b/src/devices/sound/s14001a.cpp @@ -304,25 +304,25 @@ void s14001a_device::force_update() m_stream->update(); } -READ_LINE_MEMBER(s14001a_device::romen_r) +int s14001a_device::romen_r() { m_stream->update(); return (m_bPhase1) ? 1 : 0; } -READ_LINE_MEMBER(s14001a_device::busy_r) +int s14001a_device::busy_r() { m_stream->update(); return (m_bBusyP1) ? 1 : 0; } -WRITE8_MEMBER(s14001a_device::data_w) +void s14001a_device::data_w(uint8_t data) { m_stream->update(); m_uWord = data & 0x3f; // C0-C5 } -WRITE_LINE_MEMBER(s14001a_device::start_w) +void s14001a_device::start_w(int state) { m_stream->update(); m_bStart = (state != 0); |