Properly jit the break instruction.

Otherwise, it just keeps on going past it.
We never want to hit this anyway, but it's good to know if we do.
This commit is contained in:
Unknown W. Brackets
2013-02-01 00:49:14 -08:00
parent ec8f080491
commit 44b5adeaac
6 changed files with 18 additions and 2 deletions

View File

@@ -179,7 +179,7 @@ namespace MIPSInt
void Int_Break(u32 op)
{
DEBUG_LOG(CPU, "BREAK!");
ERROR_LOG(CPU, "BREAK!");
coreState = CORE_STEPPING;
PC += 4;
}