From 4b4519268aab71ec4c8a24b689ba93848e8d9dce Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Sun, 9 Sep 2018 20:09:21 +0300 Subject: [PATCH] x86 bridgeboard SCSI does not use interrupts (yet). --- scsi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scsi.cpp b/scsi.cpp index 4d32fded..c060d641 100644 --- a/scsi.cpp +++ b/scsi.cpp @@ -1781,7 +1781,7 @@ void ncr80_rethink(void) struct soft_scsi *s = soft_scsi_devices[i]; if (s->irq && s->intena && ((s->c400 && (s->regs_400[0] & 0x10) && !s->c400_count) || !s->c400)) { if (soft_scsi_devices[i] == x86_hd_data) { - x86_doirq(5); + ;// x86_doirq(5); } else { safe_interrupt_set(IRQ_SOURCE_SCSI, i, soft_scsi_devices[i]->level6); } -- 2.47.3