Use LE instead of GE where appropriate

This commit is contained in:
Jeffrey Pfau 2013-04-27 23:44:17 -07:00
parent dd4e6b0ce1
commit 2c8786ae4c
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ void ARMStep(struct ARMCore* cpu) {
}
break;
case 0xD:
if (!ARM_COND_GE) {
if (!ARM_COND_LE) {
cpu->cycles += 1 + cpu->memory->activePrefetchCycles32;
return;
}