diff options
author | 2014-04-08 15:26:16 +0000 | |
---|---|---|
committer | 2014-04-08 15:26:16 +0000 | |
commit | 1facf76b81c004bc2f9f6e98b0429ec799e09549 (patch) | |
tree | 37f7cac8c74ab914e508c8a13bc6d3104b0dee04 /src/emu/bus/x68k | |
parent | afb350dfc03b5d47152b0683dba9222f69a18774 (diff) |
Missing file (nw)
Diffstat (limited to 'src/emu/bus/x68k')
-rw-r--r-- | src/emu/bus/x68k/x68k_scsiext.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/emu/bus/x68k/x68k_scsiext.c b/src/emu/bus/x68k/x68k_scsiext.c index 65c7dd01264..3fdb821e005 100644 --- a/src/emu/bus/x68k/x68k_scsiext.c +++ b/src/emu/bus/x68k/x68k_scsiext.c @@ -18,12 +18,6 @@ const device_type X68K_SCSIEXT = &device_creator<x68k_scsiext_device>; -static const mb89352_interface mb89352_intf = -{ - DEVCB_DEVICE_LINE_MEMBER(DEVICE_SELF_OWNER,x68k_scsiext_device,irq_w), - DEVCB_DEVICE_LINE_MEMBER(DEVICE_SELF_OWNER,x68k_scsiext_device,drq_w) -}; - //------------------------------------------------- // rom_region - device-specific ROM region //------------------------------------------------- @@ -48,7 +42,9 @@ static MACHINE_CONFIG_FRAGMENT( x68k_scsiext ) MCFG_SCSIDEV_ADD("scsi:harddisk4", SCSIHD, SCSI_ID_4) MCFG_SCSIDEV_ADD("scsi:harddisk5", SCSIHD, SCSI_ID_5) MCFG_SCSIDEV_ADD("scsi:harddisk6", SCSIHD, SCSI_ID_6) - MCFG_MB89352A_ADD("scsi:mb89352",mb89352_intf) + MCFG_DEVICE_ADD("scsi:mb89352", MB89352A, 0) + MCFG_MB89352A_IRQ_CB(DEVWRITELINE(DEVICE_SELF_OWNER, x68k_scsiext_device, irq_w)) + MCFG_MB89352A_DRQ_CB(DEVWRITELINE(DEVICE_SELF_OWNER, x68k_scsiext_device, drq_w)) MACHINE_CONFIG_END machine_config_constructor x68k_scsiext_device::device_mconfig_additions() const |