summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/vic20.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/vic20.cpp')
-rw-r--r--src/mame/drivers/vic20.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/vic20.cpp b/src/mame/drivers/vic20.cpp
index 6281bfec5f4..7565b03e80d 100644
--- a/src/mame/drivers/vic20.cpp
+++ b/src/mame/drivers/vic20.cpp
@@ -216,11 +216,11 @@ READ8_MEMBER( vic20_state::read )
case IO0:
if (BIT(offset, 4))
{
- data = m_via1->read(space, offset & 0x0f);
+ data = m_via1->read(offset & 0x0f);
}
else if (BIT(offset, 5))
{
- data = m_via2->read(space, offset & 0x0f);
+ data = m_via2->read(offset & 0x0f);
}
else if (offset >= 0x9000 && offset < 0x9010)
{
@@ -291,11 +291,11 @@ WRITE8_MEMBER( vic20_state::write )
case IO0:
if (BIT(offset, 4))
{
- m_via1->write(space, offset & 0x0f, data);
+ m_via1->write(offset & 0x0f, data);
}
else if (BIT(offset, 5))
{
- m_via2->write(space, offset & 0x0f, data);
+ m_via2->write(offset & 0x0f, data);
}
else if (offset >= 0x9000 && offset < 0x9010)
{