From 2b510d1929f09b8a777dd83185f38e2c0a7d443c Mon Sep 17 00:00:00 2001 From: Scott Stone Date: Mon, 22 Dec 2014 22:32:08 -0500 Subject: Assorted changes and fixes to sega devices (nw) --- src/emu/bus/sms_ctrl/graphic.c | 2 +- src/emu/video/315_5124.c | 2 +- src/emu/video/315_5313.c | 2 +- src/mame/machine/315_5296.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/emu/bus/sms_ctrl/graphic.c b/src/emu/bus/sms_ctrl/graphic.c index 20a1f68dcda..a04b9c59473 100644 --- a/src/emu/bus/sms_ctrl/graphic.c +++ b/src/emu/bus/sms_ctrl/graphic.c @@ -77,7 +77,7 @@ ioport_constructor sms_graphic_device::device_input_ports() const //------------------------------------------------- sms_graphic_device::sms_graphic_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, SMS_GRAPHIC, "Graphic Board", tag, owner, clock, "sms_joypad", __FILE__) + : device_t(mconfig, SMS_GRAPHIC, "Graphic Board", tag, owner, clock, "sms_graphic", __FILE__) , device_sms_control_port_interface(mconfig, *this) , m_buttons(*this, "BUTTONS") , m_x(*this, "X") diff --git a/src/emu/video/315_5124.c b/src/emu/video/315_5124.c index 48aa0b670b9..cec15ebff05 100644 --- a/src/emu/video/315_5124.c +++ b/src/emu/video/315_5124.c @@ -190,7 +190,7 @@ sega315_5246_device::sega315_5246_device(const machine_config &mconfig, const ch sega315_5378_device::sega315_5378_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : sega315_5124_device( mconfig, SEGA315_5378, "Sega 315-5378", tag, owner, clock, SEGA315_5378_CRAM_SIZE, 0x10, true, "sega315_5378", __FILE__, X_SCROLL_HPOS_5378) + : sega315_5124_device( mconfig, SEGA315_5378, "Sega 315-5378 VDP", tag, owner, clock, SEGA315_5378_CRAM_SIZE, 0x10, true, "sega315_5378", __FILE__, X_SCROLL_HPOS_5378) { } diff --git a/src/emu/video/315_5313.c b/src/emu/video/315_5313.c index bdfbe924db1..1f0000ce027 100644 --- a/src/emu/video/315_5313.c +++ b/src/emu/video/315_5313.c @@ -13,7 +13,7 @@ const device_type SEGA315_5313 = &device_creator; sega315_5313_device::sega315_5313_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : sega315_5124_device( mconfig, SEGA315_5246, "Sega 315-5313 (Genesis VDP)", tag, owner, clock, SEGA315_5124_CRAM_SIZE, 0, true, "sega315_5313", __FILE__), + : sega315_5124_device( mconfig, SEGA315_5313, "Sega 315-5313 Megadrive VDP", tag, owner, clock, SEGA315_5124_CRAM_SIZE, 0, true, "sega315_5313", __FILE__), m_sndirqline_callback(*this), m_lv6irqline_callback(*this), m_lv4irqline_callback(*this), diff --git a/src/mame/machine/315_5296.c b/src/mame/machine/315_5296.c index 638c270d7c7..cea3c540dd0 100644 --- a/src/mame/machine/315_5296.c +++ b/src/mame/machine/315_5296.c @@ -30,7 +30,7 @@ const device_type SEGA_315_5296 = &device_creator; //------------------------------------------------- sega_315_5296_device::sega_315_5296_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, SEGA_315_5296, "Sega 315-5296", tag, owner, clock, "315-5296", __FILE__), + : device_t(mconfig, SEGA_315_5296, "Sega 315-5296 I/O", tag, owner, clock, "315-5296", __FILE__), m_in_pa_cb(*this), m_in_pb_cb(*this), m_in_pc_cb(*this), -- cgit v1.2.3