Update OpCodeTable.cs

This commit is contained in:
LDj3SNuD 2018-10-31 23:17:40 +01:00 committed by GitHub
commit ed9deba9d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -544,7 +544,7 @@ namespace ChocolArm64
foreach (var inst in _allInstA64) foreach (var inst in _allInstA64)
{ {
int mask = ToFastLookupIndex(inst.Mask); int mask = ToFastLookupIndex(inst.Mask);
int value = ToFastLookupIndex(inst.Value); int value = ToFastLookupIndex(inst.Value);
for (int i = 0; i < _fastLookupSize; i++) for (int i = 0; i < _fastLookupSize; i++)
@ -665,8 +665,8 @@ namespace ChocolArm64
} }
private static void InsertInst( private static void InsertInst(
int xMask, int xMask,
int value, int value,
Inst inst, Inst inst,
ExecutionMode mode) ExecutionMode mode)
{ {