summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2024-04-16 06:22:31 +1000
committer Vas Crabb <vas@vastheman.com>2024-04-16 06:22:31 +1000
commitcf4959e556537f370c17f804b79afdc1b0c700ad (patch)
tree391467b78b4a9e919a0bf8c97515a67da9497978
parent217c386184375f7b667b33f7d5d434dc7dcfbeab (diff)
-machine/1801vp128.cpp: Fixed invalid character in device short name.
-shared/dcs.cpp: Replaced another literal tag.
-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));
}