Previous 199869 Revisions Next

r28769 Thursday 20th March, 2014 at 23:21:28 UTC by Tafoid
Device short name/description fixes to fix noted discrepancies between xml, devices and slots.  (nw)
[src/emu/machine]nscsi_bus.c
[src/mess/machine/ti99]bwg.c ti_fdc.c

trunk/src/emu/machine/nscsi_bus.c
r28768r28769
44const device_type NSCSI_CONNECTOR = &device_creator<nscsi_connector>;
55
66nscsi_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__)
88{
99   devcnt = 0;
1010   memset(dev, 0, sizeof(dev));
trunk/src/mess/machine/ti99/ti_fdc.c
r28768r28769
447447};
448448
449449ti_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__),
451451         m_fd1771(*this, FDCLEG_TAG) { }
452452
453453/*
trunk/src/mess/machine/ti99/bwg.c
r28768r28769
674674    Legacy implementation
675675*/
676676snug_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__),
678678            m_wd1773(*this, FDCLEG_TAG),
679679            m_clock(*this, CLOCK_TAG) { }
680680

Previous 199869 Revisions Next


© 1997-2024 The MAME Team