diff options
author | 2019-02-19 08:26:20 -0500 | |
---|---|---|
committer | 2019-02-19 08:27:08 -0500 | |
commit | 36012553a7ec25ce6f93de556b30cd8d3ecfb998 (patch) | |
tree | 677ede3720e8ef92bbeaa3dcac09f04b2f58a36b /src/devices/bus/c64/ps64.cpp | |
parent | d85f8b5d0ded785f0d5abe913fecf47586df9b32 (diff) |
bus/c64: Eliminate address_space arguments from handlers (nw)
Diffstat (limited to 'src/devices/bus/c64/ps64.cpp')
-rw-r--r-- | src/devices/bus/c64/ps64.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/c64/ps64.cpp b/src/devices/bus/c64/ps64.cpp index fbfad3fe7d2..c14008b2c08 100644 --- a/src/devices/bus/c64/ps64.cpp +++ b/src/devices/bus/c64/ps64.cpp @@ -109,7 +109,7 @@ void c64_ps64_cartridge_device::device_reset() // c64_cd_r - cartridge data read //------------------------------------------------- -uint8_t c64_ps64_cartridge_device::c64_cd_r(address_space &space, offs_t offset, uint8_t data, int sphi2, int ba, int roml, int romh, int io1, int io2) +uint8_t c64_ps64_cartridge_device::c64_cd_r(offs_t offset, uint8_t data, int sphi2, int ba, int roml, int romh, int io1, int io2) { if (!roml) { @@ -128,7 +128,7 @@ uint8_t c64_ps64_cartridge_device::c64_cd_r(address_space &space, offs_t offset, // c64_cd_w - cartridge data write //------------------------------------------------- -void c64_ps64_cartridge_device::c64_cd_w(address_space &space, offs_t offset, uint8_t data, int sphi2, int ba, int roml, int romh, int io1, int io2) +void c64_ps64_cartridge_device::c64_cd_w(offs_t offset, uint8_t data, int sphi2, int ba, int roml, int romh, int io1, int io2) { if (!io1) { |