mirror of
https://github.com/Ryujinx/ChocolArm64.git
synced 2024-11-09 23:28:34 +00:00
[CPU] Fix CBZ/CBNZ with 32 bits operands
This commit is contained in:
parent
137eb89fad
commit
c3a48b8f5c
|
@ -1,4 +1,5 @@
|
|||
using ChocolArm64.Instruction;
|
||||
using ChocolArm64.State;
|
||||
|
||||
namespace ChocolArm64.Decoder
|
||||
{
|
||||
|
@ -11,6 +12,10 @@ namespace ChocolArm64.Decoder
|
|||
Rt = OpCode & 0x1f;
|
||||
|
||||
Imm = Position + ADecoderHelper.DecodeImmS19_2(OpCode);
|
||||
|
||||
RegisterSize = (OpCode >> 31) != 0
|
||||
? ARegisterSize.Int64
|
||||
: ARegisterSize.Int32;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue