diff options
Diffstat (limited to 'src/devices/machine/upd7001.cpp')
-rw-r--r-- | src/devices/machine/upd7001.cpp | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/src/devices/machine/upd7001.cpp b/src/devices/machine/upd7001.cpp index 949d3d1234b..9f0c63de2d4 100644 --- a/src/devices/machine/upd7001.cpp +++ b/src/devices/machine/upd7001.cpp @@ -40,7 +40,7 @@ DEFINE_DEVICE_TYPE(UPD7001, upd7001_device, "upd7001", "NEC uPD7001 A/D Converte upd7001_device::upd7001_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock) : device_t(mconfig, UPD7001, tag, owner, clock) - , m_an_callback(*this) + , m_an_callback(*this, 0) , m_eoc_callback(*this) , m_res(0.0) , m_cap(0.0) @@ -61,18 +61,6 @@ upd7001_device::upd7001_device(const machine_config &mconfig, const char *tag, d //------------------------------------------------- -// device_resolve_objects - -//------------------------------------------------- - -void upd7001_device::device_resolve_objects() -{ - // resolve callbacks - m_an_callback.resolve_all_safe(0); - m_eoc_callback.resolve_safe(); -} - - -//------------------------------------------------- // device_start - device-specific startup //------------------------------------------------- |