summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/electron/m2105.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/electron/m2105.cpp')
-rw-r--r--src/devices/bus/electron/m2105.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/electron/m2105.cpp b/src/devices/bus/electron/m2105.cpp
index 0f32fff7331..4a0dd4a762e 100644
--- a/src/devices/bus/electron/m2105.cpp
+++ b/src/devices/bus/electron/m2105.cpp
@@ -168,7 +168,7 @@ uint8_t electron_m2105_device::expbus_r(address_space &space, offs_t offset, uin
}
else if (offset >= 0xfc40 && offset < 0xfc60)
{
- data = m_via6522_1->read(space, offset);
+ data = m_via6522_1->read(offset);
}
else if (offset >= 0xfc60 && offset < 0xfc70)
{
@@ -176,7 +176,7 @@ uint8_t electron_m2105_device::expbus_r(address_space &space, offs_t offset, uin
}
else if (offset >= 0xfc70 && offset < 0xfc90)
{
- data = m_via6522_0->read(space, offset);
+ data = m_via6522_0->read(offset);
}
return data;
@@ -194,7 +194,7 @@ void electron_m2105_device::expbus_w(address_space &space, offs_t offset, uint8_
}
else if (offset >= 0xfc40 && offset < 0xfc60)
{
- m_via6522_1->write(space, offset, data);
+ m_via6522_1->write(offset, data);
}
else if (offset >= 0xfc60 && offset < 0xfc70)
{
@@ -202,7 +202,7 @@ void electron_m2105_device::expbus_w(address_space &space, offs_t offset, uint8_
}
else if (offset >= 0xfc70 && offset < 0xfc90)
{
- m_via6522_0->write(space, offset, data);
+ m_via6522_0->write(offset, data);
}
else if (offset == 0xfe05)
{