about summary refs log tree commit diff stats
path: root/miasm2/arch/x86/arch.py
diff options
context:
space:
mode:
authorserpilliere <devnull@localhost>2014-07-21 11:48:16 +0200
committerserpilliere <devnull@localhost>2014-07-21 11:48:16 +0200
commite11704c033995f5888a84b4d211c9621ca4f231f (patch)
tree53f0166312d5ea933d40352141a05b86163c8773 /miasm2/arch/x86/arch.py
parent0c2b5ebcf567c4ef7649930d3f72a11677220de6 (diff)
downloadmiasm-e11704c033995f5888a84b4d211c9621ca4f231f.tar.gz
miasm-e11704c033995f5888a84b4d211c9621ca4f231f.zip
X86 arch: addps/addpd
Diffstat (limited to 'miasm2/arch/x86/arch.py')
-rw-r--r--miasm2/arch/x86/arch.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/miasm2/arch/x86/arch.py b/miasm2/arch/x86/arch.py
index 91a6acb9..8d45f438 100644
--- a/miasm2/arch/x86/arch.py
+++ b/miasm2/arch/x86/arch.py
@@ -3602,6 +3602,8 @@ addop("movq", [bs8(0x0f), bs8(0xd6), xmm, pref_66] +
 
 addop("addss", [bs8(0x0f), bs8(0x58), xmm, pref_f3] + rmmod(rmreg, rm_arg))
 addop("addsd", [bs8(0x0f), bs8(0x58), xmm, pref_f2] + rmmod(rmreg, rm_arg))
+addop("addps", [bs8(0x0f), bs8(0x58), xmm, no_xmm_pref] + rmmod(rmreg, rm_arg))
+addop("addpd", [bs8(0x0f), bs8(0x58), xmm, pref_66] + rmmod(rmreg, rm_arg))
 
 addop("subss", [bs8(0x0f), bs8(0x5c), xmm, pref_f3] + rmmod(rmreg, rm_arg))
 addop("subsd", [bs8(0x0f), bs8(0x5c), xmm, pref_f2] + rmmod(rmreg, rm_arg))