namcos21_dsp_c67.cpp: Mask offset for point24 ROM accesses (blind fix for MT 8743)

This commit is contained in:
AJR 2023-08-17 19:27:24 -04:00
parent f101f937dd
commit c76a5beeb9

View File

@ -404,7 +404,7 @@ void namcos21_dsp_c67_device::dspram16_w(offs_t offset, uint16_t data, uint16_t
int32_t namcos21_dsp_c67_device::read_pointrom_data(unsigned offset)
{
return m_ptrom24[offset];
return m_ptrom24[offset & 0xfffff];
}