diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-06-19 18:04:16 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-06-21 14:43:34 +0200 |
| commit | c1654a18fba97161f51e8478014743b946440f9a (patch) | |
| tree | b88eee945139a71784c7ce8f4ab7c87c13fd84b9 /miasm2/arch/ppc/jit.py | |
| parent | e84d9554ec69a71e1300901eeac940424b9744a8 (diff) | |
| download | miasm-c1654a18fba97161f51e8478014743b946440f9a.tar.gz miasm-c1654a18fba97161f51e8478014743b946440f9a.zip | |
Jitter: rename jitter class into Jitter
Diffstat (limited to 'miasm2/arch/ppc/jit.py')
| -rw-r--r-- | miasm2/arch/ppc/jit.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/miasm2/arch/ppc/jit.py b/miasm2/arch/ppc/jit.py index 9134e032..e79faabd 100644 --- a/miasm2/arch/ppc/jit.py +++ b/miasm2/arch/ppc/jit.py @@ -1,4 +1,4 @@ -from miasm2.jitter.jitload import jitter, named_arguments +from miasm2.jitter.jitload import Jitter, named_arguments from miasm2.core import asmblock from miasm2.arch.ppc.sem import ir_ppc32b import struct @@ -11,7 +11,7 @@ hnd.setFormatter(logging.Formatter("[%(levelname)s]: %(message)s")) log.addHandler(hnd) log.setLevel(logging.CRITICAL) -class jitter_ppc32b(jitter): +class jitter_ppc32b(Jitter): max_reg_arg = 8 def __init__(self, *args, **kwargs): @@ -66,5 +66,5 @@ class jitter_ppc32b(jitter): def init_run(self, *args, **kwargs): - jitter.init_run(self, *args, **kwargs) + Jitter.init_run(self, *args, **kwargs) self.cpu.PC = self.pc |