about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2015-05-22 18:39:39 +0200
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2015-05-22 23:30:03 +0200
commit2653b15a08f97feb0f158c98e17198a2c0fb64bb (patch)
tree377e044974e3704656c32a9186fc54562b62f13f
parent363a9f0e726fab0e53031de89f2b66db7558d010 (diff)
downloadmiasm-2653b15a08f97feb0f158c98e17198a2c0fb64bb.tar.gz
miasm-2653b15a08f97feb0f158c98e17198a2c0fb64bb.zip
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),