summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-05-25 15:45:22 -0400
committer AJR <ajrhacker@users.noreply.github.com>2018-05-25 15:48:39 -0400
commitacfd09004ec870edd9cbb561d6d007cfa67b0b57 (patch)
tree4d0603a2e2f4cf292ad21a76b8c47cfa02ede01d /src/mame/includes
parent02a4f6fd888f8538151199a8d23d673954534f9b (diff)
taito_b.cpp: Add clock for TC0180VCU; use device finder instead of machine().device (nw)
Diffstat (limited to 'src/mame/includes')
-rw-r--r--src/mame/includes/taito_b.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/includes/taito_b.h b/src/mame/includes/taito_b.h
index 114f60214b4..60ba3526d45 100644
--- a/src/mame/includes/taito_b.h
+++ b/src/mame/includes/taito_b.h
@@ -30,6 +30,7 @@ public:
m_pixelram(*this, "pixelram"),
m_maincpu(*this, "maincpu"),
m_audiocpu(*this, "audiocpu"),
+ m_ym(*this, "ymsnd"),
m_hd63484(*this, "hd63484"),
m_tc0180vcu(*this, "tc0180vcu"),
m_tc0640fio(*this, "tc0640fio"),
@@ -157,7 +158,7 @@ private:
/* devices */
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_audiocpu;
- device_t *m_ym;
+ required_device<device_t> m_ym;
optional_device<hd63484_device> m_hd63484;
required_device<tc0180vcu_device> m_tc0180vcu;
optional_device<tc0640fio_device> m_tc0640fio;