diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2015-01-26 10:04:24 +0100 |
|---|---|---|
| committer | serpilliere <serpilliere@users.noreply.github.com> | 2015-01-26 10:04:24 +0100 |
| commit | b87f775c1a6a5c78c62beee925eaba6dc337577e (patch) | |
| tree | cf2650f575971bf8a23655a28c944e9e8a9da561 /example/jitter/x86_32.py | |
| parent | c59591a779ac644d1b50a720aea93cd8b36a2ddf (diff) | |
| parent | 7b9bbe4754db4d1f5229cc5cc5769ad6cf2e0a84 (diff) | |
| download | miasm-b87f775c1a6a5c78c62beee925eaba6dc337577e.tar.gz miasm-b87f775c1a6a5c78c62beee925eaba6dc337577e.zip | |
Merge pull request #45 from commial/refactor-examples
Refactor examples
Diffstat (limited to '')
| -rw-r--r-- | example/jitter/x86_32.py (renamed from example/test_jit_x86_32.py) | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/example/test_jit_x86_32.py b/example/jitter/x86_32.py index 8ba39bb3..1b2aa012 100644 --- a/example/test_jit_x86_32.py +++ b/example/jitter/x86_32.py @@ -1,8 +1,6 @@ -import sys import os from argparse import ArgumentParser -from miasm2.jitter.jitload import bin_stream_vm -from miasm2.jitter.csts import * +from miasm2.jitter.csts import PAGE_READ, PAGE_WRITE from miasm2.analysis.machine import Machine from pdb import pm |