mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
mfic/mtic comments
This commit is contained in:
parent
962bd8239d
commit
59a7481017
1 changed files with 8 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue