about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--miasm/analysis/machine.py8
-rw-r--r--miasm/arch/mips32/lifter_model_call.py4
2 files changed, 6 insertions, 6 deletions
diff --git a/miasm/analysis/machine.py b/miasm/analysis/machine.py
index b7e17087..c8ae0a5c 100644
--- a/miasm/analysis/machine.py
+++ b/miasm/analysis/machine.py
@@ -154,8 +154,8 @@ class Machine(object):
             except ImportError:
                 pass
             mn = arch.mn_mips32
-            from miasm.arch.mips32.lifter_model_call import ir_a_mips32b as lifter_model_call
-            from miasm.arch.mips32.sem import Lifter_Mips32b as ir
+            from miasm.arch.mips32.lifter_model_call import LifterModelCallMips32b as lifter_model_call
+            from miasm.arch.mips32.sem import Lifter_Mips32b as lifter
         elif machine_name == "mips32l":
             from miasm.arch.mips32.disasm import dis_mips32l as dis_engine
             from miasm.arch.mips32 import arch
@@ -165,8 +165,8 @@ class Machine(object):
             except ImportError:
                 pass
             mn = arch.mn_mips32
-            from miasm.arch.mips32.lifter_model_call import ir_a_mips32l as lifter_model_call
-            from miasm.arch.mips32.sem import Lifter_Mips32l as ir
+            from miasm.arch.mips32.lifter_model_call import LifterModelCallMips32l as lifter_model_call
+            from miasm.arch.mips32.sem import Lifter_Mips32l as lifter
         elif machine_name == "ppc32b":
             from miasm.arch.ppc.disasm import dis_ppc32b as dis_engine
             from miasm.arch.ppc import arch
diff --git a/miasm/arch/mips32/lifter_model_call.py b/miasm/arch/mips32/lifter_model_call.py
index b9d0fe7e..bd0e8506 100644
--- a/miasm/arch/mips32/lifter_model_call.py
+++ b/miasm/arch/mips32/lifter_model_call.py
@@ -5,7 +5,7 @@ from miasm.ir.ir import IRBlock, AssignBlock
 from miasm.ir.analysis import LifterModelCall
 from miasm.arch.mips32.sem import Lifter_Mips32l, Lifter_Mips32b
 
-class ir_a_mips32l(Lifter_Mips32l, LifterModelCall):
+class LifterModelCallMips32l(Lifter_Mips32l, LifterModelCall):
     def __init__(self, loc_db):
         Lifter_Mips32l.__init__(self, loc_db)
         self.ret_reg = self.arch.regs.V0
@@ -98,7 +98,7 @@ class ir_a_mips32l(Lifter_Mips32l, LifterModelCall):
 
 
 
-class ir_a_mips32b(Lifter_Mips32b, ir_a_mips32l):
+class LifterModelCallMips32b(Lifter_Mips32b, LifterModelCallMips32l):
     def __init__(self, loc_db):
         Lifter_Mips32b.__init__(self, loc_db)
         self.ret_reg = self.arch.regs.V0