mirror of
https://github.com/holub/mame
synced 2025-10-07 09:25:34 +03:00
More setname corrections to further expand XML device coverage (nw)
This commit is contained in:
parent
1a98821ef6
commit
070bb4fb3d
@ -1087,7 +1087,7 @@ void ay8910_device::sound_stream_update(sound_stream &stream, stream_sample_t **
|
||||
const device_type AY8912 = &device_creator<ay8912_device>;
|
||||
|
||||
ay8912_device::ay8912_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: ay8910_device(mconfig, AY8912, "AY-3-8912A", tag, owner, clock, "ay8913", __FILE__)
|
||||
: ay8910_device(mconfig, AY8912, "AY-3-8912A", tag, owner, clock, "ay8912", __FILE__)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -108,7 +108,7 @@ a2bus_diskii_device::a2bus_diskii_device(const machine_config &mconfig, const ch
|
||||
}
|
||||
|
||||
a2bus_iwmflop_device::a2bus_iwmflop_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
|
||||
a2bus_floppy_device(mconfig, A2BUS_IWM_FDC, "Apple IWM floppy card", tag, owner, clock, "a2diskii", __FILE__)
|
||||
a2bus_floppy_device(mconfig, A2BUS_IWM_FDC, "Apple IWM floppy card", tag, owner, clock, "a2iwm_flop", __FILE__)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -118,13 +118,13 @@ abc890_device::abc890_device(const machine_config &mconfig, const char *tag, dev
|
||||
}
|
||||
|
||||
abc894_device::abc894_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: abc890_device(mconfig, ABC894, "ABC 894", tag, owner, clock, "abc890", __FILE__)
|
||||
: abc890_device(mconfig, ABC894, "ABC 894", tag, owner, clock, "abc894", __FILE__)
|
||||
{
|
||||
m_slots = 3;
|
||||
}
|
||||
|
||||
abc850_device::abc850_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: abc890_device(mconfig, ABC850, "ABC 850", tag, owner, clock, "abc890", __FILE__)
|
||||
: abc890_device(mconfig, ABC850, "ABC 850", tag, owner, clock, "abc850", __FILE__)
|
||||
{
|
||||
m_slots = 7;
|
||||
}
|
||||
|
@ -72,7 +72,7 @@ c2n_device::c2n_device(const machine_config &mconfig, device_type type, const ch
|
||||
}
|
||||
|
||||
c2n_device::c2n_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: device_t(mconfig, C2N, "C2N", tag, owner, clock, "c2n", __FILE__),
|
||||
: device_t(mconfig, C2N, "C2N Datassette", tag, owner, clock, "c2n", __FILE__),
|
||||
device_pet_datassette_port_interface(mconfig, *this),
|
||||
m_cassette(*this, "cassette")
|
||||
{
|
||||
@ -84,7 +84,7 @@ c2n_device::c2n_device(const machine_config &mconfig, const char *tag, device_t
|
||||
//-------------------------------------------------
|
||||
|
||||
c1530_device::c1530_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: c2n_device(mconfig, C1530, "C1530", tag, owner, clock, "c2n", __FILE__) { }
|
||||
: c2n_device(mconfig, C1530, "C1530 Datassette", tag, owner, clock, "c1530", __FILE__) { }
|
||||
|
||||
|
||||
//-------------------------------------------------
|
||||
@ -92,7 +92,7 @@ c1530_device::c1530_device(const machine_config &mconfig, const char *tag, devic
|
||||
//-------------------------------------------------
|
||||
|
||||
c1531_device::c1531_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: c2n_device(mconfig, C1531, "C1531", tag, owner, clock, "c2n", __FILE__) { }
|
||||
: c2n_device(mconfig, C1531, "C1531 Datassette", tag, owner, clock, "c1531", __FILE__) { }
|
||||
|
||||
|
||||
//-------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user