Previous 199869 Revisions Next

r17579 Thursday 30th August, 2012 at 10:20:20 UTC by smf
(MESS) a little reorganisation while investigating the S1410 SASI to ST506 adapter (nw)
[src/mess/drivers]abc1600.c tdv2324.c v1050.c
[src/mess/machine]lux4105.c rmnimbus.c s1410.h

trunk/src/mess/machine/s1410.h
r17578r17579
1717
1818
1919//**************************************************************************
20//  MACROS / CONSTANTS
21//**************************************************************************
22
23#define S1410_TAG   "s1410"
24
25
26
27//**************************************************************************
2820//  INTERFACE CONFIGURATION MACROS
2921//**************************************************************************
3022
31#define MCFG_S1410_ADD() \
32    MCFG_DEVICE_ADD(S1410_TAG, S1410, 0)
23#define MCFG_S1410_ADD( _tag) \
24    MCFG_DEVICE_ADD(_tag, S1410, 0)
3325
3426
3527
trunk/src/mess/machine/lux4105.c
r17578r17579
8181static MACHINE_CONFIG_FRAGMENT( luxor_4105 )
8282   MCFG_SCSIBUS_ADD(SASIBUS_TAG, sasi_intf)
8383   MCFG_SCSIDEV_ADD(SASIBUS_TAG ":harddisk0", SCSIHD, SCSI_ID_0)
84   MCFG_S1410_ADD("s1410")
8485MACHINE_CONFIG_END
8586
8687
trunk/src/mess/machine/rmnimbus.c
r17578r17579
2525ST225NP         20MB        615     4       17              41720
2626CP3040          40MB        1026    2       40              82080
2727
28Via Xibec S1410 SASI to MFM bridge board - format with WINFORM.EXE
28Via Xebec S1410 SASI to MFM bridge board - format with WINFORM.EXE
2929NP05-10S         8MB        160     6       17              16320
3030NP04-20T        16MB        320     6       17              32640
3131NP03-20         15MB        306     6       17              31212
trunk/src/mess/drivers/v1050.c
r17578r17579
11131113   // SASI bus
11141114   MCFG_SCSIBUS_ADD(SASIBUS_TAG, sasi_intf)
11151115   MCFG_SCSIDEV_ADD(SASIBUS_TAG ":harddisk0", SCSIHD, SCSI_ID_0)
1116   MCFG_S1410_ADD("s1410")
11161117
11171118   MCFG_TIMER_ADD(TIMER_ACK_TAG, sasi_ack_tick)
11181119   MCFG_TIMER_ADD(TIMER_RST_TAG, sasi_rst_tick)
trunk/src/mess/drivers/abc1600.c
r17578r17579
19331933   MCFG_FD1797_ADD(SAB1797_02P_TAG, fdc_intf)
19341934   MCFG_LEGACY_FLOPPY_DRIVE_ADD(FLOPPY_0, abc1600_floppy_interface)
19351935   MCFG_ABC99_ADD(abc99_intf)
1936   MCFG_S1410_ADD()
19371936
19381937   MCFG_ABC1600BUS_SLOT_ADD("bus0i", bus0i_intf, abc1600bus_cards, NULL, NULL)
19391938   MCFG_ABC1600BUS_SLOT_ADD("bus0x", bus0x_intf, abc1600bus_cards, NULL, NULL)
trunk/src/mess/drivers/tdv2324.c
r17578r17579
434434   MCFG_Z80SIO2_ADD(MK3887N4_TAG, 8000000/2, sio_intf)
435435   MCFG_FD1797_ADD(FD1797PL02_TAG, fdc_intf)
436436   MCFG_LEGACY_FLOPPY_DRIVE_ADD(FLOPPY_0, tdv2324_floppy_interface)
437   MCFG_HARDDISK_ADD("harddisk0")
438   MCFG_S1410_ADD() // 104521-F ROM
437   MCFG_S1410_ADD("s1410") // 104521-F ROM
439438
440439   // internal ram
441440   MCFG_RAM_ADD(RAM_TAG)

Previous 199869 Revisions Next


© 1997-2024 The MAME Team