mirror of
https://github.com/holub/mame
synced 2025-06-01 18:41:47 +03:00
Fix harddriv sound, maybe (nw)
This commit is contained in:
parent
9d5738c77d
commit
7c85bc8c40
@ -266,13 +266,13 @@ WRITE16_MEMBER(harddriv_sound_board_device::hdsnd68k_320ram_w)
|
||||
|
||||
READ16_MEMBER(harddriv_sound_board_device::hdsnd68k_320ports_r)
|
||||
{
|
||||
return m_sounddsp->space(AS_IO).read_word((offset & 7) << 1);
|
||||
return m_sounddsp->space(AS_IO).read_word(offset & 7);
|
||||
}
|
||||
|
||||
|
||||
WRITE16_MEMBER(harddriv_sound_board_device::hdsnd68k_320ports_w)
|
||||
{
|
||||
m_sounddsp->space(AS_IO).write_word((offset & 7) << 1, data);
|
||||
m_sounddsp->space(AS_IO).write_word(offset & 7, data);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user