-machine/1801vp128.cpp: Fixed invalid character in device short name.

-shared/dcs.cpp: Replaced another literal tag.
This commit is contained in:
Vas Crabb 2024-04-16 06:22:31 +10:00
parent 217c386184
commit cf4959e556
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@
// DEVICE DEFINITIONS // DEVICE DEFINITIONS
//************************************************************************** //**************************************************************************
DEFINE_DEVICE_TYPE(K1801VP128, k1801vp128_device, "1801vp1-128", "1801VP1-128") DEFINE_DEVICE_TYPE(K1801VP128, k1801vp128_device, "1801vp1_128", "1801VP1-128 FDC")

View File

@ -444,7 +444,7 @@ void dcs_audio_device::denver_data_map(address_map &map)
{ {
map.unmap_value_high(); map.unmap_value_high();
map(0x0000, 0x1fff).m(m_ram_map, FUNC(address_map_bank_device::amap16)); 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)); map(0x3fe0, 0x3fff).rw(FUNC(dcs_audio_device::adsp_control_r), FUNC(dcs_audio_device::adsp_control_w));
} }