Update CPU interrupt line on interrupt mask change

This commit is contained in:
Connor McLaughlin 2019-10-16 02:16:08 +10:00
parent 254c668d7e
commit 5784fc260d
1 changed files with 1 additions and 0 deletions

View File

@ -69,6 +69,7 @@ void InterruptController::WriteRegister(u32 offset, u32 value)
{
Log_DebugPrintf("Interrupt mask <- 0x%08X", value);
m_interrupt_mask_register = value & REGISTER_WRITE_MASK;
UpdateCPUInterruptRequest();
}
break;