diff options
author | 2018-08-13 18:40:46 -0400 | |
---|---|---|
committer | 2018-08-13 18:40:46 -0400 | |
commit | f21ebf0ba17d80036676ff2f63bd185f21d6174a (patch) | |
tree | 6f662ca38c4a1369d99552ad4487dc756e1c261d /src/devices/sound/mos7360.cpp | |
parent | 279a202abbf04395e008b0bdc0ec1a516127b051 (diff) |
plus4: Use input merger for IRQ (nw)
mos7360: Replace MCFG_ macro with devcb; remove totally unnecessary use of machine().device (nw)
Diffstat (limited to 'src/devices/sound/mos7360.cpp')
-rw-r--r-- | src/devices/sound/mos7360.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/devices/sound/mos7360.cpp b/src/devices/sound/mos7360.cpp index db59db39d03..f1ced2e6a9e 100644 --- a/src/devices/sound/mos7360.cpp +++ b/src/devices/sound/mos7360.cpp @@ -279,10 +279,6 @@ mos7360_device::mos7360_device(const machine_config &mconfig, const char *tag, d void mos7360_device::device_start() { - // get the CPU device - m_cpu = machine().device<cpu_device>(m_cpu_tag); - assert(m_cpu != nullptr); - // resolve callbacks m_write_irq.resolve_safe(); m_read_k.resolve_safe(0xff); |