summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/fdc37c93x.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/fdc37c93x.cpp')
-rw-r--r--src/devices/machine/fdc37c93x.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/fdc37c93x.cpp b/src/devices/machine/fdc37c93x.cpp
index 002f9458d8e..4616a513168 100644
--- a/src/devices/machine/fdc37c93x.cpp
+++ b/src/devices/machine/fdc37c93x.cpp
@@ -553,12 +553,12 @@ void fdc37c93x_device::map_lpt(address_map &map)
READ8_MEMBER(fdc37c93x_device::lpt_read)
{
- return pc_lpt_lptdev->read(space, offset, mem_mask);
+ return pc_lpt_lptdev->read(offset);
}
WRITE8_MEMBER(fdc37c93x_device::lpt_write)
{
- pc_lpt_lptdev->write(space, offset, data, mem_mask);
+ pc_lpt_lptdev->write(offset, data);
}
void fdc37c93x_device::map_lpt_addresses()