summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Scott Stone <tafoid@gmail.com>2016-04-12 07:59:33 -0400
committer Scott Stone <tafoid@gmail.com>2016-04-12 07:59:33 -0400
commit21a7aabf9e07f8900846cf91bd1711f9a208ad08 (patch)
tree99db8a7d0df27d93ba9d65a326877dbb5f64eef9
parentd790744b6ca9d2a4d2c6cfaced4599c9f8b4a076 (diff)
Give unique descriptions and short names to new SegaCrypt Z80 devices so that they show up properly in devices listings. (nw)
-rw-r--r--src/mame/machine/segacrp2_device.cpp2
-rw-r--r--src/mame/machine/segacrpt_device.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/segacrp2_device.cpp b/src/mame/machine/segacrp2_device.cpp
index 5682da2411f..5c0db860879 100644
--- a/src/mame/machine/segacrp2_device.cpp
+++ b/src/mame/machine/segacrp2_device.cpp
@@ -100,7 +100,7 @@ const device_type SEGA_317_0007 = &device_creator<sega_317_0007_device>;
-segacrp2_z80_device::segacrp2_z80_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : z80_device(mconfig, SEGACRP2_Z80, "Z80", tag, owner, clock, "z80_sega2", __FILE__) {}
+segacrp2_z80_device::segacrp2_z80_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : z80_device(mconfig, SEGACRP2_Z80, "Z80 SegaCrypt2", tag, owner, clock, "z80_sega2", __FILE__) {}
void segacrp2_z80_device::device_start() { z80_device::device_start(); decrypt(); }
void segacrp2_z80_device::device_reset() { z80_device::device_reset(); }
void segacrp2_z80_device::decrypt() { }
diff --git a/src/mame/machine/segacrpt_device.cpp b/src/mame/machine/segacrpt_device.cpp
index 96d50cbc1dd..c7b8395fb43 100644
--- a/src/mame/machine/segacrpt_device.cpp
+++ b/src/mame/machine/segacrpt_device.cpp
@@ -289,7 +289,7 @@ const device_type SEGA_CPU_PBACTIO4 = &device_creator<sega_cpu_pbactio4_device>
segacrpt_z80_device::segacrpt_z80_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
- z80_device(mconfig, SEGACRPT_Z80, "Z80", tag, owner, clock, "z80_sega2", __FILE__),
+ z80_device(mconfig, SEGACRPT_Z80, "Z80 SegaCrypt", tag, owner, clock, "z80_sega", __FILE__),
m_decrypted_ptr(nullptr),
m_region_ptr(nullptr),
m_decode_size(0x8000),