mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-14 17:00:17 +00:00
fixup! T16: Implement ADD/SUB (SP)
This commit is contained in:
parent
b6078d2c00
commit
848ff31a19
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ namespace ARMeilleure.Decoders
|
|||
|
||||
public OpCodeT16AddSubSp(InstDescriptor inst, ulong address, int opCode, bool inITBlock) : base(inst, address, opCode, inITBlock)
|
||||
{
|
||||
Immediate = (opCode >> 0) & 0x7f;
|
||||
Immediate = ((opCode >> 0) & 0x7f) << 2;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue