diff options
author | 2019-02-19 07:45:31 -0500 | |
---|---|---|
committer | 2019-02-19 07:46:07 -0500 | |
commit | aef98d52ed42aaf67b0c48708111b81ca86b6a99 (patch) | |
tree | e8505e084a04167002949eb611a5ac6e395adf46 /src/devices/bus/vic10/exp.cpp | |
parent | d815ddd0fd8ac66bac0234919a6fc31b7ea1cc16 (diff) |
6525tpi, mos6526, bus/vic10: Eliminate address_space argument from handlers (nw)
Diffstat (limited to 'src/devices/bus/vic10/exp.cpp')
-rw-r--r-- | src/devices/bus/vic10/exp.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/vic10/exp.cpp b/src/devices/bus/vic10/exp.cpp index e3af1609567..26ad1980448 100644 --- a/src/devices/bus/vic10/exp.cpp +++ b/src/devices/bus/vic10/exp.cpp @@ -198,11 +198,11 @@ std::string vic10_expansion_slot_device::get_default_card_software(get_default_c // cd_r - cartridge data read //------------------------------------------------- -uint8_t vic10_expansion_slot_device::cd_r(address_space &space, offs_t offset, uint8_t data, int lorom, int uprom, int exram) +uint8_t vic10_expansion_slot_device::cd_r(offs_t offset, uint8_t data, int lorom, int uprom, int exram) { if (m_card != nullptr) { - data = m_card->vic10_cd_r(space, offset, data, lorom, uprom, exram); + data = m_card->vic10_cd_r(offset, data, lorom, uprom, exram); } return data; @@ -213,11 +213,11 @@ uint8_t vic10_expansion_slot_device::cd_r(address_space &space, offs_t offset, u // cd_w - cartridge data write //------------------------------------------------- -void vic10_expansion_slot_device::cd_w(address_space &space, offs_t offset, uint8_t data, int lorom, int uprom, int exram) +void vic10_expansion_slot_device::cd_w(offs_t offset, uint8_t data, int lorom, int uprom, int exram) { if (m_card != nullptr) { - m_card->vic10_cd_w(space, offset, data, lorom, uprom, exram); + m_card->vic10_cd_w(offset, data, lorom, uprom, exram); } } |