summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/thomflop.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/thomflop.cpp')
-rw-r--r--src/mame/machine/thomflop.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/thomflop.cpp b/src/mame/machine/thomflop.cpp
index 2f935851f88..1fa600121d8 100644
--- a/src/mame/machine/thomflop.cpp
+++ b/src/mame/machine/thomflop.cpp
@@ -1678,7 +1678,7 @@ void thomson_state::to7_network_reset()
READ8_MEMBER( thomson_state::to7_network_r )
{
if ( offset < 4 )
- return m_mc6854->read( offset );
+ return m_mc6854->read( space, offset );
if ( offset == 8 )
{
@@ -1697,7 +1697,7 @@ READ8_MEMBER( thomson_state::to7_network_r )
WRITE8_MEMBER( thomson_state::to7_network_w )
{
if ( offset < 4 )
- m_mc6854->write( offset, data );
+ m_mc6854->write( space, offset, data );
else
{
logerror( "%f $%04x to7_network_w: invalid write offset %i (data=$%02X)\n",