mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-14 17:00:17 +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)
|
||||
{
|
||||
int regCount = BitOperations.PopCount((uint)RegisterMask);
|
||||
|
||||
RegisterMask = opCode & 0xff;
|
||||
Rn = (opCode >> 8) & 7;
|
||||
|
||||
int regCount = BitOperations.PopCount((uint)RegisterMask);
|
||||
|
||||
Offset = 0;
|
||||
PostOffset = 4 * regCount;
|
||||
IsLoad = inst.Name switch
|
||||
|
|
Loading…
Reference in a new issue