about summary refs log tree commit diff stats
path: root/example/test_jit_mips32.py
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2014-09-02 14:42:08 +0200
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2014-09-02 14:42:08 +0200
commit2659caf02742223b203821466aa162afe0ef717d (patch)
treea0946e5912c64f54f8d0bb307464e9e386af499f /example/test_jit_mips32.py
parenteebb3422f0c9606a92933630aa8cc02ac4b6d7bd (diff)
downloadmiasm-2659caf02742223b203821466aa162afe0ef717d.tar.gz
miasm-2659caf02742223b203821466aa162afe0ef717d.zip
mips example: modify example for reg tests
Diffstat (limited to 'example/test_jit_mips32.py')
-rw-r--r--example/test_jit_mips32.py4
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)