about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorserpilliere <fabrice.desclaux@cea.fr>2015-10-17 20:57:52 +0200
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2015-10-23 10:47:24 +0200
commit99363b7eabb12cbbad02a589efe2b5fc360e45f5 (patch)
treefc309aab2769cdde4be0d39c6369d05cab9bb9bb
parent26ad2407440bcbc899fc372377151832df511aeb (diff)
downloadmiasm-99363b7eabb12cbbad02a589efe2b5fc360e45f5.tar.gz
miasm-99363b7eabb12cbbad02a589efe2b5fc360e45f5.zip
Test/Arch/x86: dt mnemonics
-rw-r--r--test/arch/x86/arch.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py
index 2109aa53..734c8086 100644
--- a/test/arch/x86/arch.py
+++ b/test/arch/x86/arch.py
@@ -2056,6 +2056,14 @@ reg_tests = [
 
     (m32, "00000000    SIDT       DWORD PTR [EAX]",
      "0f0108"),
+    (m32, "00000000    SLDT       DWORD PTR [EAX]",
+     "0f0000"),
+
+
+    (m32, "00000000    LGDT       DWORD PTR [EAX]",
+     "0f0110"),
+    (m32, "00000000    LIDT       DWORD PTR [EAX]",
+     "0f0118"),