diff options
| author | Ajax <commial@gmail.com> | 2018-02-08 13:24:29 +0100 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2018-02-09 17:34:35 +0100 |
| commit | 615ee255906c0fe036e9dc87ee65ed27e0b6f88d (patch) | |
| tree | a5ef99e08b4b8b9eb0e81d644834794efe7dd52d /test/arch/x86/arch.py | |
| parent | 0264e8ae0338b7ecd5bbe5af8783193a3e7a1e7e (diff) | |
| download | miasm-615ee255906c0fe036e9dc87ee65ed27e0b6f88d.tar.gz miasm-615ee255906c0fe036e9dc87ee65ed27e0b6f88d.zip | |
Add PACKUSWB instruction
Diffstat (limited to '')
| -rw-r--r-- | test/arch/x86/arch.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py index b9bfec74..fbcb88f8 100644 --- a/test/arch/x86/arch.py +++ b/test/arch/x86/arch.py @@ -2974,6 +2974,11 @@ reg_tests = [ "0f63f8"), (m32, "00000000 PACKSSWB XMM0, XMM5", "660f63c5"), + + (m32, "00000000 PACKUSWB MM1, MM7", + "0f67cf"), + (m32, "00000000 PACKUSWB XMM0, XMM6", + "660f67c6"), ] |