summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/wpcsnd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/wpcsnd.c')
-rw-r--r--src/mame/audio/wpcsnd.c16
1 files changed, 7 insertions, 9 deletions
diff --git a/src/mame/audio/wpcsnd.c b/src/mame/audio/wpcsnd.c
index 7da9a7d30db..a05afb14c01 100644
--- a/src/mame/audio/wpcsnd.c
+++ b/src/mame/audio/wpcsnd.c
@@ -13,13 +13,13 @@ const device_type WPCSND = &device_creator<wpcsnd_device>;
wpcsnd_device::wpcsnd_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig,WPCSND,"Williams WPC Sound",tag,owner,clock, "wpcsnd", __FILE__),
- m_cpu(*this,"bgcpu"),
- m_ym2151(*this,"ym2151"),
- m_hc55516(*this,"hc55516"),
- m_dac(*this,"dac"),
- m_cpubank(*this,"rombank"),
- m_fixedbank(*this,"fixed"),
- m_reply_cb(*this)
+ m_cpu(*this,"bgcpu"),
+ m_ym2151(*this,"ym2151"),
+ m_hc55516(*this,"hc55516"),
+ m_dac(*this,"dac"),
+ m_cpubank(*this,"rombank"),
+ m_fixedbank(*this,"fixed"),
+ m_reply_cb(*this)
{
}
@@ -164,6 +164,4 @@ WRITE8_MEMBER(wpcsnd_device::latch_w)
WRITE8_MEMBER(wpcsnd_device::volume_w)
{
-
}
-