mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
ns32000: one more bug fix
This commit is contained in:
parent
a17818fec9
commit
435485fd01
@ -530,6 +530,9 @@ template <int Width> void ns32000_device<Width>::interrupt(unsigned const vector
|
||||
|
||||
// TODO: flush queue
|
||||
m_sequential = false;
|
||||
|
||||
if (trap && (machine().debug_flags & DEBUG_FLAG_ENABLED))
|
||||
debug()->exception_hook(vector);
|
||||
}
|
||||
|
||||
template <int Width> void ns32000_device<Width>::execute_run()
|
||||
@ -1647,7 +1650,7 @@ template <int Width> void ns32000_device<Width>::execute_run()
|
||||
else
|
||||
m_psr &= ~PSR_F;
|
||||
|
||||
m_r[mode[1].gen] |= ~(1U << (offset & 31));
|
||||
m_r[mode[1].gen] |= (1U << (offset & 31));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user