diff options
Diffstat (limited to 'src/emu/machine/ncr539x.c')
-rw-r--r-- | src/emu/machine/ncr539x.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/emu/machine/ncr539x.c b/src/emu/machine/ncr539x.c index 2d5a23f9a41..8d8ffb50ff2 100644 --- a/src/emu/machine/ncr539x.c +++ b/src/emu/machine/ncr539x.c @@ -776,7 +776,8 @@ void ncr539x_device::exec_fifo() int length, phase; m_scsi_devices[m_last_id]->SetCommand(&m_fifo[0], 12); - m_scsi_devices[m_last_id]->ExecCommand(&length); + m_scsi_devices[m_last_id]->ExecCommand(); + m_scsi_devices[m_last_id]->GetLength(&length); m_scsi_devices[m_last_id]->GetPhase(&phase); #if VERBOSE |