diff options
| author | Ajax <commial@gmail.com> | 2017-01-06 13:02:14 +0100 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2017-01-06 13:02:14 +0100 |
| commit | e653d822b5a2efc5531c8e153305769a6ab17713 (patch) | |
| tree | 9add151e0d217971ec02d28397dca8a46c42bffc /test/jitter/jitload.py | |
| parent | 82da5885a0a2abc2769476ff85d376d6e3bbc229 (diff) | |
| download | miasm-e653d822b5a2efc5531c8e153305769a6ab17713.tar.gz miasm-e653d822b5a2efc5531c8e153305769a6ab17713.zip | |
Test/jitter for each jitter engine
Diffstat (limited to 'test/jitter/jitload.py')
| -rw-r--r-- | test/jitter/jitload.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/jitter/jitload.py b/test/jitter/jitload.py index 283298db..544e9d18 100644 --- a/test/jitter/jitload.py +++ b/test/jitter/jitload.py @@ -1,3 +1,4 @@ +import sys from pdb import pm from miasm2.jitter.csts import PAGE_READ, PAGE_WRITE @@ -9,7 +10,7 @@ from miasm2.expression.expression import ExprId, ExprInt32, ExprInt64, ExprAff, data = "8d49048d5b0180f90174058d5bffeb038d5b0189d8c3".decode("hex") # Init jitter -myjit = Machine("x86_32").jitter() +myjit = Machine("x86_32").jitter(sys.argv[1]) myjit.init_stack() run_addr = 0x40000000 |