instrs: Minor fixes to operand sizes

This commit is contained in:
Alexis Engelke
2021-01-03 17:50:49 +01:00
parent d2bf961b77
commit d8c7ee94b7
2 changed files with 11 additions and 11 deletions

View File

@@ -265,9 +265,9 @@ main(int argc, char** argv)
TEST64("\x66\xf3\x0f\xc7\xf8", "[RDPID reg8:r0]");
TEST64("\xf3\x66\x0f\xc7\xf8", "[RDPID reg8:r0]");
TEST64("\xf3\x0f\xc7\x00", "UD");
TEST64("\x0f\xc7\x30", "[VMPTRLD mem0:r0]");
TEST64("\x66\x0f\xc7\x30", "[VMCLEAR mem0:r0]");
TEST64("\xf3\x0f\xc7\x30", "[VMXON mem0:r0]");
TEST64("\x0f\xc7\x30", "[VMPTRLD mem8:r0]");
TEST64("\x66\x0f\xc7\x30", "[VMCLEAR mem8:r0]");
TEST64("\xf3\x0f\xc7\x30", "[VMXON mem8:r0]");
TEST64("\x0f\x09", "[WBINVD]");
TEST64("\xf3\x0f\x09", "[WBNOINVD]");