Set size of rare memory operands to zero

This commit is contained in:
Alexis Engelke
2019-02-24 17:11:32 +01:00
parent 53ca6a2f23
commit 14c5590413
2 changed files with 28 additions and 26 deletions

View File

@@ -90,6 +90,7 @@ OPKIND_LOOKUP = {
"XMM256": (1, 5),
"SREG": (0, 0),
"FPU": (0, 0),
"MEMZ": (0, 0),
}
class InstrDesc(namedtuple("InstrDesc", "mnemonic,flags,encoding")):