(MESS) a little reorganisation while investigating the S1410 SASI to ST506 adapter (nw)

This commit is contained in:
smf- 2012-08-30 10:20:20 +00:00
parent 5bac802b5f
commit ad02a5db29
6 changed files with 6 additions and 14 deletions

View File

@ -1933,7 +1933,6 @@ static MACHINE_CONFIG_START( abc1600, abc1600_state )
MCFG_FD1797_ADD(SAB1797_02P_TAG, fdc_intf)
MCFG_LEGACY_FLOPPY_DRIVE_ADD(FLOPPY_0, abc1600_floppy_interface)
MCFG_ABC99_ADD(abc99_intf)
MCFG_S1410_ADD()
MCFG_ABC1600BUS_SLOT_ADD("bus0i", bus0i_intf, abc1600bus_cards, NULL, NULL)
MCFG_ABC1600BUS_SLOT_ADD("bus0x", bus0x_intf, abc1600bus_cards, NULL, NULL)

View File

@ -434,8 +434,7 @@ static MACHINE_CONFIG_START( tdv2324, tdv2324_state )
MCFG_Z80SIO2_ADD(MK3887N4_TAG, 8000000/2, sio_intf)
MCFG_FD1797_ADD(FD1797PL02_TAG, fdc_intf)
MCFG_LEGACY_FLOPPY_DRIVE_ADD(FLOPPY_0, tdv2324_floppy_interface)
MCFG_HARDDISK_ADD("harddisk0")
MCFG_S1410_ADD() // 104521-F ROM
MCFG_S1410_ADD("s1410") // 104521-F ROM
// internal ram
MCFG_RAM_ADD(RAM_TAG)

View File

@ -1113,6 +1113,7 @@ static MACHINE_CONFIG_START( v1050, v1050_state )
// SASI bus
MCFG_SCSIBUS_ADD(SASIBUS_TAG, sasi_intf)
MCFG_SCSIDEV_ADD(SASIBUS_TAG ":harddisk0", SCSIHD, SCSI_ID_0)
MCFG_S1410_ADD("s1410")
MCFG_TIMER_ADD(TIMER_ACK_TAG, sasi_ack_tick)
MCFG_TIMER_ADD(TIMER_RST_TAG, sasi_rst_tick)

View File

@ -81,6 +81,7 @@ static const SCSIBus_interface sasi_intf =
static MACHINE_CONFIG_FRAGMENT( luxor_4105 )
MCFG_SCSIBUS_ADD(SASIBUS_TAG, sasi_intf)
MCFG_SCSIDEV_ADD(SASIBUS_TAG ":harddisk0", SCSIHD, SCSI_ID_0)
MCFG_S1410_ADD("s1410")
MACHINE_CONFIG_END

View File

@ -25,7 +25,7 @@ CP3020 20MB 623 2 33 41118
ST225NP 20MB 615 4 17 41720
CP3040 40MB 1026 2 40 82080
Via Xibec S1410 SASI to MFM bridge board - format with WINFORM.EXE
Via Xebec S1410 SASI to MFM bridge board - format with WINFORM.EXE
NP05-10S 8MB 160 6 17 16320
NP04-20T 16MB 320 6 17 32640
NP03-20 15MB 306 6 17 31212

View File

@ -16,20 +16,12 @@
//**************************************************************************
// MACROS / CONSTANTS
//**************************************************************************
#define S1410_TAG "s1410"
//**************************************************************************
// INTERFACE CONFIGURATION MACROS
//**************************************************************************
#define MCFG_S1410_ADD() \
MCFG_DEVICE_ADD(S1410_TAG, S1410, 0)
#define MCFG_S1410_ADD( _tag) \
MCFG_DEVICE_ADD(_tag, S1410, 0)