diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2019-11-26 07:41:27 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-26 07:41:27 +0100 |
| commit | c37cec913ac7724f20b0da3e2ef66ae45bbb54c4 (patch) | |
| tree | b0db312633a4ffac1b3bb188f03c0b546a20071b /example | |
| parent | 30916ae176b52ccf9aa894ebe65e822deb115743 (diff) | |
| parent | 87dba497998a5c33b6780dca0cc128b0aaa27ce4 (diff) | |
| download | miasm-c37cec913ac7724f20b0da3e2ef66ae45bbb54c4.tar.gz miasm-c37cec913ac7724f20b0da3e2ef66ae45bbb54c4.zip | |
Merge pull request #1104 from serpilliere/multiple_fix
Multiple fix
Diffstat (limited to 'example')
| -rw-r--r-- | example/jitter/x86_32.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/example/jitter/x86_32.py b/example/jitter/x86_32.py index c2273b69..cee9241a 100644 --- a/example/jitter/x86_32.py +++ b/example/jitter/x86_32.py @@ -29,5 +29,4 @@ myjit.push_uint32_t(0x1337beef) myjit.add_breakpoint(0x1337beef, code_sentinelle) -myjit.init_run(run_addr) -myjit.continue_run() +myjit.run(run_addr) |