about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--README.md3
-rw-r--r--miasm2/arch/x86/sem.py1
2 files changed, 4 insertions, 0 deletions
diff --git a/README.md b/README.md
index 850916a5..81992f90 100644
--- a/README.md
+++ b/README.md
@@ -428,8 +428,11 @@ emulate library functions effects.
 
 Documentation
 =============
+
 TODO
 
+An auto-generated documentation is available [here](http://miasmdoc.ajax.re).
+
 Obtaining Miasm
 ===============
 
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),