about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCamille Mougey <commial@gmail.com>2015-05-23 11:34:00 +0200
committerCamille Mougey <commial@gmail.com>2015-05-23 11:34:00 +0200
commitf69ba70ca17155de58811b10f52b4c011865a21d (patch)
tree46713ad729f3249455a0420c2e0fae8333f7f411
parent12593dfcdad75128c9806aa2b25c370a867b9c54 (diff)
parent2653b15a08f97feb0f158c98e17198a2c0fb64bb (diff)
downloadmiasm-f69ba70ca17155de58811b10f52b4c011865a21d.tar.gz
miasm-f69ba70ca17155de58811b10f52b4c011865a21d.zip
Merge pull request #167 from serpilliere/add_x86_mn
x86: add losq mnemonic
-rw-r--r--miasm2/arch/x86/sem.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/miasm2/arch/x86/sem.py b/miasm2/arch/x86/sem.py
index 8c3a351d..4dafc809 100644
--- a/miasm2/arch/x86/sem.py
+++ b/miasm2/arch/x86/sem.py
@@ -3281,6 +3281,7 @@ mnemo_func = {'mov': mov,
               'lodsb': lambda ir, instr: lods(ir, instr, 8),
               'lodsw': lambda ir, instr: lods(ir, instr, 16),
               'lodsd': lambda ir, instr: lods(ir, instr, 32),
+              'lodsq': lambda ir, instr: lods(ir, instr, 64),
 
               'movsb': lambda ir, instr: movs(ir, instr, 8),
               'movsw': lambda ir, instr: movs(ir, instr, 16),