diff options
| author | Camille Mougey <commial@gmail.com> | 2015-06-29 14:33:58 +0200 |
|---|---|---|
| committer | Camille Mougey <commial@gmail.com> | 2015-06-29 14:33:58 +0200 |
| commit | c4f4b5bf0484dfbb516d3b80e958c57fc8c2aebf (patch) | |
| tree | c3adb9733b6d06065854c8dff07684caeadbbf0f | |
| parent | 5e5dc1f12bed5fb8b8e2ac01392a236f02ea6250 (diff) | |
| parent | 60d795119cfef5c1691e96a99da314c61241cf37 (diff) | |
| download | miasm-c4f4b5bf0484dfbb516d3b80e958c57fc8c2aebf.tar.gz miasm-c4f4b5bf0484dfbb516d3b80e958c57fc8c2aebf.zip | |
Merge pull request #186 from serpilliere/fix_dis_example
Example/Disasm/Full: fix follow_call option
| -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] |