diff options
| author | Romain Lesteven <romain.lesteven@gatewatcher.com> | 2021-05-05 11:02:33 +0200 |
|---|---|---|
| committer | Romain Lesteven <romain.lesteven@gatewatcher.com> | 2021-05-05 11:02:33 +0200 |
| commit | e0abd462cefd168ae82426533c1a822254aca374 (patch) | |
| tree | 486f3b67c279b452085943864dea336c760106aa /example/jitter/mips32.py | |
| parent | acfb6e552b287cc91d2060456be4ea7071b9ba8e (diff) | |
| download | miasm-e0abd462cefd168ae82426533c1a822254aca374.tar.gz miasm-e0abd462cefd168ae82426533c1a822254aca374.zip | |
Replace jitter.run boolean by jitter.running
Diffstat (limited to 'example/jitter/mips32.py')
| -rwxr-xr-x | example/jitter/mips32.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/jitter/mips32.py b/example/jitter/mips32.py index b84dc4e5..0e0c334e 100755 --- a/example/jitter/mips32.py +++ b/example/jitter/mips32.py @@ -31,7 +31,7 @@ parser.add_argument("addr", machine = Machine("mips32l") def code_sentinelle(jitter): - jitter.run = False + jitter.running = False jitter.pc = 0 return True |