mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-14 22:40:18 +00:00
fixup
This commit is contained in:
parent
f5020e991c
commit
d0e2de6b37
1 changed files with 3 additions and 2 deletions
|
@ -16,10 +16,11 @@ namespace ARMeilleure.Decoders
|
||||||
|
|
||||||
public OpCodeT16MemMult(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
|
public OpCodeT16MemMult(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
|
||||||
{
|
{
|
||||||
int regCount = BitOperations.PopCount((uint)RegisterMask);
|
|
||||||
|
|
||||||
RegisterMask = opCode & 0xff;
|
RegisterMask = opCode & 0xff;
|
||||||
Rn = (opCode >> 8) & 7;
|
Rn = (opCode >> 8) & 7;
|
||||||
|
|
||||||
|
int regCount = BitOperations.PopCount((uint)RegisterMask);
|
||||||
|
|
||||||
Offset = 0;
|
Offset = 0;
|
||||||
PostOffset = 4 * regCount;
|
PostOffset = 4 * regCount;
|
||||||
IsLoad = inst.Name switch
|
IsLoad = inst.Name switch
|
||||||
|
|
Loading…
Reference in a new issue