diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2015-06-29 12:52:55 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2015-06-29 12:52:55 +0200 |
| commit | 60d795119cfef5c1691e96a99da314c61241cf37 (patch) | |
| tree | c3adb9733b6d06065854c8dff07684caeadbbf0f /example/disasm/full.py | |
| parent | 5e5dc1f12bed5fb8b8e2ac01392a236f02ea6250 (diff) | |
| download | miasm-60d795119cfef5c1691e96a99da314c61241cf37.tar.gz miasm-60d795119cfef5c1691e96a99da314c61241cf37.zip | |
Example/Disasm/Full: fix follow_call option
Diffstat (limited to 'example/disasm/full.py')
| -rw-r--r-- | example/disasm/full.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/example/disasm/full.py b/example/disasm/full.py index 7f523a23..b813e4fa 100644 --- a/example/disasm/full.py +++ b/example/disasm/full.py @@ -82,6 +82,7 @@ mdis = dis_engine(bs) mdis.dontdis_retcall = args.dontdis_retcall mdis.blocs_wd = args.blockwatchdog mdis.dont_dis_nulstart_bloc = not args.dis_nulstart_block +mdis.follow_call = args.followcall todo = [] addrs = [int(a, 16) for a in args.address] |