Add moves from/to control/debug registers

This commit is contained in:
Alexis Engelke
2019-11-02 17:09:41 +01:00
parent 9d6e357d54
commit 8c51339c49
2 changed files with 6 additions and 1 deletions

View File

@@ -95,6 +95,8 @@ OPKIND_LOOKUP = {
"FPU": (0, 0, 4),
"MEMZ": (0, 0, 0),
"BND": (0, 0, 0),
"CR": (0, 0, 0),
"DR": (0, 0, 0),
}
class InstrDesc(namedtuple("InstrDesc", "mnemonic,flags,encoding")):