summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/poly.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/poly.cpp')
-rw-r--r--src/mame/machine/poly.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/poly.cpp b/src/mame/machine/poly.cpp
index cb8d7a35959..f25e0e3d21f 100644
--- a/src/mame/machine/poly.cpp
+++ b/src/mame/machine/poly.cpp
@@ -157,12 +157,12 @@ WRITE8_MEMBER(poly_state::baud_rate_w )
READ8_MEMBER(poly_state::network_r)
{
- return m_adlc->read(offset >> 1);
+ return m_adlc->read(space, offset >> 1);
}
WRITE8_MEMBER(poly_state::network_w)
{
- m_adlc->write(offset >> 1, data);
+ m_adlc->write(space, offset >> 1, data);
}
WRITE_LINE_MEMBER(poly_state::network_clk_w)