Fix CR/DR move operand sizes

This commit is contained in:
Alexis Engelke
2019-11-02 19:20:26 +01:00
parent 194a7d6831
commit 32d65fbf19
2 changed files with 11 additions and 7 deletions

View File

@@ -94,9 +94,9 @@ OPKIND_LOOKUP = {
"SREG": (0, 0, 3),
"FPU": (0, 0, 4),
"MEMZ": (0, 0, 0),
"BND": (0, 0, 0),
"CR": (0, 0, 0),
"DR": (0, 0, 0),
"BND": (0, 0, 8),
"CR": (0, 0, 9),
"DR": (0, 0, 10),
}
class InstrDesc(namedtuple("InstrDesc", "mnemonic,flags,encoding")):