diff options
Diffstat (limited to 'test/arch/x86/arch.py')
| -rw-r--r-- | test/arch/x86/arch.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py index 9a7f3d8a..80a8563d 100644 --- a/test/arch/x86/arch.py +++ b/test/arch/x86/arch.py @@ -72,6 +72,8 @@ reg_tests = [ (m64, "XXXXXXXX CPUID", "0fa2"), + (m32, "XXXXXXXX SETALC", + "D6"), (m32, "XXXXXXXX PMINSW MM0, QWORD PTR [EAX]", "0fea00"), @@ -2224,6 +2226,9 @@ reg_tests = [ (m32, "00000000 NOP", "90"), + (m64, "00000000 XCHG RAX, R8", + "4990"), + (m32, "00000000 XCHG BYTE PTR [EAX], AL", "8600"), @@ -2882,6 +2887,9 @@ reg_tests = [ (m64, "00000000 PEXTRQ QWORD PTR [RDX], XMM2, 0x5", "66480F3A161205"), + (m64, "00000000 PEXTRW RCX, XMM14, 0x5", + "664C0F3A15F105"), + (m32, "00000000 UNPCKHPS XMM2, XMMWORD PTR [EDX]", "0f1512"), |