summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/mm5307.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/mm5307.cpp')
-rw-r--r--src/devices/machine/mm5307.cpp15
1 files changed, 1 insertions, 14 deletions
diff --git a/src/devices/machine/mm5307.cpp b/src/devices/machine/mm5307.cpp
index 312d7cff86b..33699a8fada 100644
--- a/src/devices/machine/mm5307.cpp
+++ b/src/devices/machine/mm5307.cpp
@@ -121,26 +121,13 @@ mm5307ab_device::mm5307ab_device(const machine_config &mconfig, const char *tag,
//-------------------------------------------------
-// device_resolve_objects - resolve objects that
-// may be needed for other devices to set
-// initial conditions at start time
-//-------------------------------------------------
-
-void mm5307_device::device_resolve_objects()
-{
- // Resolve callback
- m_output_cb.resolve_safe();
-}
-
-
-//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------
void mm5307_device::device_start()
{
// Create timer
- m_periodic_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(mm5307_device::periodic_update), this));
+ m_periodic_timer = timer_alloc(FUNC(mm5307_device::periodic_update), this);
// Register for saving
save_item(NAME(m_freq_control));