From 070bb4fb3d6c35bd95a3896dbf1f7b22ccd86fdf Mon Sep 17 00:00:00 2001 From: Scott Stone Date: Wed, 21 Aug 2013 03:31:10 +0000 Subject: [PATCH] More setname corrections to further expand XML device coverage (nw) --- src/emu/sound/ay8910.c | 2 +- src/mess/machine/a2diskii.c | 2 +- src/mess/machine/abc890.c | 4 ++-- src/mess/machine/c2n.c | 6 +++--- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/emu/sound/ay8910.c b/src/emu/sound/ay8910.c index 22540f70b14..707533c5f17 100644 --- a/src/emu/sound/ay8910.c +++ b/src/emu/sound/ay8910.c @@ -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(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__) { } diff --git a/src/mess/machine/a2diskii.c b/src/mess/machine/a2diskii.c index e1b27ea7a2e..c73d1927dd5 100644 --- a/src/mess/machine/a2diskii.c +++ b/src/mess/machine/a2diskii.c @@ -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__) { } diff --git a/src/mess/machine/abc890.c b/src/mess/machine/abc890.c index 45f03f99fbd..a0ddb80c455 100644 --- a/src/mess/machine/abc890.c +++ b/src/mess/machine/abc890.c @@ -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; } diff --git a/src/mess/machine/c2n.c b/src/mess/machine/c2n.c index a6b8c1ca75d..5e27dbc034f 100644 --- a/src/mess/machine/c2n.c +++ b/src/mess/machine/c2n.c @@ -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__) { } //-------------------------------------------------