diff options
| author | Camille Mougey <commial@gmail.com> | 2014-12-09 17:11:27 +0100 |
|---|---|---|
| committer | Camille Mougey <commial@gmail.com> | 2014-12-09 17:11:27 +0100 |
| commit | 3d309ba48a816dc3a634e90b40c5214c3f16dc09 (patch) | |
| tree | 2871452552519201a754080e5fe96610ba4d6edc /miasm2/jitter/loader/elf.py | |
| parent | 80eadc44c0d287ba01919f05143a1c7dda745d34 (diff) | |
| parent | 3d42eb7ae4ff21f143dcc6bb4ba52695119ebe1e (diff) | |
| download | miasm-3d309ba48a816dc3a634e90b40c5214c3f16dc09.tar.gz miasm-3d309ba48a816dc3a634e90b40c5214c3f16dc09.zip | |
Merge pull request #15 from serpilliere/fixes
Multiple Fix / Arm SMULL
Diffstat (limited to 'miasm2/jitter/loader/elf.py')
| -rw-r--r-- | miasm2/jitter/loader/elf.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/miasm2/jitter/loader/elf.py b/miasm2/jitter/loader/elf.py index 9a81c4f7..528ff4f5 100644 --- a/miasm2/jitter/loader/elf.py +++ b/miasm2/jitter/loader/elf.py @@ -5,7 +5,7 @@ from elfesteem import pe from elfesteem import cstruct from elfesteem import * from miasm2.jitter.csts import * -from utils import canon_libname_libfunc +from utils import canon_libname_libfunc, libimp from miasm2.core.interval import interval import logging @@ -78,3 +78,6 @@ def vm_load_elf(vm, fname, **kargs): for r_vaddr, data in all_data.items(): vm.set_mem(r_vaddr, data) return e + +class libimp_elf(libimp): + pass |