Skip to content
Permalink
Browse files
Merge pull request #10767 from Pokechu22/dsp-lle-dirq-zero-log
DSPLLE: Don't log when DIRQ is set to 0
  • Loading branch information
AdmiralCurtiss committed Jun 20, 2022
2 parents 4e09558 + c317f7f commit d524a92
Showing 1 changed file with 7 additions and 1 deletion.
@@ -96,9 +96,15 @@ void SDSP::WriteIFX(u32 address, u16 value)
{
case DSP_DIRQ:
if ((value & 1) != 0)
{
Host::InterruptRequest();
else
}
else if (value != 0)
{
// The homebrew libasnd uCode frequently writes 0 to DIRQ with a comment
// saying "clear the interrupt" - we don't need to log in this case.
WARN_LOG_FMT(DSPLLE, "Unknown Interrupt Request pc={:#06x} ({:#06x})", pc, value);
}
break;

case DSP_DMBH:

0 comments on commit d524a92

Please sign in to comment.