mirror of
https://github.com/holub/mame
synced 2025-04-21 07:52:35 +03:00
Device short name/description fixes to fix noted discrepancies between xml, devices and slots. (nw)
This commit is contained in:
parent
5f18171d6d
commit
3c3e635251
@ -4,7 +4,7 @@ const device_type NSCSI_BUS = &device_creator<nscsi_bus_device>;
|
||||
const device_type NSCSI_CONNECTOR = &device_creator<nscsi_connector>;
|
||||
|
||||
nscsi_bus_device::nscsi_bus_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
|
||||
device_t(mconfig, NSCSI_BUS, "SCSI Bus", tag, owner, clock, "nscsi_bus", __FILE__)
|
||||
device_t(mconfig, NSCSI_BUS, "NSCSI Bus", tag, owner, clock, "nscsi_bus", __FILE__)
|
||||
{
|
||||
devcnt = 0;
|
||||
memset(dev, 0, sizeof(dev));
|
||||
|
@ -674,7 +674,7 @@ const device_type TI99_BWG = &device_creator<snug_bwg_device>;
|
||||
Legacy implementation
|
||||
*/
|
||||
snug_bwg_legacy_device::snug_bwg_legacy_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: ti_expansion_card_device(mconfig, TI99_BWG_LEG, "SNUG BwG Floppy Controller (legacy)", tag, owner, clock, "ti99_bwg", __FILE__),
|
||||
: ti_expansion_card_device(mconfig, TI99_BWG_LEG, "SNUG BwG Floppy Controller LEGACY", tag, owner, clock, "ti99_bwg_leg", __FILE__),
|
||||
m_wd1773(*this, FDCLEG_TAG),
|
||||
m_clock(*this, CLOCK_TAG) { }
|
||||
|
||||
|
@ -447,7 +447,7 @@ const wd17xx_interface ti_wd17xx_interface =
|
||||
};
|
||||
|
||||
ti_fdc_legacy_device::ti_fdc_legacy_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: ti_expansion_card_device(mconfig, TI99_FDC_LEG, "TI-99 Standard DSSD Floppy Controller (legacy)", tag, owner, clock, "ti99_fdc", __FILE__),
|
||||
: ti_expansion_card_device(mconfig, TI99_FDC_LEG, "TI-99 Standard DSSD Floppy Controller LEGACY", tag, owner, clock, "ti99_fdc_leg", __FILE__),
|
||||
m_fd1771(*this, FDCLEG_TAG) { }
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user