diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2015-10-23 14:44:01 +0200 |
|---|---|---|
| committer | serpilliere <serpilliere@users.noreply.github.com> | 2015-10-23 14:44:01 +0200 |
| commit | fb32efb74e2dc1077586a2214de558db6940b70b (patch) | |
| tree | d42a2e0744c5884b808e187eabf348a3f136afff /miasm2/jitter/jitcore_python.py | |
| parent | bcd4822ab014156c4977667b165072ba396d1f17 (diff) | |
| parent | 663a287f588719b0bc58c4d2a1f7e69f17ee986c (diff) | |
| download | miasm-fb32efb74e2dc1077586a2214de558db6940b70b.tar.gz miasm-fb32efb74e2dc1077586a2214de558db6940b70b.zip | |
Merge pull request #238 from commial/feature_cloop
Feature cloop
Diffstat (limited to 'miasm2/jitter/jitcore_python.py')
| -rw-r--r-- | miasm2/jitter/jitcore_python.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/jitter/jitcore_python.py b/miasm2/jitter/jitcore_python.py index 150e3906..bc284825 100644 --- a/miasm2/jitter/jitcore_python.py +++ b/miasm2/jitter/jitcore_python.py @@ -183,7 +183,7 @@ class JitCore_Python(jitcore.JitCore): # Associate myfunc with current label self.lbl2jitbloc[label.offset] = myfunc - def jit_call(self, label, cpu, vmmngr): + def jit_call(self, label, cpu, vmmngr, _breakpoints): """Call the function label with cpu and vmmngr states @label: function's label @cpu: JitCpu instance |