diff options
Diffstat (limited to 'src/devices/cpu/i86/i86.cpp')
-rw-r--r-- | src/devices/cpu/i86/i86.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/i86/i86.cpp b/src/devices/cpu/i86/i86.cpp index fd85830e86b..8c78c47a1ab 100644 --- a/src/devices/cpu/i86/i86.cpp +++ b/src/devices/cpu/i86/i86.cpp @@ -585,7 +585,7 @@ void i8086_common_cpu_device::interrupt(int int_num, int trap) m_TF = m_IF = 0; if (int_num == -1) - int_num = standard_irq_callback(0); + int_num = standard_irq_callback(0, (m_sregs[CS] << 4) + m_ip); debugger_exception_hook(int_num); m_easeg = CS; |