about summary refs log tree commit diff stats
path: root/test
diff options
context:
space:
mode:
authorCamille Mougey <commial@gmail.com>2018-08-19 12:36:01 -0700
committerGitHub <noreply@github.com>2018-08-19 12:36:01 -0700
commit46bb6b39453ea8b5abb04dfd62492e429376a8ea (patch)
tree5229dc764e247f779aabb1789541d8a9ece56fb9 /test
parentfeea7b6ca5f0e9bb9f14619b195c21acd6799898 (diff)
parentdbf7bb972f812c70f210c5fc5ac99881602be910 (diff)
downloadmiasm-46bb6b39453ea8b5abb04dfd62492e429376a8ea.tar.gz
miasm-46bb6b39453ea8b5abb04dfd62492e429376a8ea.zip
Merge pull request #825 from cea-sec/x86_nop
X86: add nop form
Diffstat (limited to '')
-rw-r--r--test/arch/x86/arch.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py
index ce6012a0..44f5197e 100644
--- a/test/arch/x86/arch.py
+++ b/test/arch/x86/arch.py
@@ -1584,6 +1584,10 @@ reg_tests = [
     (m32, "00000000    NOP        DWORD PTR [EAX]",
      "0f1f00"),
 
+    (m32, "00000000    NOP        EAX",
+     "0f1fc8"),
+
+
     (m32, "00000000    NOT        BYTE PTR [EAX]",
      "f610"),
     (m32, "00000000    NOT        EBX",