about summary refs log tree commit diff stats
path: root/test/arch/x86/arch.py
diff options
context:
space:
mode:
authorserpilliere <devnull@localhost>2014-08-12 14:02:07 +0200
committerserpilliere <devnull@localhost>2014-08-12 14:02:07 +0200
commit78ff130268616a02e55eb4890baf2087fc5bc780 (patch)
treedde790b07a3a712e4f8591cacf245b3871f7a9c9 /test/arch/x86/arch.py
parent0b526f3725bfa78444c2f2d8f6167793de579029 (diff)
downloadmiasm-78ff130268616a02e55eb4890baf2087fc5bc780.tar.gz
miasm-78ff130268616a02e55eb4890baf2087fc5bc780.zip
x86: add les/lds. Fix call/ret far
Diffstat (limited to 'test/arch/x86/arch.py')
-rw-r--r--test/arch/x86/arch.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py
index be4d63cd..5a87012f 100644
--- a/test/arch/x86/arch.py
+++ b/test/arch/x86/arch.py
@@ -1733,6 +1733,22 @@ reg_tests = [
     (m32, "00000000    MOVDQA     DWORD PTR [ESP], XMM0",
      "660f7f0424"),
 
+    (m32, "00000000    LES        EDI, DWORD PTR [ESI]",
+     "C43E"),
+    (m32, "00000000    LDS        EDI, DWORD PTR [ESI]",
+     "C53E"),
+    (m32, "00000000    LSS        EDI, DWORD PTR [ESI]",
+     "0FB23E"),
+    (m32, "00000000    LFS        EDI, DWORD PTR [ESI]",
+     "0FB43E"),
+    (m32, "00000000    LGS        EDI, DWORD PTR [ESI]",
+     "0FB53E"),
+
+    (m16, "00000000    LES        SI, WORD PTR [BX+SI]",
+     "C430"),
+    (m16, "00000000    LDS        SI, WORD PTR [BX+SI]",
+     "C530"),
+
     #### MMX/SSE/AVX operations
     ####