summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/meg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/meg.cpp')
-rw-r--r--src/devices/sound/meg.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/devices/sound/meg.cpp b/src/devices/sound/meg.cpp
index a1f9d67b293..54bdc88902d 100644
--- a/src/devices/sound/meg.cpp
+++ b/src/devices/sound/meg.cpp
@@ -67,6 +67,7 @@ void meg_base_device::lfo_w(u8 reg, u16 value)
void meg_base_device::map_w(u8 reg, u16 value)
{
m_map[reg] = value;
+ logerror("map %d: start = %06x size = %06x extra = %x\n", reg, (value & 0xff) << 10, 1 << (10 + ((value & 0x0700) >> 8)), (value & 0xf800) >> 11);
}
u64 meg_base_device::prg_r(u16 address) const