From cf4959e556537f370c17f804b79afdc1b0c700ad Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Tue, 16 Apr 2024 06:22:31 +1000 Subject: [PATCH] -machine/1801vp128.cpp: Fixed invalid character in device short name. -shared/dcs.cpp: Replaced another literal tag. --- src/devices/machine/1801vp128.cpp | 2 +- src/mame/shared/dcs.cpp | 2 +- 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)); }