mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-01-10 08:06:37 +00:00
[CPU] Fix CBZ/CBNZ with 32 bits operands
This commit is contained in:
parent
702daf2ff4
commit
980691f36b
@ -1,4 +1,5 @@
|
|||||||
using ChocolArm64.Instruction;
|
using ChocolArm64.Instruction;
|
||||||
|
using ChocolArm64.State;
|
||||||
|
|
||||||
namespace ChocolArm64.Decoder
|
namespace ChocolArm64.Decoder
|
||||||
{
|
{
|
||||||
@ -11,6 +12,10 @@ namespace ChocolArm64.Decoder
|
|||||||
Rt = OpCode & 0x1f;
|
Rt = OpCode & 0x1f;
|
||||||
|
|
||||||
Imm = Position + ADecoderHelper.DecodeImmS19_2(OpCode);
|
Imm = Position + ADecoderHelper.DecodeImmS19_2(OpCode);
|
||||||
|
|
||||||
|
RegisterSize = (OpCode >> 31) != 0
|
||||||
|
? ARegisterSize.Int64
|
||||||
|
: ARegisterSize.Int32;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user