Changes from ARMv6 NOP to ARMv7 NOP.

Dolphin doesn't support ARMv6. Get this out of here.
This commit is contained in:
Ryan Houdek 2014-10-21 14:17:07 +00:00
parent 080883ad9e
commit 2e94814441
1 changed files with 5 additions and 5 deletions

View File

@ -370,7 +370,7 @@ void ARMXEmitter::NOP(int count)
{
for (int i = 0; i < count; i++)
{
Write32(condition | 0x01A00000);
Write32(condition | 0x0320F000);
}
}
@ -395,7 +395,7 @@ FixupBranch ARMXEmitter::B()
branch.ptr = code;
branch.condition = condition;
//We'll write NOP here for now.
Write32(condition | 0x01A00000);
Write32(condition | 0x0320F000);
return branch;
}
FixupBranch ARMXEmitter::BL()
@ -405,7 +405,7 @@ FixupBranch ARMXEmitter::BL()
branch.ptr = code;
branch.condition = condition;
//We'll write NOP here for now.
Write32(condition | 0x01A00000);
Write32(condition | 0x0320F000);
return branch;
}
@ -416,7 +416,7 @@ FixupBranch ARMXEmitter::B_CC(CCFlags Cond)
branch.ptr = code;
branch.condition = Cond << 28;
//We'll write NOP here for now.
Write32(condition | 0x01A00000);
Write32(condition | 0x0320F000);
return branch;
}
void ARMXEmitter::B_CC(CCFlags Cond, const void *fnptr)
@ -434,7 +434,7 @@ FixupBranch ARMXEmitter::BL_CC(CCFlags Cond)
branch.ptr = code;
branch.condition = Cond << 28;
//We'll write NOP here for now.
Write32(condition | 0x01A00000);
Write32(condition | 0x0320F000);
return branch;
}
void ARMXEmitter::SetJumpTarget(FixupBranch const &branch)