Fixes bug in Intellivoice for intvoice. Fix Mame Testers issue #7336 (#6116)

This commit is contained in:
iwilliamson 2019-12-31 16:51:55 -07:00 committed by Robert
parent fb186f6091
commit be44a65638

View File

@ -98,7 +98,7 @@ const tiny_rom_entry *intv_voice_device::device_rom_region() const
uint16_t intv_voice_device::read_speech(offs_t offset)
{
return 0xff00 | m_speech->spb640_r(offset);
return m_speech->spb640_r(offset);
}
/*-------------------------------------------------
@ -107,7 +107,7 @@ uint16_t intv_voice_device::read_speech(offs_t offset)
void intv_voice_device::write_speech(offs_t offset, uint16_t data)
{
m_speech->spb640_w(offset, data & 0x00ff);
m_speech->spb640_w(offset, data);
}