about summary refs log tree commit diff stats
path: root/example
diff options
context:
space:
mode:
authorCamille Mougey <commial@gmail.com>2014-12-03 11:23:34 +0100
committerCamille Mougey <commial@gmail.com>2014-12-03 11:23:34 +0100
commit6a0cf990d2e0c11edc91629aabfd52f847f1a381 (patch)
tree908155c127bb6fec850846dd31547ce57afd1d1c /example
parentc5aa711745449cabd5bc0171ad0ed56b8d3a6881 (diff)
parent05a333fe41516fa6a2976bbdd84fc05b9bca0f4f (diff)
downloadmiasm-6a0cf990d2e0c11edc91629aabfd52f847f1a381.tar.gz
miasm-6a0cf990d2e0c11edc91629aabfd52f847f1a381.zip
Merge pull request #9 from serpilliere/loader_code
Loader code
Diffstat (limited to 'example')
-rw-r--r--example/test_jit_arm.py2
-rw-r--r--example/test_jit_arm_sc.py2
-rw-r--r--example/test_jit_mips32.py2
-rw-r--r--example/test_jit_msp430.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/example/test_jit_arm.py b/example/test_jit_arm.py
index da4a0e6d..e4eddad3 100644
--- a/example/test_jit_arm.py
+++ b/example/test_jit_arm.py
@@ -3,7 +3,7 @@
 from miasm2.analysis import debugging, gdbserver
 
 from miasm2.analysis.sandbox import Sandbox_Linux_arml
-from miasm2.jitter.jitload import vm_load_elf, libimp, preload_elf
+from miasm2.jitter.loader.elf import vm_load_elf, preload_elf
 from miasm2.analysis.machine import Machine
 import logging
 
diff --git a/example/test_jit_arm_sc.py b/example/test_jit_arm_sc.py
index 1ecafe69..2cac8686 100644
--- a/example/test_jit_arm_sc.py
+++ b/example/test_jit_arm_sc.py
@@ -4,7 +4,7 @@ from miasm2.analysis import debugging, gdbserver
 
 from miasm2.analysis.sandbox import Sandbox_Linux_armb_str
 from miasm2.analysis.sandbox import Sandbox_Linux_arml_str
-from miasm2.jitter.jitload import vm_load_elf, libimp, preload_elf
+from miasm2.jitter.loader.elf import vm_load_elf, preload_elf
 from miasm2.analysis.machine import Machine
 from elfesteem.strpatchwork import StrPatchwork
 import logging
diff --git a/example/test_jit_mips32.py b/example/test_jit_mips32.py
index a4f23319..f09e2d81 100644
--- a/example/test_jit_mips32.py
+++ b/example/test_jit_mips32.py
@@ -4,7 +4,7 @@ from argparse import ArgumentParser
 from miasm2.analysis import debugging, gdbserver
 from miasm2.jitter.csts import *
 
-from miasm2.jitter.jitload import vm_load_elf, libimp, preload_elf
+from miasm2.jitter.loader.elf import vm_load_elf, preload_elf
 from miasm2.analysis.machine import Machine
 from pdb import pm
 
diff --git a/example/test_jit_msp430.py b/example/test_jit_msp430.py
index 00174eec..4df9a869 100644
--- a/example/test_jit_msp430.py
+++ b/example/test_jit_msp430.py
@@ -4,7 +4,7 @@ from argparse import ArgumentParser
 from miasm2.analysis import debugging, gdbserver
 from miasm2.jitter.csts import *
 
-from miasm2.jitter.jitload import vm_load_elf, libimp, preload_elf
+from miasm2.jitter.loader.elf import vm_load_elf, preload_elf
 from miasm2.analysis.machine import Machine
 
 parser = ArgumentParser(