diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2020-12-07 18:01:44 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2020-12-24 17:15:46 +0100 |
| commit | 52f22525a577028b0716957bf506e69858472831 (patch) | |
| tree | a7e1521fc4a2643f6a88a3d4473450c56fb7254c /example/expression/get_read_write.py | |
| parent | 91b16391658eadd16e88c6bc20c06184e5353734 (diff) | |
| download | miasm-52f22525a577028b0716957bf506e69858472831.tar.gz miasm-52f22525a577028b0716957bf506e69858472831.zip | |
Rename LifterModelCallX86
Diffstat (limited to 'example/expression/get_read_write.py')
| -rw-r--r-- | example/expression/get_read_write.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/expression/get_read_write.py b/example/expression/get_read_write.py index d6bb37c2..752c4272 100644 --- a/example/expression/get_read_write.py +++ b/example/expression/get_read_write.py @@ -4,7 +4,7 @@ from future.utils import viewitems from miasm.arch.x86.arch import mn_x86 from miasm.expression.expression import get_rw -from miasm.arch.x86.lifter_model_call import ir_a_x86_32 +from miasm.arch.x86.lifter_model_call import LifterModelCall_x86_32 from miasm.core.locationdb import LocationDB loc_db = LocationDB() @@ -16,7 +16,7 @@ Get read/written registers for a given instruction """) arch = mn_x86 -ir_arch = ir_a_x86_32(loc_db) +ir_arch = LifterModelCall_x86_32(loc_db) ircfg = ir_arch.new_ircfg() instr = arch.fromstring('LODSB', loc_db, 32) instr.offset, instr.l = 0, 15 |