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 /test/arch/x86/arch.py | |
| parent | 971b683a5f068068a2d775d5807deacd13918cf9 (diff) | |
| download | miasm-104d1425792e95a3df64aede5d46b43c324ca125.tar.gz miasm-104d1425792e95a3df64aede5d46b43c324ca125.zip | |
Add EMMS, implemtend as a NOP
Diffstat (limited to 'test/arch/x86/arch.py')
| -rw-r--r-- | test/arch/x86/arch.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py index f491c19a..2af90c8a 100644 --- a/test/arch/x86/arch.py +++ b/test/arch/x86/arch.py @@ -3074,6 +3074,9 @@ reg_tests = [ "0ff7d3"), (m32, "00000000 MASKMOVDQU XMM4, XMM5", "660ff7e5"), + + (m32, "00000000 EMMS", + "0f77"), ] |