about summary refs log tree commit diff stats
path: root/miasm2/arch/x86/arch.py
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2016-01-06 11:26:15 +0100
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2016-01-06 11:28:59 +0100
commitf56c33b6bdba48ce83fa77a2debcc119a7d511c0 (patch)
treefad1dc2a8085d3552825892665264a52108dd911 /miasm2/arch/x86/arch.py
parent1eb15a19f2033e5e96d4f7614caf8f11c28396d7 (diff)
downloadmiasm-f56c33b6bdba48ce83fa77a2debcc119a7d511c0.tar.gz
miasm-f56c33b6bdba48ce83fa77a2debcc119a7d511c0.zip
X86: add andnp[sd]
Diffstat (limited to '')
-rw-r--r--miasm2/arch/x86/arch.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/miasm2/arch/x86/arch.py b/miasm2/arch/x86/arch.py
index ee4f5fbf..efa955f3 100644
--- a/miasm2/arch/x86/arch.py
+++ b/miasm2/arch/x86/arch.py
@@ -3943,6 +3943,9 @@ addop("xorpd", [bs8(0x0f), bs8(0x57), pref_66] + rmmod(xmm_reg, rm_arg_xmm))
 addop("andps", [bs8(0x0f), bs8(0x54), no_xmm_pref] + rmmod(xmm_reg, rm_arg_xmm))
 addop("andpd", [bs8(0x0f), bs8(0x54), pref_66] + rmmod(xmm_reg, rm_arg_xmm))
 
+addop("andnps", [bs8(0x0f), bs8(0x55), no_xmm_pref] + rmmod(xmm_reg, rm_arg_xmm))
+addop("andnpd", [bs8(0x0f), bs8(0x55), pref_66] + rmmod(xmm_reg, rm_arg_xmm))
+
 ## OR
 addop("orps", [bs8(0x0f), bs8(0x56), no_xmm_pref] + rmmod(xmm_reg, rm_arg_xmm))
 addop("orpd", [bs8(0x0f), bs8(0x56), pref_66] + rmmod(xmm_reg, rm_arg_xmm))