mfic/mtic comments

This commit is contained in:
Henrik Rydgård 2025-03-02 01:55:54 +01:00
parent 962bd8239d
commit 59a7481017

View file

@ -828,14 +828,18 @@ namespace MIPSInt
switch (op & 0x3F)
{
case 36: // mfic
// move from interrupt controller, not implemented
// See related report https://report.ppsspp.org/logs/kind/316 for possible locations.
// Also see https://forums.ps2dev.org/viewtopic.php?p=32700#p32700 .
if (!reported) {
WARN_LOG(Log::CPU,"MFIC Disable/Enable Interrupt CPU instruction");
WARN_LOG(Log::CPU, "MFIC Disable/Enable Interrupt CPU instruction");
reported = 1;
}
break;
case 38: // mtic
// move to interrupt controller, not implemented
if (!reported) {
WARN_LOG(Log::CPU,"MTIC Disable/Enable Interrupt CPU instruction");
WARN_LOG(Log::CPU, "MTIC Disable/Enable Interrupt CPU instruction");
reported = 1;
}
break;
@ -1026,9 +1030,10 @@ namespace MIPSInt
switch (op & 1)
{
case 0:
// unlikely to be legitimately used
if (!reported) {
Reporting::ReportMessage("INTERRUPT instruction hit (%08x) at %08x", op.encoding, currentMIPS->pc);
WARN_LOG(Log::CPU,"Disable/Enable Interrupt CPU instruction");
WARN_LOG(Log::CPU, "Disable/Enable Interrupt CPU instruction");
reported = 1;
}
break;