From 3c46c03671b6942d4db31154997abfd000489e35 Mon Sep 17 00:00:00 2001 From: Scott Stone Date: Fri, 18 Apr 2014 16:47:16 +0000 Subject: [PATCH] Some changes/corrections to device descriptions per Dev request (nw) --- src/emu/cpu/m6809/konami.c | 2 +- src/emu/machine/k033906.c | 2 +- src/emu/machine/k053252.c | 2 +- src/emu/machine/k056230.c | 2 +- src/emu/machine/mc68328.c | 2 +- src/emu/machine/mc6843.c | 2 +- src/emu/machine/mc6846.c | 2 +- src/emu/machine/mc6854.c | 2 +- src/emu/machine/tc009xlvc.c | 2 +- src/emu/sound/k005289.c | 2 +- src/emu/sound/k007232.c | 2 +- src/emu/sound/k051649.c | 2 +- src/emu/sound/k053260.c | 4 ++-- src/emu/sound/k054539.c | 2 +- src/emu/sound/k056800.c | 2 +- src/mame/video/k001005.c | 2 +- src/mame/video/k001006.c | 2 +- src/mame/video/k001604.c | 2 +- src/mame/video/k007121.c | 2 +- src/mame/video/k007342.c | 2 +- src/mame/video/k007420.c | 2 +- src/mame/video/k037122.c | 2 +- src/mame/video/k051316.c | 2 +- src/mame/video/k051733.c | 2 +- src/mame/video/k051960.c | 2 +- src/mame/video/k052109.c | 2 +- src/mame/video/k053244_k053245.c | 2 +- src/mame/video/k053246_k053247_k055673.c | 4 ++-- src/mame/video/k053250.c | 2 +- src/mame/video/k053251.c | 2 +- src/mame/video/k053936.c | 2 +- src/mame/video/k054000.c | 2 +- src/mame/video/k054156_k054157_k056832.c | 2 +- src/mame/video/k054338.c | 2 +- src/mame/video/k055555.c | 2 +- 35 files changed, 37 insertions(+), 37 deletions(-) diff --git a/src/emu/cpu/m6809/konami.c b/src/emu/cpu/m6809/konami.c index 4d192b24277..ea1090e69a3 100644 --- a/src/emu/cpu/m6809/konami.c +++ b/src/emu/cpu/m6809/konami.c @@ -85,7 +85,7 @@ const device_type KONAMI = &device_creator; //------------------------------------------------- konami_cpu_device::konami_cpu_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : m6809_base_device(mconfig, "Konami 052100 CPU", tag, owner, clock, KONAMI, 1, "konami_cpu", __FILE__) + : m6809_base_device(mconfig, "KONAMI CPU", tag, owner, clock, KONAMI, 1, "konami_cpu", __FILE__) { } diff --git a/src/emu/machine/k033906.c b/src/emu/machine/k033906.c index cbbcac9c955..592c2cf52d6 100644 --- a/src/emu/machine/k033906.c +++ b/src/emu/machine/k033906.c @@ -21,7 +21,7 @@ const device_type K033906 = &device_creator; //------------------------------------------------- k033906_device::k033906_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K033906, "Konami 033906 PCI bridge", tag, owner, clock, "k033906", __FILE__) + : device_t(mconfig, K033906, "K033906 PCI bridge", tag, owner, clock, "k033906", __FILE__) { } diff --git a/src/emu/machine/k053252.c b/src/emu/machine/k053252.c index bf22436b14e..e6bd62e5cc1 100644 --- a/src/emu/machine/k053252.c +++ b/src/emu/machine/k053252.c @@ -64,7 +64,7 @@ TODO: const device_type K053252 = &device_creator; k053252_device::k053252_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K053252, "Konami 053252 Timing/Interrupt Device", tag, owner, clock, "k053252", __FILE__), + : device_t(mconfig, K053252, "K053252 Timing/Interrupt Device", tag, owner, clock, "k053252", __FILE__), device_video_interface(mconfig, *this), m_int1_en_cb(*this), m_int2_en_cb(*this), diff --git a/src/emu/machine/k056230.c b/src/emu/machine/k056230.c index 841b8bbcffd..fc50087c550 100644 --- a/src/emu/machine/k056230.c +++ b/src/emu/machine/k056230.c @@ -20,7 +20,7 @@ const device_type K056230 = &device_creator; //------------------------------------------------- k056230_device::k056230_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K056230, "Konami 056230 LANC", tag, owner, clock, "k056230", __FILE__), + : device_t(mconfig, K056230, "K056230 LANC", tag, owner, clock, "k056230", __FILE__), m_is_thunderh(0), m_cpu(*this) { diff --git a/src/emu/machine/mc68328.c b/src/emu/machine/mc68328.c index 9e0fedb8552..e2249ed5705 100644 --- a/src/emu/machine/mc68328.c +++ b/src/emu/machine/mc68328.c @@ -31,7 +31,7 @@ const device_type MC68328 = &device_creator; mc68328_device::mc68328_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, MC68328, "Motorola MC68328 (DragonBall) Integrated Processor", tag, owner, clock, "mc68328", __FILE__), + : device_t(mconfig, MC68328, "MC68328 (DragonBall) Integrated Processor", tag, owner, clock, "mc68328", __FILE__), m_out_port_a_cb(*this), m_out_port_b_cb(*this), m_out_port_c_cb(*this), diff --git a/src/emu/machine/mc6843.c b/src/emu/machine/mc6843.c index afc9c6a2423..d8e9e093d8e 100644 --- a/src/emu/machine/mc6843.c +++ b/src/emu/machine/mc6843.c @@ -73,7 +73,7 @@ static const char *const mc6843_cmd[16] = const device_type MC6843 = &device_creator; mc6843_device::mc6843_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, MC6843, "Motorola MC6843 floppy controller", tag, owner, clock, "mc6843", __FILE__), + : device_t(mconfig, MC6843, "MC6843 floppy controller", tag, owner, clock, "mc6843", __FILE__), m_write_irq(*this), m_CTAR(0), m_CMR(0), diff --git a/src/emu/machine/mc6846.c b/src/emu/machine/mc6846.c index 54d81d7da0f..e10cee84db3 100644 --- a/src/emu/machine/mc6846.c +++ b/src/emu/machine/mc6846.c @@ -44,7 +44,7 @@ const device_type MC6846 = &device_creator; mc6846_device::mc6846_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, MC6846, "Motorola MC6846 programmable timer", tag, owner, clock, "mc6846", __FILE__), + : device_t(mconfig, MC6846, "MC6846 Programmable Timer", tag, owner, clock, "mc6846", __FILE__), m_out_port_cb(*this), m_out_cp1_cb(*this), m_out_cp2_cb(*this), diff --git a/src/emu/machine/mc6854.c b/src/emu/machine/mc6854.c index 479352543f2..83405a12dba 100644 --- a/src/emu/machine/mc6854.c +++ b/src/emu/machine/mc6854.c @@ -166,7 +166,7 @@ static const int word_length[4] = { 5, 6, 7, 8 }; const device_type MC6854 = &device_creator; mc6854_device::mc6854_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, MC6854, "Motorola MC6854 ADLC", tag, owner, clock, "mc6854", __FILE__), + : device_t(mconfig, MC6854, "MC6854 ADLC", tag, owner, clock, "mc6854", __FILE__), m_cr1(0), m_cr2(0), m_cr3(0), diff --git a/src/emu/machine/tc009xlvc.c b/src/emu/machine/tc009xlvc.c index 937332ea703..9d1ea169708 100644 --- a/src/emu/machine/tc009xlvc.c +++ b/src/emu/machine/tc009xlvc.c @@ -165,7 +165,7 @@ static ADDRESS_MAP_START( tc0091lvc_map8, AS_0, 8, tc0091lvc_device ) ADDRESS_MAP_END tc0091lvc_device::tc0091lvc_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, TC0091LVC, "TC0091LVC (Custom Z80 CPU + Video)", tag, owner, clock, "tc0091lvc", __FILE__), + : device_t(mconfig, TC0091LVC, "Taito TC0091LVC", tag, owner, clock, "tc0091lvc", __FILE__), device_memory_interface(mconfig, *this), m_space_config("tc0091lvc", ENDIANNESS_LITTLE, 8,20, 0, NULL, *ADDRESS_MAP_NAME(tc0091lvc_map8)), m_gfxdecode(*this), diff --git a/src/emu/sound/k005289.c b/src/emu/sound/k005289.c index cdbca0f0d8e..7ead94e88fe 100644 --- a/src/emu/sound/k005289.c +++ b/src/emu/sound/k005289.c @@ -52,7 +52,7 @@ const device_type K005289 = &device_creator; //------------------------------------------------- k005289_device::k005289_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K005289, "Konami 005289 SCC", tag, owner, clock, "k005289", __FILE__), + : device_t(mconfig, K005289, "K005289 SCC", tag, owner, clock, "k005289", __FILE__), device_sound_interface(mconfig, *this), m_sound_prom(NULL), m_stream(NULL), diff --git a/src/emu/sound/k007232.c b/src/emu/sound/k007232.c index 3deb6e9d1a6..7eb956ac4a6 100644 --- a/src/emu/sound/k007232.c +++ b/src/emu/sound/k007232.c @@ -146,7 +146,7 @@ static const float kdaca_fn[][2] = { const device_type K007232 = &device_creator; k007232_device::k007232_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K007232, "Konami 007232 PCM Controller", tag, owner, clock, "k007232", __FILE__), + : device_t(mconfig, K007232, "K007232 PCM Controller", tag, owner, clock, "k007232", __FILE__), device_sound_interface(mconfig, *this), m_port_write_handler(*this) { diff --git a/src/emu/sound/k051649.c b/src/emu/sound/k051649.c index 4e40e0b0567..00e59790e12 100644 --- a/src/emu/sound/k051649.c +++ b/src/emu/sound/k051649.c @@ -42,7 +42,7 @@ const device_type K051649 = &device_creator; //------------------------------------------------- k051649_device::k051649_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K051649, "Konami 051649 SCC1", tag, owner, clock, "k051649", __FILE__), + : device_t(mconfig, K051649, "K051649 SCC1", tag, owner, clock, "k051649", __FILE__), device_sound_interface(mconfig, *this), m_stream(NULL), m_mclock(0), diff --git a/src/emu/sound/k053260.c b/src/emu/sound/k053260.c index ee615f74187..51eb05e600d 100644 --- a/src/emu/sound/k053260.c +++ b/src/emu/sound/k053260.c @@ -27,7 +27,7 @@ const device_type K053260 = &device_creator; //------------------------------------------------- k053260_device::k053260_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K053260, "Konami 053260 PCM", tag, owner, clock, "k053260", __FILE__), + : device_t(mconfig, K053260, "K053260 PCM", tag, owner, clock, "k053260", __FILE__), device_sound_interface(mconfig, *this), m_channel(NULL), m_mode(0), @@ -255,7 +255,7 @@ void k053260_device::check_bounds( int channel ) int channel_end = channel_start + m_channels[channel].size - 1; if ( channel_start > m_rom_size ) { - logerror("K53260: Attempting to start playing past the end of the ROM ( start = %06x, end = %06x ).\n", channel_start, channel_end ); + logerror("K053260: Attempting to start playing past the end of the ROM ( start = %06x, end = %06x ).\n", channel_start, channel_end ); m_channels[channel].play = 0; diff --git a/src/emu/sound/k054539.c b/src/emu/sound/k054539.c index d3cad54639b..e6a6c02ed98 100644 --- a/src/emu/sound/k054539.c +++ b/src/emu/sound/k054539.c @@ -16,7 +16,7 @@ const device_type K054539 = &device_creator; #define LOG(x) do { if (VERBOSE) logerror x; } while (0) k054539_device::k054539_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K054539, "Konami 054539 ADPCM", tag, owner, clock, "k054539", __FILE__), + : device_t(mconfig, K054539, "K054539 ADPCM", tag, owner, clock, "k054539", __FILE__), device_sound_interface(mconfig, *this), m_timer_handler(*this) { diff --git a/src/emu/sound/k056800.c b/src/emu/sound/k056800.c index 0bd8722a882..ed6d14f3c95 100644 --- a/src/emu/sound/k056800.c +++ b/src/emu/sound/k056800.c @@ -19,7 +19,7 @@ const device_type K056800 = &device_creator; //------------------------------------------------- k056800_device::k056800_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K056800, "Konami 056800 MIRAC", tag, owner, clock, "k056800", __FILE__), + : device_t(mconfig, K056800, "K056800 MIRAC", tag, owner, clock, "k056800", __FILE__), m_int_handler(*this) { } diff --git a/src/mame/video/k001005.c b/src/mame/video/k001005.c index 6b437334970..f2827a87b17 100644 --- a/src/mame/video/k001005.c +++ b/src/mame/video/k001005.c @@ -28,7 +28,7 @@ struct poly_extra_data const device_type K001005 = &device_creator; k001005_device::k001005_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K001005, "Konami 001005 3D Pixel Renderer", tag, owner, clock, "k001005", __FILE__), + : device_t(mconfig, K001005, "K001005 3D Pixel Renderer", tag, owner, clock, "k001005", __FILE__), device_video_interface(mconfig, *this), m_cpu(NULL), m_dsp(NULL), diff --git a/src/mame/video/k001006.c b/src/mame/video/k001006.c index 2995f5d7732..c76c21df6e8 100644 --- a/src/mame/video/k001006.c +++ b/src/mame/video/k001006.c @@ -16,7 +16,7 @@ const device_type K001006 = &device_creator; k001006_device::k001006_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K001006, "Konami 001006 3D Texel Renderer", tag, owner, clock, "k001006", __FILE__), + : device_t(mconfig, K001006, "K001006 3D Texel Renderer", tag, owner, clock, "k001006", __FILE__), m_pal_ram(NULL), m_unknown_ram(NULL), m_addr(0), diff --git a/src/mame/video/k001604.c b/src/mame/video/k001604.c index d81b839626f..38b88783e21 100644 --- a/src/mame/video/k001604.c +++ b/src/mame/video/k001604.c @@ -16,7 +16,7 @@ const device_type K001604 = &device_creator; k001604_device::k001604_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K001604, "Konami 001604 2D tilemaps + 2x ROZ", tag, owner, clock, "k001604", __FILE__), + : device_t(mconfig, K001604, "K001604 2D tilemaps + 2x ROZ", tag, owner, clock, "k001604", __FILE__), m_gfx_index_1(0), m_gfx_index_2(0), m_layer_size(0), diff --git a/src/mame/video/k007121.c b/src/mame/video/k007121.c index 70c41d25645..e1ceeb34f3e 100644 --- a/src/mame/video/k007121.c +++ b/src/mame/video/k007121.c @@ -117,7 +117,7 @@ control registers const device_type K007121 = &device_creator; k007121_device::k007121_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K007121, "Konami 007121 Sprite/Tilemap Controller", tag, owner, clock, "k007121", __FILE__), + : device_t(mconfig, K007121, "K007121 Sprite/Tilemap Controller", tag, owner, clock, "k007121", __FILE__), m_flipscreen(0), m_palette(*this) { diff --git a/src/mame/video/k007342.c b/src/mame/video/k007342.c index b4858f6343a..75edbdb9cfc 100644 --- a/src/mame/video/k007342.c +++ b/src/mame/video/k007342.c @@ -36,7 +36,7 @@ control registers const device_type K007342 = &device_creator; k007342_device::k007342_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K007342, "Konami 007342 Video Controller", tag, owner, clock, "k007342", __FILE__), + : device_t(mconfig, K007342, "K007342 Video Controller", tag, owner, clock, "k007342", __FILE__), m_ram(NULL), m_scroll_ram(NULL), m_videoram_0(NULL), diff --git a/src/mame/video/k007420.c b/src/mame/video/k007420.c index 70944658907..23d101561c2 100644 --- a/src/mame/video/k007420.c +++ b/src/mame/video/k007420.c @@ -17,7 +17,7 @@ and a variable amount of ROM. Nothing is known about its external interface. const device_type K007420 = &device_creator; k007420_device::k007420_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K007420, "Konami 007420 Sprite Generator", tag, owner, clock, "k007420", __FILE__), + : device_t(mconfig, K007420, "K007420 Sprite Generator", tag, owner, clock, "k007420", __FILE__), m_ram(NULL), m_flipscreen(0), m_palette(*this), diff --git a/src/mame/video/k037122.c b/src/mame/video/k037122.c index fdf1d16a2a3..c42c8f9b573 100644 --- a/src/mame/video/k037122.c +++ b/src/mame/video/k037122.c @@ -14,7 +14,7 @@ Konami 037122 const device_type K037122 = &device_creator; k037122_device::k037122_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K037122, "Konami 037122 2D Tilemap", tag, owner, clock, "k037122", __FILE__), + : device_t(mconfig, K037122, "K037122 2D Tilemap", tag, owner, clock, "k037122", __FILE__), device_video_interface(mconfig, *this), m_tile_ram(NULL), m_char_ram(NULL), diff --git a/src/mame/video/k051316.c b/src/mame/video/k051316.c index 2ec0d736f8c..9ad2ce1d8c5 100644 --- a/src/mame/video/k051316.c +++ b/src/mame/video/k051316.c @@ -46,7 +46,7 @@ control registers const device_type K051316 = &device_creator; k051316_device::k051316_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K051316, "Konami 051316 Video Controller", tag, owner, clock, "k051316", __FILE__), + : device_t(mconfig, K051316, "K051316 Video Controller", tag, owner, clock, "k051316", __FILE__), m_ram(NULL), //m_tmap, //m_ctrlram[16], diff --git a/src/mame/video/k051733.c b/src/mame/video/k051733.c index 01944fc09b5..bb88894b4b0 100644 --- a/src/mame/video/k051733.c +++ b/src/mame/video/k051733.c @@ -63,7 +63,7 @@ reads from 0x0006, and only uses bit 1. const device_type K051733 = &device_creator; k051733_device::k051733_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K051733, "Konami 051733 Protection Device", tag, owner, clock, "k051733", __FILE__), + : device_t(mconfig, K051733, "K051733 Protection Device", tag, owner, clock, "k051733", __FILE__), //m_ram[0x20], m_rng(0) { diff --git a/src/mame/video/k051960.c b/src/mame/video/k051960.c index f9d515a02f4..d09e5383c66 100644 --- a/src/mame/video/k051960.c +++ b/src/mame/video/k051960.c @@ -64,7 +64,7 @@ memory map: const device_type K051960 = &device_creator; k051960_device::k051960_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K051960, "Konami 051960 Sprite Generator", tag, owner, clock, "k051960", __FILE__), + : device_t(mconfig, K051960, "K051960 Sprite Generator", tag, owner, clock, "k051960", __FILE__), m_ram(NULL), m_gfx(NULL), //m_spriterombank[3], diff --git a/src/mame/video/k052109.c b/src/mame/video/k052109.c index 583d7d49f3f..ab62144569e 100644 --- a/src/mame/video/k052109.c +++ b/src/mame/video/k052109.c @@ -130,7 +130,7 @@ to through the chip. const device_type K052109 = &device_creator; k052109_device::k052109_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K052109, "Konami 052109 Sprite/Tilemap Generator", tag, owner, clock, "k052109", __FILE__), + : device_t(mconfig, K052109, "K052109 Sprite/Tilemap Generator", tag, owner, clock, "k052109", __FILE__), m_ram(NULL), m_videoram_F(NULL), m_videoram_A(NULL), diff --git a/src/mame/video/k053244_k053245.c b/src/mame/video/k053244_k053245.c index 02f66d19545..0c15ed272fc 100644 --- a/src/mame/video/k053244_k053245.c +++ b/src/mame/video/k053244_k053245.c @@ -42,7 +42,7 @@ main ram and the buffer. const device_type K053244 = &device_creator; k05324x_device::k05324x_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K053244, "Konami 053244 & 053245 Sprite Generator", tag, owner, clock, "k05324x", __FILE__), + : device_t(mconfig, K053244, "K053244 & 053245 Sprite Generator", tag, owner, clock, "k05324x", __FILE__), m_ram(NULL), m_buffer(NULL), m_gfx(NULL), diff --git a/src/mame/video/k053246_k053247_k055673.c b/src/mame/video/k053246_k053247_k055673.c index 17b53fda3f5..8ba65da906a 100644 --- a/src/mame/video/k053246_k053247_k055673.c +++ b/src/mame/video/k053246_k053247_k055673.c @@ -969,7 +969,7 @@ void k053247_device::zdrawgfxzoom32GP( const device_type K055673 = &device_creator; k055673_device::k055673_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : k053247_device(mconfig, K055673, "Konami 055673 Sprite Generator", tag, owner, clock, "k055673", __FILE__) + : k053247_device(mconfig, K055673, "K055673 Sprite Generator", tag, owner, clock, "k055673", __FILE__) { } @@ -996,7 +996,7 @@ void k055673_device::device_start() const device_type K053246 = &device_creator; k053247_device::k053247_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K053246, "Konami 053246 & 053247 Sprite Generator", tag, owner, clock, "k053247", __FILE__), + : device_t(mconfig, K053246, "K053246 & 053247 Sprite Generator", tag, owner, clock, "k053247", __FILE__), device_video_interface(mconfig, *this), m_gfxdecode(*this), m_palette(*this) diff --git a/src/mame/video/k053250.c b/src/mame/video/k053250.c index b71df1aad15..3206f5e9248 100644 --- a/src/mame/video/k053250.c +++ b/src/mame/video/k053250.c @@ -3,7 +3,7 @@ const device_type K053250 = &device_creator; k053250_device::k053250_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K053250, "Konami 053250 Road Generator", tag, owner, clock, "k053250", __FILE__), + : device_t(mconfig, K053250, "K053250 Road Generator", tag, owner, clock, "k053250", __FILE__), device_gfx_interface(mconfig, *this), device_video_interface(mconfig, *this) { diff --git a/src/mame/video/k053251.c b/src/mame/video/k053251.c index 3505d15a604..6dae3f5f178 100644 --- a/src/mame/video/k053251.c +++ b/src/mame/video/k053251.c @@ -125,7 +125,7 @@ actually used, since the priority is taken from the external ports. const device_type K053251 = &device_creator; k053251_device::k053251_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K053251, "Konami 053251 Priority Encoder", tag, owner, clock, "k053251", __FILE__), + : device_t(mconfig, K053251, "K053251 Priority Encoder", tag, owner, clock, "k053251", __FILE__), //m_dirty_tmap[5], //m_ram[16], m_tilemaps_set(0) diff --git a/src/mame/video/k053936.c b/src/mame/video/k053936.c index 91ef673d60e..cd440083ee4 100644 --- a/src/mame/video/k053936.c +++ b/src/mame/video/k053936.c @@ -229,7 +229,7 @@ void K053936_set_offset(int chip, int xoffs, int yoffs) const device_type K053936 = &device_creator; k053936_device::k053936_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K053936, "Konami 053936 Video Controller", tag, owner, clock, "k053936", __FILE__), + : device_t(mconfig, K053936, "K053936 Video Controller", tag, owner, clock, "k053936", __FILE__), m_ctrl(NULL), m_linectrl(NULL), m_wrap(0), diff --git a/src/mame/video/k054000.c b/src/mame/video/k054000.c index 02df8e870da..cc50cb5c1e9 100644 --- a/src/mame/video/k054000.c +++ b/src/mame/video/k054000.c @@ -53,7 +53,7 @@ Memory map: const device_type K054000 = &device_creator; k054000_device::k054000_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K054000, "Konami 054000 Protection Device", tag, owner, clock, "k054000", __FILE__) + : device_t(mconfig, K054000, "K054000 Protection Device", tag, owner, clock, "k054000", __FILE__) { } diff --git a/src/mame/video/k054156_k054157_k056832.c b/src/mame/video/k054156_k054157_k056832.c index f14e851d514..adf53e084f7 100644 --- a/src/mame/video/k054156_k054157_k056832.c +++ b/src/mame/video/k054156_k054157_k056832.c @@ -180,7 +180,7 @@ ones. The other 7 words are ignored. Global scrollx is ignored. const device_type K056832 = &device_creator; k056832_device::k056832_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K056832, "Konami 056832 Sprite/Tilemap Generator", tag, owner, clock, "k056832", __FILE__), + : device_t(mconfig, K056832, "K056832 Sprite/Tilemap Generator", tag, owner, clock, "k056832", __FILE__), //m_tilemap[K056832_PAGE_COUNT], //*m_pixmap[K056832_PAGE_COUNT], //m_regs[0x20], diff --git a/src/mame/video/k054338.c b/src/mame/video/k054338.c index 897dfa4c0f5..e76d4dfe673 100644 --- a/src/mame/video/k054338.c +++ b/src/mame/video/k054338.c @@ -19,7 +19,7 @@ const device_type K054338 = &device_creator; k054338_device::k054338_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K054338, "Konami 054338 Mixer Device", tag, owner, clock, "k054338", __FILE__), + : device_t(mconfig, K054338, "K054338 Mixer Device", tag, owner, clock, "k054338", __FILE__), device_video_interface(mconfig, *this), m_alpha_inv(0), m_k055555_tag(NULL) diff --git a/src/mame/video/k055555.c b/src/mame/video/k055555.c index 002ea724a97..ebd5f8ec938 100644 --- a/src/mame/video/k055555.c +++ b/src/mame/video/k055555.c @@ -228,7 +228,7 @@ int k055555_device::k055555_get_palette_index( device_t *device, int idx ) const device_type K055555 = &device_creator; k055555_device::k055555_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, K055555, "Konami 055555 Priority Encoder", tag, owner, clock, "k055555", __FILE__) + : device_t(mconfig, K055555, "K055555 Priority Encoder", tag, owner, clock, "k055555", __FILE__) { }