diff options
| author | Tim Blazytko <tim.blazytko@rub.de> | 2016-04-27 13:42:17 +0200 |
|---|---|---|
| committer | Tim Blazytko <tim.blazytko@rub.de> | 2016-04-27 14:42:44 +0200 |
| commit | a6cf9e8c892c77fa8dbb26f6dfb0b8feef0cd87e (patch) | |
| tree | 61856605d3119fc791e67ab0e7c4cb6e7c7f2264 /test/arch/x86/arch.py | |
| parent | 8eb0ecb6c1f26b11695bf71451b6b582f10c1c24 (diff) | |
| download | miasm-a6cf9e8c892c77fa8dbb26f6dfb0b8feef0cd87e.tar.gz miasm-a6cf9e8c892c77fa8dbb26f6dfb0b8feef0cd87e.zip | |
x86 arch: added x86 opcode decoding for SHUFPD
Diffstat (limited to 'test/arch/x86/arch.py')
| -rw-r--r-- | test/arch/x86/arch.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py index bee61a4b..e4330b33 100644 --- a/test/arch/x86/arch.py +++ b/test/arch/x86/arch.py @@ -2905,6 +2905,8 @@ reg_tests = [ (m64, "00000000 SHUFPS XMM0, XMM6, 0x44", "0fc6c644"), + (m64, "00000000 SHUFPD XMM0, XMM6, 0x44", + "660fc6c644"), ] |