diff options
author | 2019-02-24 23:20:49 -0500 | |
---|---|---|
committer | 2019-02-24 23:20:49 -0500 | |
commit | ab5a6c04a354024216db302c45950427a3edaffd (patch) | |
tree | 9143f2375be916e87107e838acd90a86ca31c303 /src/devices/bus/ql/mp_fdi.cpp | |
parent | c24799514395edc7ccf9f4c16f4dd99ca7a4d61d (diff) |
bus/compis, bus/isbx, bus/pofo, bus/ql, qimi: Eliminate address_space arguments from handlers (nw)
Diffstat (limited to 'src/devices/bus/ql/mp_fdi.cpp')
-rw-r--r-- | src/devices/bus/ql/mp_fdi.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/ql/mp_fdi.cpp b/src/devices/bus/ql/mp_fdi.cpp index 06324a4be67..4e2a90ce52d 100644 --- a/src/devices/bus/ql/mp_fdi.cpp +++ b/src/devices/bus/ql/mp_fdi.cpp @@ -69,7 +69,7 @@ void micro_peripherals_floppy_disk_interface_device::device_start() // read - //------------------------------------------------- -uint8_t micro_peripherals_floppy_disk_interface_device::read(address_space &space, offs_t offset, uint8_t data) +uint8_t micro_peripherals_floppy_disk_interface_device::read(offs_t offset, uint8_t data) { return data; } @@ -79,6 +79,6 @@ uint8_t micro_peripherals_floppy_disk_interface_device::read(address_space &spac // write - //------------------------------------------------- -void micro_peripherals_floppy_disk_interface_device::write(address_space &space, offs_t offset, uint8_t data) +void micro_peripherals_floppy_disk_interface_device::write(offs_t offset, uint8_t data) { } |