Fixed warning about too large signed number.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@619 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
e8a14fc949
commit
6c68afb171
|
@ -54,7 +54,7 @@ namespace Jit64
|
||||||
fpr.Flush(FLUSH_ALL);
|
fpr.Flush(FLUSH_ALL);
|
||||||
//Bits SRR1[0, 5-9, 16-23, 25-27, 30-31] are placed into the corresponding bits of the MSR.
|
//Bits SRR1[0, 5-9, 16-23, 25-27, 30-31] are placed into the corresponding bits of the MSR.
|
||||||
//MSR[13] is set to 0.
|
//MSR[13] is set to 0.
|
||||||
const int mask = 0x87C0FF73;
|
const u32 mask = 0x87C0FF73;
|
||||||
// MSR = (MSR & ~mask) | (SRR1 & mask);
|
// MSR = (MSR & ~mask) | (SRR1 & mask);
|
||||||
MOV(32, R(EAX), M(&MSR));
|
MOV(32, R(EAX), M(&MSR));
|
||||||
MOV(32, R(ECX), M(&SRR1));
|
MOV(32, R(ECX), M(&SRR1));
|
||||||
|
|
Loading…
Reference in New Issue