trunk/src/emu/machine/nscsi_bus.c
| r28768 | r28769 | |
| 4 | 4 | const device_type NSCSI_CONNECTOR = &device_creator<nscsi_connector>; |
| 5 | 5 | |
| 6 | 6 | nscsi_bus_device::nscsi_bus_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : |
| 7 | | device_t(mconfig, NSCSI_BUS, "SCSI Bus", tag, owner, clock, "nscsi_bus", __FILE__) |
| 7 | device_t(mconfig, NSCSI_BUS, "NSCSI Bus", tag, owner, clock, "nscsi_bus", __FILE__) |
| 8 | 8 | { |
| 9 | 9 | devcnt = 0; |
| 10 | 10 | memset(dev, 0, sizeof(dev)); |
trunk/src/mess/machine/ti99/ti_fdc.c
| r28768 | r28769 | |
| 447 | 447 | }; |
| 448 | 448 | |
| 449 | 449 | ti_fdc_legacy_device::ti_fdc_legacy_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 450 | | : ti_expansion_card_device(mconfig, TI99_FDC_LEG, "TI-99 Standard DSSD Floppy Controller (legacy)", tag, owner, clock, "ti99_fdc", __FILE__), |
| 450 | : ti_expansion_card_device(mconfig, TI99_FDC_LEG, "TI-99 Standard DSSD Floppy Controller LEGACY", tag, owner, clock, "ti99_fdc_leg", __FILE__), |
| 451 | 451 | m_fd1771(*this, FDCLEG_TAG) { } |
| 452 | 452 | |
| 453 | 453 | /* |
trunk/src/mess/machine/ti99/bwg.c
| r28768 | r28769 | |
| 674 | 674 | Legacy implementation |
| 675 | 675 | */ |
| 676 | 676 | snug_bwg_legacy_device::snug_bwg_legacy_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 677 | | : ti_expansion_card_device(mconfig, TI99_BWG_LEG, "SNUG BwG Floppy Controller (legacy)", tag, owner, clock, "ti99_bwg", __FILE__), |
| 677 | : ti_expansion_card_device(mconfig, TI99_BWG_LEG, "SNUG BwG Floppy Controller LEGACY", tag, owner, clock, "ti99_bwg_leg", __FILE__), |
| 678 | 678 | m_wd1773(*this, FDCLEG_TAG), |
| 679 | 679 | m_clock(*this, CLOCK_TAG) { } |
| 680 | 680 | |