Previous 199869 Revisions Next

r29455 Tuesday 8th April, 2014 at 15:26:16 UTC by Osso
Missing file (nw)
[src/emu/bus/x68k]x68k_scsiext.c

trunk/src/emu/bus/x68k/x68k_scsiext.c
r29454r29455
1818
1919const device_type X68K_SCSIEXT = &device_creator<x68k_scsiext_device>;
2020
21static const mb89352_interface mb89352_intf =
22{
23   DEVCB_DEVICE_LINE_MEMBER(DEVICE_SELF_OWNER,x68k_scsiext_device,irq_w),
24   DEVCB_DEVICE_LINE_MEMBER(DEVICE_SELF_OWNER,x68k_scsiext_device,drq_w)
25};
26
2721//-------------------------------------------------
2822//  rom_region - device-specific ROM region
2923//-------------------------------------------------
r29454r29455
4842   MCFG_SCSIDEV_ADD("scsi:harddisk4", SCSIHD, SCSI_ID_4)
4943   MCFG_SCSIDEV_ADD("scsi:harddisk5", SCSIHD, SCSI_ID_5)
5044   MCFG_SCSIDEV_ADD("scsi:harddisk6", SCSIHD, SCSI_ID_6)
51   MCFG_MB89352A_ADD("scsi:mb89352",mb89352_intf)
45   MCFG_DEVICE_ADD("scsi:mb89352", MB89352A, 0)
46   MCFG_MB89352A_IRQ_CB(DEVWRITELINE(DEVICE_SELF_OWNER, x68k_scsiext_device, irq_w))
47   MCFG_MB89352A_DRQ_CB(DEVWRITELINE(DEVICE_SELF_OWNER, x68k_scsiext_device, drq_w))
5248MACHINE_CONFIG_END
5349
5450machine_config_constructor x68k_scsiext_device::device_mconfig_additions() const

Previous 199869 Revisions Next


© 1997-2024 The MAME Team