diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2020-12-07 17:39:45 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2020-12-24 17:15:46 +0100 |
| commit | 8accce26907ffb9a1a75ec5f91b6eff3ddb382be (patch) | |
| tree | 9d3bfb502fdc0739de134a2639bd03e5017f2e72 /miasm/arch/mips32/sem.py | |
| parent | 0175015f936fb4a29b661ecee2e90fb224b4f4bb (diff) | |
| download | miasm-8accce26907ffb9a1a75ec5f91b6eff3ddb382be.tar.gz miasm-8accce26907ffb9a1a75ec5f91b6eff3ddb382be.zip | |
Rename mips32 lifter
Diffstat (limited to '')
| -rw-r--r-- | miasm/arch/mips32/sem.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm/arch/mips32/sem.py b/miasm/arch/mips32/sem.py index 9445c27d..92302fa1 100644 --- a/miasm/arch/mips32/sem.py +++ b/miasm/arch/mips32/sem.py @@ -618,7 +618,7 @@ def get_mnemo_expr(ir, instr, *args): instr, extra_ir = mnemo_func[instr.name.lower()](ir, instr, *args) return instr, extra_ir -class ir_mips32l(Lifter): +class Lifter_Mips32l(Lifter): def __init__(self, loc_db): Lifter.__init__(self, mn_mips32, 'l', loc_db) @@ -652,7 +652,7 @@ class ir_mips32l(Lifter): def get_next_delay_loc_key(self, instr): return self.loc_db.get_or_create_offset_location(instr.offset + 16) -class ir_mips32b(ir_mips32l): +class Lifter_Mips32b(Lifter_Mips32l): def __init__(self, loc_db): self.addrsize = 32 Lifter.__init__(self, mn_mips32, 'b', loc_db) |