diff options
Diffstat (limited to 'src/devices/machine/dmac.cpp')
-rw-r--r-- | src/devices/machine/dmac.cpp | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/devices/machine/dmac.cpp b/src/devices/machine/dmac.cpp index 8852bc2f4cf..fd939c981c4 100644 --- a/src/devices/machine/dmac.cpp +++ b/src/devices/machine/dmac.cpp @@ -40,9 +40,9 @@ amiga_dmac_device::amiga_dmac_device(const machine_config &mconfig, const char * m_cfgout_handler(*this), m_int_handler(*this), m_xdack_handler(*this), - m_scsi_read_handler(*this), + m_scsi_read_handler(*this, 0), m_scsi_write_handler(*this), - m_io_read_handler(*this), + m_io_read_handler(*this, 0), m_io_write_handler(*this), m_space(nullptr), m_rom(nullptr), @@ -64,14 +64,6 @@ amiga_dmac_device::amiga_dmac_device(const machine_config &mconfig, const char * void amiga_dmac_device::device_start() { - // resolve callbacks - m_cfgout_handler.resolve_safe(); - m_int_handler.resolve_safe(); - m_xdack_handler.resolve_safe(); - m_scsi_read_handler.resolve_safe(0); - m_scsi_write_handler.resolve_safe(); - m_io_read_handler.resolve_safe(0); - m_io_write_handler.resolve_safe(); } //------------------------------------------------- |