mirror of
https://github.com/holub/mame
synced 2025-04-25 09:50:04 +03:00
-machine/1801vp128.cpp: Fixed invalid character in device short name.
-shared/dcs.cpp: Replaced another literal tag.
This commit is contained in:
parent
217c386184
commit
cf4959e556
@ -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")
|
||||
|
||||
|
||||
|
||||
|
@ -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));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user