i86: Fixed debugging with segment prefixes. (nw)

This commit is contained in:
Curt Coder 2014-12-06 19:05:05 +02:00
parent bd1c776e89
commit 1245ccba8c

View File

@ -178,7 +178,10 @@ void i8086_cpu_device::execute_run()
}
}
debugger_instruction_hook( this, pc() );
if (!m_seg_prefix)
{
debugger_instruction_hook( this, pc() );
}
UINT8 op = fetch_op();