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