summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/guab.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/guab.cpp')
-rw-r--r--src/mame/drivers/guab.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/guab.cpp b/src/mame/drivers/guab.cpp
index abda91a6d4b..7a59cc87bfd 100644
--- a/src/mame/drivers/guab.cpp
+++ b/src/mame/drivers/guab.cpp
@@ -241,10 +241,10 @@ WRITE16_MEMBER( guab_state::tms34061_w )
col = offset <<= 1;
if (ACCESSING_BITS_8_15)
- m_tms34061->write(space, col, row, func, data >> 8);
+ m_tms34061->write(col, row, func, data >> 8);
if (ACCESSING_BITS_0_7)
- m_tms34061->write(space, col | 1, row, func, data & 0xff);
+ m_tms34061->write(col | 1, row, func, data & 0xff);
}
READ16_MEMBER( guab_state::tms34061_r )
@@ -260,10 +260,10 @@ READ16_MEMBER( guab_state::tms34061_r )
col = offset <<= 1;
if (ACCESSING_BITS_8_15)
- data |= m_tms34061->read(space, col, row, func) << 8;
+ data |= m_tms34061->read(col, row, func) << 8;
if (ACCESSING_BITS_0_7)
- data |= m_tms34061->read(space, col | 1, row, func);
+ data |= m_tms34061->read(col | 1, row, func);
return data;
}