diff options
Diffstat (limited to 'doc/ir/lift.ipynb')
| -rw-r--r-- | doc/ir/lift.ipynb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ir/lift.ipynb b/doc/ir/lift.ipynb index 08d4dde6..933ed3b4 100644 --- a/doc/ir/lift.ipynb +++ b/doc/ir/lift.ipynb @@ -33,7 +33,7 @@ "from miasm.analysis.machine import Machine\n", "from miasm.arch.x86.arch import mn_x86\n", "from miasm.core import parse_asm, asmblock\n", - "from miasm.arch.x86.ira import ir_a_x86_32\n", + "from miasm.arch.x86.ira import LifterModelCall_x86_32\n", "from miasm.core.locationdb import LocationDB\n", "from miasm.loader.strpatchwork import StrPatchwork\n", "from miasm.analysis.binary import Container\n", @@ -87,7 +87,7 @@ " machine = Machine(\"x86_32\")\n", " # Get a lifter\n", " if ira and ira_custom is None:\n", - " ir_arch = ir_a_x86_32(asmcfg.loc_db)\n", + " ir_arch = LifterModelCall_x86_32(asmcfg.loc_db)\n", " elif ira_custom is not None:\n", " ir_arch = ira_custom(asmcfg.loc_db)\n", " else:\n", @@ -1802,7 +1802,7 @@ ], "source": [ "# Construct a custom ira lifter\n", - "class IRAFixCallStack(ir_a_x86_32):\n", + "class IRAFixCallStack(LifterModelCall_x86_32):\n", " def call_effects(self, addr, instr):\n", " if addr.is_loc():\n", " if self.loc_db.get_location_offset(addr.loc_key) == 0x11223344:\n", |