summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--src/devices/machine/1801vp128.cpp2
-rw-r--r--src/mame/shared/dcs.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/1801vp128.cpp b/src/devices/machine/1801vp128.cpp
index 2c1f089f557..de63cbe0dd7 100644
--- a/src/devices/machine/1801vp128.cpp
+++ b/src/devices/machine/1801vp128.cpp
@@ -45,7 +45,7 @@
// DEVICE DEFINITIONS
//**************************************************************************
-DEFINE_DEVICE_TYPE(K1801VP128, k1801vp128_device, "1801vp1-128", "1801VP1-128")
+DEFINE_DEVICE_TYPE(K1801VP128, k1801vp128_device, "1801vp1_128", "1801VP1-128 FDC")
diff --git a/src/mame/shared/dcs.cpp b/src/mame/shared/dcs.cpp
index 6ae4241dcf5..a2463f7890c 100644
--- a/src/mame/shared/dcs.cpp
+++ b/src/mame/shared/dcs.cpp
@@ -444,7 +444,7 @@ void dcs_audio_device::denver_data_map(address_map &map)
{
map.unmap_value_high();
map(0x0000, 0x1fff).m(m_ram_map, FUNC(address_map_bank_device::amap16));
- map(0x2000, 0x3fdf).ram().share("dcsint_data");
+ map(0x2000, 0x3fdf).ram().share(m_internal_data_ram);
map(0x3fe0, 0x3fff).rw(FUNC(dcs_audio_device::adsp_control_r), FUNC(dcs_audio_device::adsp_control_w));
}