summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/discrete.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/discrete.cpp')
-rw-r--r--src/devices/sound/discrete.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/discrete.cpp b/src/devices/sound/discrete.cpp
index 8e0ff993dc4..2b3a47dbfb8 100644
--- a/src/devices/sound/discrete.cpp
+++ b/src/devices/sound/discrete.cpp
@@ -1090,7 +1090,7 @@ void discrete_sound_device::sound_stream_update(sound_stream &stream, stream_sam
// read - read from the chip's registers and internal RAM
//-------------------------------------------------
-READ8_MEMBER( discrete_device::read )
+uint8_t discrete_device::read(offs_t offset)
{
const discrete_base_node *node = discrete_find_node(offset);
@@ -1114,7 +1114,7 @@ READ8_MEMBER( discrete_device::read )
// write - write to the chip's registers and internal RAM
//-------------------------------------------------
-WRITE8_MEMBER( discrete_device::write )
+void discrete_device::write(offs_t offset, uint8_t data)
{
const discrete_base_node *node = discrete_find_node(offset);