about summary refs log tree commit diff stats
path: root/test/arch/x86/arch.py
diff options
context:
space:
mode:
authorserpilliere <fabrice.desclaux@cea.fr>2015-10-17 21:26:54 +0200
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2015-10-23 10:47:24 +0200
commit33ef80c0cb66aa412696497dc1d35ed4bbd0dff0 (patch)
treeb38a150c9f4b527198cf03b8e817a75113844811 /test/arch/x86/arch.py
parent89107171b2e6a22ed1b2d673809647c3e8941567 (diff)
downloadmiasm-33ef80c0cb66aa412696497dc1d35ed4bbd0dff0.tar.gz
miasm-33ef80c0cb66aa412696497dc1d35ed4bbd0dff0.zip
Test/Arch/x86: call far
Diffstat (limited to 'test/arch/x86/arch.py')
-rw-r--r--test/arch/x86/arch.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py
index 8ea0f65f..022d387e 100644
--- a/test/arch/x86/arch.py
+++ b/test/arch/x86/arch.py
@@ -765,6 +765,11 @@ reg_tests = [
     (m32, "00000000    CALL       0x6655:0xFF332211",
      "9a112233FF5566"),
 
+    (m32, "00000000    CALL       DWORD PTR [0xFFFFFFA3]",
+     "FF1DA3FFFFFF"),
+    (m64, "00000000    CALL       QWORD PTR [RIP+0xFFFFFFFFFFFFFFA3]",
+     "FF1DA3FFFFFF"),
+
 
     (m16, "00000000    CBW",
      "98"),
@@ -2471,6 +2476,8 @@ reg_tests = [
     (m32, "00000000    COMISD     XMM7, XMM6",
     "660F2FFE"),
 
+
+
 ]