From e03b2983008dd67c2ba882bcd9c6d001667bcdf0 Mon Sep 17 00:00:00 2001 From: Olivier Galibert Date: Sun, 14 Jul 2019 22:03:42 +0200 Subject: [PATCH] i186: Fix weird handle_eoi bug [O. Galibert] --- src/devices/cpu/i86/i186.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/cpu/i86/i186.cpp b/src/devices/cpu/i86/i186.cpp index 66798474c69..e20db304930 100644 --- a/src/devices/cpu/i86/i186.cpp +++ b/src/devices/cpu/i86/i186.cpp @@ -1635,7 +1635,7 @@ WRITE16_MEMBER(i80186_cpu_device::internal_port_w) { case 0x11: if (LOG_PORTS) logerror("%05X:80186 EOI = %04X\n", m_pc, data); - handle_eoi(0x8000); + handle_eoi(data); update_interrupt_state(); break;