mirror of
https://github.com/holub/mame
synced 2025-06-24 13:26:36 +03:00
xor100.c: Make it possible to actually debug the system (nw)
This commit is contained in:
parent
6b8acd5d5b
commit
a000e9287c
@ -184,10 +184,13 @@ READ8_MEMBER( xor100_state::fdc_wait_r )
|
|||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!m_fdc_irq && !m_fdc_drq)
|
if (!space.debugger_access())
|
||||||
{
|
{
|
||||||
fatalerror("Z80 WAIT not supported by MAME core\n");
|
if (!m_fdc_irq && !m_fdc_drq)
|
||||||
m_maincpu->set_input_line(Z80_INPUT_LINE_WAIT, ASSERT_LINE);
|
{
|
||||||
|
fatalerror("Z80 WAIT not supported by MAME core\n");
|
||||||
|
m_maincpu->set_input_line(Z80_INPUT_LINE_WAIT, ASSERT_LINE);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return !m_fdc_irq << 7;
|
return !m_fdc_irq << 7;
|
||||||
|
Loading…
Reference in New Issue
Block a user