This commit is contained in:
LDj3SNuD 2019-12-04 21:18:57 +01:00
parent 8f57828363
commit 11cdae49f1

View file

@ -37,7 +37,7 @@ namespace ARMeilleure.Decoders
return tbl;
}
// abcdefgh -> aBbbbbbc defgh000 00000000 00000000
// abcdefgh -> aBbbbbbc defgh000 00000000 00000000 (B = ~b)
private static uint ExpandImm8ToFP32(uint imm)
{
uint MoveBit(uint bits, int from, int to)
@ -54,7 +54,7 @@ namespace ARMeilleure.Decoders
MoveBit(imm, 0, 19);
}
// abcdefgh -> aBbbbbbb bbcdefgh 00000000 00000000 00000000 00000000 00000000 00000000
// abcdefgh -> aBbbbbbb bbcdefgh 00000000 00000000 00000000 00000000 00000000 00000000 (B = ~b)
private static ulong ExpandImm8ToFP64(ulong imm)
{
ulong MoveBit(ulong bits, int from, int to)