diff options
author | 2019-05-11 20:16:37 +0300 | |
---|---|---|
committer | 2019-05-11 20:16:37 +0300 | |
commit | 7255f87b9e053528bd02202caeb9dfcc153e0838 (patch) | |
tree | fc6bbe5e3307adbf38968bc65801e2076b4dc9d7 /src/devices/bus/c64/tdos.cpp | |
parent | b329fa3125a5bbe92213374990e36861c196fe9b (diff) |
c64: Route LORAM to expansion port interface for BusCard. [Curt Coder]
Diffstat (limited to 'src/devices/bus/c64/tdos.cpp')
-rw-r--r-- | src/devices/bus/c64/tdos.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/c64/tdos.cpp b/src/devices/bus/c64/tdos.cpp index b52b61f57a4..5f8a9a4c456 100644 --- a/src/devices/bus/c64/tdos.cpp +++ b/src/devices/bus/c64/tdos.cpp @@ -319,7 +319,7 @@ void c64_tdos_cartridge_device::c64_cd_w(offs_t offset, uint8_t data, int sphi2, int c64_tdos_cartridge_device::c64_game_r(offs_t offset, int sphi2, int ba, int rw) { - return m_enabled ? 1 : m_exp->game_r(offset, sphi2, ba, rw, m_slot->hiram()); + return m_enabled ? 1 : m_exp->game_r(offset, sphi2, ba, rw, m_slot->loram(), m_slot->hiram()); } @@ -329,5 +329,5 @@ int c64_tdos_cartridge_device::c64_game_r(offs_t offset, int sphi2, int ba, int int c64_tdos_cartridge_device::c64_exrom_r(offs_t offset, int sphi2, int ba, int rw) { - return m_enabled ? 0 : m_exp->exrom_r(offset, sphi2, ba, rw, m_slot->hiram()); + return m_enabled ? 0 : m_exp->exrom_r(offset, sphi2, ba, rw, m_slot->loram(), m_slot->hiram()); } |