fixup! T16: Implement Add to SP (immediate)

This commit is contained in:
merry 2022-02-13 19:40:21 +00:00
parent 848ff31a19
commit e870d4e089

View file

@ -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;
}
}
}