summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/c64.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-02-19 07:05:57 -0500
committer AJR <ajrhacker@users.noreply.github.com>2019-02-19 07:06:31 -0500
commitb909c6e1a3ab844f2fb51f97e58f589dadf01643 (patch)
treeb268d713218235611ae1aca0e0dd2ee1aa8ca58c /src/mame/drivers/c64.cpp
parent75805ea2f09cf5aa4e0572a94da8599b62c3045a (diff)
mos6566, mos6581, bus/plus4: Eliminate address_space argument from handlers (nw)
Diffstat (limited to 'src/mame/drivers/c64.cpp')
-rw-r--r--src/mame/drivers/c64.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/c64.cpp b/src/mame/drivers/c64.cpp
index fe6912ce670..e2d38a6d515 100644
--- a/src/mame/drivers/c64.cpp
+++ b/src/mame/drivers/c64.cpp
@@ -332,14 +332,14 @@ uint8_t c64_state::read_memory(address_space &space, offs_t offset, offs_t va, i
case 1:
case 2:
case 3: // VIC
- data = m_vic->read(space, offset & 0x3f);
+ data = m_vic->read(offset & 0x3f);
break;
case 4:
case 5:
case 6:
case 7: // SID
- data = m_sid->read(space, offset & 0x1f);
+ data = m_sid->read(offset & 0x1f);
break;
case 0x8:
@@ -404,14 +404,14 @@ void c64_state::write_memory(address_space &space, offs_t offset, uint8_t data,
case 1:
case 2:
case 3: // VIC
- m_vic->write(space, offset & 0x3f, data);
+ m_vic->write(offset & 0x3f, data);
break;
case 4:
case 5:
case 6:
case 7: // SID
- m_sid->write(space, offset & 0x1f, data);
+ m_sid->write(offset & 0x1f, data);
break;
case 0x8: