summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/msx.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/drivers/msx.c')
-rw-r--r--src/mess/drivers/msx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/drivers/msx.c b/src/mess/drivers/msx.c
index 17d1c3be9c5..e6e3a8e47bf 100644
--- a/src/mess/drivers/msx.c
+++ b/src/mess/drivers/msx.c
@@ -344,9 +344,9 @@ ADDRESS_MAP_END
static WRITE8_DEVICE_HANDLER( msx_ay8910_w )
{
if ( offset & 1 )
- ay8910_data_w( device, offset, data );
+ ay8910_data_w( device, space, offset, data );
else
- ay8910_address_w( device, offset, data );
+ ay8910_address_w( device, space, offset, data );
}