diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2014-10-07 18:41:37 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2014-10-07 18:41:37 +0200 |
| commit | 18ab294bf55dd6758444eec84a35e02810cef0d3 (patch) | |
| tree | ce3ed4d57bfa4a95db65d0a4ebde2b0a79b6e8c8 /miasm2/arch/x86/jit.py | |
| parent | 809d3738bb845d5b6d08e348e9a8a03e62536121 (diff) | |
| download | miasm-18ab294bf55dd6758444eec84a35e02810cef0d3.tar.gz miasm-18ab294bf55dd6758444eec84a35e02810cef0d3.zip | |
Move os_dep out of the jitter module
Diffstat (limited to 'miasm2/arch/x86/jit.py')
| -rw-r--r-- | miasm2/arch/x86/jit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/arch/x86/jit.py b/miasm2/arch/x86/jit.py index f574a3ee..b1d70f9b 100644 --- a/miasm2/arch/x86/jit.py +++ b/miasm2/arch/x86/jit.py @@ -111,7 +111,7 @@ class jitter_x86_32(jitter): if user_globals is None: user_globals = {} - from miasm2.jitter.os_dep import win_api_x86_32 + from miasm2.os_dep import win_api_x86_32 def handle_lib(jitter): fname = libs.fad2cname[jitter.pc] |