Compare commits
No commits in common. "a9a02e2d15b7d9e22c0cc52562af432b78ca797d" and "ab29f47004dc009203de869e440c247a08ad8d0d" have entirely different histories.
a9a02e2d15
...
ab29f47004
|
@ -495,7 +495,7 @@ static int cpuException(VB *sim) {
|
|||
sim->cpu.eipc = sim->cpu.pc;
|
||||
sim->cpu.psw.ep = 1;
|
||||
sim->cpu.nextPC = 0xFFFF0000 |
|
||||
((cause & 0xFFF0) == 0xFF70 ? 0xFF60 : cause & 0xFFF0);
|
||||
((cause & 0xFFE0) == 0xFF60 ? 0xFF60 : cause & 0xFFF0);
|
||||
}
|
||||
|
||||
/* All exceptions */
|
||||
|
|
Loading…
Reference in New Issue