mirror of
https://github.com/holub/mame
synced 2025-07-01 00:09:18 +03:00
audio/dkong.cpp: Corrected RAM size for dkong3 audio CPUs. (#9328)
This commit is contained in:
parent
6c47be4f88
commit
ba0fe49f29
@ -1292,7 +1292,7 @@ void dkong_state::radarscp1_sound_io_map(address_map &map)
|
||||
|
||||
void dkong_state::dkong3_sound1_map(address_map &map)
|
||||
{
|
||||
map(0x0000, 0x01ff).ram();
|
||||
map(0x0000, 0x07ff).ram();
|
||||
map(0x4016, 0x4016).r("latch1", FUNC(latch8_device::read)); /* overwrite default */
|
||||
map(0x4017, 0x4017).r("latch2", FUNC(latch8_device::read));
|
||||
map(0xe000, 0xffff).rom();
|
||||
@ -1300,7 +1300,7 @@ void dkong_state::dkong3_sound1_map(address_map &map)
|
||||
|
||||
void dkong_state::dkong3_sound2_map(address_map &map)
|
||||
{
|
||||
map(0x0000, 0x01ff).ram();
|
||||
map(0x0000, 0x07ff).ram();
|
||||
map(0x4016, 0x4016).r("latch3", FUNC(latch8_device::read)); /* overwrite default */
|
||||
map(0xe000, 0xffff).rom();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user