summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/mea8000.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/mea8000.cpp')
-rw-r--r--src/mame/audio/mea8000.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/audio/mea8000.cpp b/src/mame/audio/mea8000.cpp
index 306fec1ac3e..a96098a83ce 100644
--- a/src/mame/audio/mea8000.cpp
+++ b/src/mame/audio/mea8000.cpp
@@ -114,10 +114,10 @@ static const int pi_table[32] =
const device_type MEA8000 = &device_creator<mea8000_device>;
-mea8000_device::mea8000_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
- device_t(mconfig, MEA8000, "Philips / Signetics MEA 8000 speech synthesizer", tag, owner, clock, "mea8000", __FILE__),
- m_write_req(*this),
- m_dac(*this)
+mea8000_device::mea8000_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
+ : device_t(mconfig, MEA8000, "Philips / Signetics MEA 8000 speech synthesizer", tag, owner, clock, "mea8000", __FILE__)
+ , m_write_req(*this)
+ , m_dac(*this, finder_base::DUMMY_TAG)
{
}