Enable all ld/st (single structure) instructions

This commit is contained in:
gdkchan 2018-03-30 18:06:02 -03:00
parent 916540ff41
commit 53e2d34905
3 changed files with 8 additions and 8 deletions

View file

@ -25,8 +25,8 @@ namespace ChocolArm64.Decoder
default: Inst = AInst.Undefined; return;
}
Size = (OpCode >> 10) & 0x3;
WBack = ((OpCode >> 23) & 0x1) != 0;
Size = (OpCode >> 10) & 3;
WBack = ((OpCode >> 23) & 1) != 0;
bool Q = ((OpCode >> 30) & 1) != 0;