diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2016-01-06 11:26:15 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2016-01-06 11:28:59 +0100 |
| commit | f56c33b6bdba48ce83fa77a2debcc119a7d511c0 (patch) | |
| tree | fad1dc2a8085d3552825892665264a52108dd911 /test/arch/x86/arch.py | |
| parent | 1eb15a19f2033e5e96d4f7614caf8f11c28396d7 (diff) | |
| download | miasm-f56c33b6bdba48ce83fa77a2debcc119a7d511c0.tar.gz miasm-f56c33b6bdba48ce83fa77a2debcc119a7d511c0.zip | |
X86: add andnp[sd]
Diffstat (limited to 'test/arch/x86/arch.py')
| -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 3fe33ac8..9fe718cc 100644 --- a/test/arch/x86/arch.py +++ b/test/arch/x86/arch.py @@ -2314,6 +2314,11 @@ reg_tests = [ "0f548327bd2c00"), (m32, "00000000 ANDPD XMM0, XMMWORD PTR [EBX+0x2CBD27]", "660f548327bd2c00"), + (m32, "00000000 ANDNPS XMM0, XMMWORD PTR [EBX+0x2CBD27]", + "0f558327bd2c00"), + (m32, "00000000 ANDNPD XMM0, XMMWORD PTR [EBX+0x2CBD27]", + "660f558327bd2c00"), + (m32, "00000000 SUBSD XMM1, XMM0", "f20f5cc8"), |