diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2014-09-02 14:42:08 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2014-09-02 14:42:08 +0200 |
| commit | 2659caf02742223b203821466aa162afe0ef717d (patch) | |
| tree | a0946e5912c64f54f8d0bb307464e9e386af499f /example/test_jit_mips32.py | |
| parent | eebb3422f0c9606a92933630aa8cc02ac4b6d7bd (diff) | |
| download | miasm-2659caf02742223b203821466aa162afe0ef717d.tar.gz miasm-2659caf02742223b203821466aa162afe0ef717d.zip | |
mips example: modify example for reg tests
Diffstat (limited to '')
| -rw-r--r-- | example/test_jit_mips32.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/test_jit_mips32.py b/example/test_jit_mips32.py index 2e18b9dd..5dd9175d 100644 --- a/example/test_jit_mips32.py +++ b/example/test_jit_mips32.py @@ -70,8 +70,8 @@ def jit_mips32_binary(args): else: print(myjit.continue_run()) - + return myjit if __name__ == '__main__': from sys import stderr args = parser.parse_args() - jit_mips32_binary(args) + myjit = jit_mips32_binary(args) |