about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorserpilliere <fabrice.desclaux@cea.fr>2015-10-17 21:26:48 +0200
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2015-10-23 10:47:24 +0200
commit89107171b2e6a22ed1b2d673809647c3e8941567 (patch)
tree3d72919b194333aaef2b8ca9df51785b7f0a062f
parent1d3a33cf6b1b9d744e4df4bafaf72bae2857b045 (diff)
downloadmiasm-89107171b2e6a22ed1b2d673809647c3e8941567.tar.gz
miasm-89107171b2e6a22ed1b2d673809647c3e8941567.zip
Arch/x86: add call far
Diffstat (limited to '')
-rw-r--r--miasm2/arch/x86/arch.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/miasm2/arch/x86/arch.py b/miasm2/arch/x86/arch.py
index 0658e58c..0c5368ac 100644
--- a/miasm2/arch/x86/arch.py
+++ b/miasm2/arch/x86/arch.py
@@ -3164,6 +3164,7 @@ addop("bts", [bs8(0x0f), bs8(0xba)] + rmmod(d5) + [u08])
 
 addop("call", [bs8(0xe8), rel_off])
 addop("call", [bs8(0xff), stk] + rmmod(d2))
+addop("call", [bs8(0xff), stk] + rmmod(d3, modrm=mod_mem))
 addop("call", [bs8(0x9a), moff, msegoff])