diff options
Diffstat (limited to 'src/devices/bus/ieee488/hardbox.cpp')
-rw-r--r-- | src/devices/bus/ieee488/hardbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/ieee488/hardbox.cpp b/src/devices/bus/ieee488/hardbox.cpp index 0b982ee772d..be648c1fa50 100644 --- a/src/devices/bus/ieee488/hardbox.cpp +++ b/src/devices/bus/ieee488/hardbox.cpp @@ -231,7 +231,7 @@ READ8_MEMBER( hardbox_device::ppi1_pc_r ) */ - uint8_t status = m_hdc->status_r(space, 0); + uint8_t status = m_hdc->status_r(); uint8_t data = 0; data |= (status & corvus_hdc_device::CONTROLLER_BUSY) ? 0 : 0x10; |