mirror of
https://github.com/holub/mame
synced 2025-07-06 02:18:09 +03:00
vgmplay.cpp : Fix nmk112 banked table mask
This commit is contained in:
parent
13c663f17a
commit
e70ab3625b
@ -1232,7 +1232,7 @@ READ8_MEMBER(vgmplay_device::okim6295_rom_r)
|
||||
{
|
||||
if ((offset < 0x400) && (m_okim6295_nmk112_enable[Chip] & 0x80))
|
||||
{
|
||||
offset = (m_okim6295_nmk112_bank[Chip][(offset >> 8) & 0x3] << 16) | (offset & 0xff);
|
||||
offset = (m_okim6295_nmk112_bank[Chip][(offset >> 8) & 0x3] << 16) | (offset & 0x3ff);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user