summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/c64/ieee488.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/c64/ieee488.cpp')
-rw-r--r--src/devices/bus/c64/ieee488.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/c64/ieee488.cpp b/src/devices/bus/c64/ieee488.cpp
index d77e5064dfc..aed81dbc9d1 100644
--- a/src/devices/bus/c64/ieee488.cpp
+++ b/src/devices/bus/c64/ieee488.cpp
@@ -106,7 +106,7 @@ READ8_MEMBER( c64_ieee488_device::tpi_pc_r )
data |= m_bus->ifc_r();
data |= m_bus->srq_r() << 1;
- data |= m_exp->exrom_r(offset, 1, 1, 1, 0) << 7;
+ data |= m_exp->exrom_r(offset, 1, 1, 1, 0, 0) << 7;
return data;
}
@@ -240,5 +240,5 @@ void c64_ieee488_device::c64_cd_w(offs_t offset, uint8_t data, int sphi2, int ba
int c64_ieee488_device::c64_game_r(offs_t offset, int sphi2, int ba, int rw)
{
- return m_exp->game_r(offset, sphi2, ba, rw, m_slot->hiram());
+ return m_exp->game_r(offset, sphi2, ba, rw, m_slot->loram(), m_slot->hiram());
}