mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-10 14:39:01 +01:00
Changes from ARMv6 NOP to ARMv7 NOP.
Dolphin doesn't support ARMv6. Get this out of here.
This commit is contained in:
parent
080883ad9e
commit
2e94814441
@ -370,7 +370,7 @@ void ARMXEmitter::NOP(int count)
|
|||||||
{
|
{
|
||||||
for (int i = 0; i < count; i++)
|
for (int i = 0; i < count; i++)
|
||||||
{
|
{
|
||||||
Write32(condition | 0x01A00000);
|
Write32(condition | 0x0320F000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -395,7 +395,7 @@ FixupBranch ARMXEmitter::B()
|
|||||||
branch.ptr = code;
|
branch.ptr = code;
|
||||||
branch.condition = condition;
|
branch.condition = condition;
|
||||||
//We'll write NOP here for now.
|
//We'll write NOP here for now.
|
||||||
Write32(condition | 0x01A00000);
|
Write32(condition | 0x0320F000);
|
||||||
return branch;
|
return branch;
|
||||||
}
|
}
|
||||||
FixupBranch ARMXEmitter::BL()
|
FixupBranch ARMXEmitter::BL()
|
||||||
@ -405,7 +405,7 @@ FixupBranch ARMXEmitter::BL()
|
|||||||
branch.ptr = code;
|
branch.ptr = code;
|
||||||
branch.condition = condition;
|
branch.condition = condition;
|
||||||
//We'll write NOP here for now.
|
//We'll write NOP here for now.
|
||||||
Write32(condition | 0x01A00000);
|
Write32(condition | 0x0320F000);
|
||||||
return branch;
|
return branch;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -416,7 +416,7 @@ FixupBranch ARMXEmitter::B_CC(CCFlags Cond)
|
|||||||
branch.ptr = code;
|
branch.ptr = code;
|
||||||
branch.condition = Cond << 28;
|
branch.condition = Cond << 28;
|
||||||
//We'll write NOP here for now.
|
//We'll write NOP here for now.
|
||||||
Write32(condition | 0x01A00000);
|
Write32(condition | 0x0320F000);
|
||||||
return branch;
|
return branch;
|
||||||
}
|
}
|
||||||
void ARMXEmitter::B_CC(CCFlags Cond, const void *fnptr)
|
void ARMXEmitter::B_CC(CCFlags Cond, const void *fnptr)
|
||||||
@ -434,7 +434,7 @@ FixupBranch ARMXEmitter::BL_CC(CCFlags Cond)
|
|||||||
branch.ptr = code;
|
branch.ptr = code;
|
||||||
branch.condition = Cond << 28;
|
branch.condition = Cond << 28;
|
||||||
//We'll write NOP here for now.
|
//We'll write NOP here for now.
|
||||||
Write32(condition | 0x01A00000);
|
Write32(condition | 0x0320F000);
|
||||||
return branch;
|
return branch;
|
||||||
}
|
}
|
||||||
void ARMXEmitter::SetJumpTarget(FixupBranch const &branch)
|
void ARMXEmitter::SetJumpTarget(FixupBranch const &branch)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user