diff options
| author | Tim Blazytko <tim.blazytko@rub.de> | 2016-04-26 14:37:43 +0200 |
|---|---|---|
| committer | Tim Blazytko <tim.blazytko@rub.de> | 2016-04-26 21:17:14 +0200 |
| commit | 836b47e8941d1519ebeb62ec0aa85359f7ca7f5b (patch) | |
| tree | c23d341bb81f6dd6f8883a1dcc598d9ccc9825c3 /test | |
| parent | d9b1edbf47f6ab253372286cd3508d30b4339e53 (diff) | |
| download | miasm-836b47e8941d1519ebeb62ec0aa85359f7ca7f5b.tar.gz miasm-836b47e8941d1519ebeb62ec0aa85359f7ca7f5b.zip | |
x86 arch: extended opcode decoding for MOVUPS
arch: fixed x86 opcode decoding for movups. creds @serpilliere
Diffstat (limited to 'test')
| -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 f3a01d97..6a4ab6bb 100644 --- a/test/arch/x86/arch.py +++ b/test/arch/x86/arch.py @@ -2295,6 +2295,8 @@ reg_tests = [ (m32, "00000000 MOVUPS XMM2, XMMWORD PTR [ECX]", "0f1011"), + (m64, "00000000 MOVUPS XMMWORD PTR [RCX+0x50], XMM1", + "0f114950"), (m32, "00000000 MOVSD XMM2, QWORD PTR [ECX]", "f20f1011"), (m32, "00000000 MOVSD XMM2, XMM1", |