about summary refs log tree commit diff stats
path: root/miasm2/jitter/jitcore_python.py
diff options
context:
space:
mode:
authorAjax <commial@gmail.com>2015-11-17 10:13:09 +0100
committerAjax <commial@gmail.com>2015-11-17 10:39:42 +0100
commitb56bafa0e4723ad42eecbdc7d26e17fdec5d9041 (patch)
treeffa24a17eafaaf598d0b85aa1b5479669b87155b /miasm2/jitter/jitcore_python.py
parentf2bf75cfd3ce105735b802458978779c887d1885 (diff)
downloadmiasm-b56bafa0e4723ad42eecbdc7d26e17fdec5d9041.tar.gz
miasm-b56bafa0e4723ad42eecbdc7d26e17fdec5d9041.zip
Symbexec: func_write callback doesn't need anymore last arg
It was used as a destination cache
Diffstat (limited to 'miasm2/jitter/jitcore_python.py')
-rw-r--r--miasm2/jitter/jitcore_python.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/miasm2/jitter/jitcore_python.py b/miasm2/jitter/jitcore_python.py
index 96db3a2b..187647b3 100644
--- a/miasm2/jitter/jitcore_python.py
+++ b/miasm2/jitter/jitcore_python.py
@@ -76,12 +76,11 @@ class JitCore_Python(jitcore.JitCore):
         return m2_expr.ExprInt(int(value[::-1].encode("hex"), 16),
                                expr_mem.size)
 
-    def func_write(self, symb_exec, dest, data, mem_cache):
+    def func_write(self, symb_exec, dest, data):
         """Memory read wrapper for symbolic execution
         @symb_exec: symbexec instance
         @dest: ExprMem instance
-        @data: Expr instance
-        @mem_cache: dict"""
+        @data: Expr instance"""
 
         # Get the content to write
         data = expr_simp(data)