diff options
| author | Ajax <commial@gmail.com> | 2018-02-09 14:54:18 +0100 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2018-02-09 17:36:31 +0100 |
| commit | 104d1425792e95a3df64aede5d46b43c324ca125 (patch) | |
| tree | b2f076cc353b876f35fe5c602f2c867aeaba203c /miasm2/arch/x86/arch.py | |
| parent | 971b683a5f068068a2d775d5807deacd13918cf9 (diff) | |
| download | miasm-104d1425792e95a3df64aede5d46b43c324ca125.tar.gz miasm-104d1425792e95a3df64aede5d46b43c324ca125.zip | |
Add EMMS, implemtend as a NOP
Diffstat (limited to 'miasm2/arch/x86/arch.py')
| -rw-r--r-- | miasm2/arch/x86/arch.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/miasm2/arch/x86/arch.py b/miasm2/arch/x86/arch.py index 40cd4e9c..72ed3309 100644 --- a/miasm2/arch/x86/arch.py +++ b/miasm2/arch/x86/arch.py @@ -4553,6 +4553,8 @@ addop("maskmovq", [bs8(0x0f), bs8(0xf7), no_xmm_pref] + addop("maskmovdqu", [bs8(0x0f), bs8(0xf7), pref_66] + rmmod(xmm_reg, rm_arg_xmm_reg)) +addop("emms", [bs8(0x0f), bs8(0x77)]) + mn_x86.bintree = factor_one_bit(mn_x86.bintree) # mn_x86.bintree = factor_fields_all(mn_x86.bintree) |