summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/southbridge.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/southbridge.c')
-rw-r--r--src/mess/machine/southbridge.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/machine/southbridge.c b/src/mess/machine/southbridge.c
index 0dc4950c43d..77d786cf5ce 100644
--- a/src/mess/machine/southbridge.c
+++ b/src/mess/machine/southbridge.c
@@ -467,12 +467,12 @@ WRITE_LINE_MEMBER( southbridge_device::at_mc146818_irq )
READ8_MEMBER( southbridge_device::at_dma8237_2_r )
{
- return i8237_r( m_dma8237_2, offset / 2);
+ return i8237_r( m_dma8237_2, space, offset / 2);
}
WRITE8_MEMBER( southbridge_device::at_dma8237_2_w )
{
- i8237_w( m_dma8237_2, offset / 2, data);
+ i8237_w( m_dma8237_2, space, offset / 2, data);
}
READ8_MEMBER( southbridge_device::at_keybc_r )