diff options
| author | Camille Mougey <commial@gmail.com> | 2016-01-30 22:54:31 +0100 |
|---|---|---|
| committer | Camille Mougey <commial@gmail.com> | 2016-01-30 22:54:31 +0100 |
| commit | 3672de7c319f39273cb7e34797cb928f424ff7c4 (patch) | |
| tree | b2b8f867dbec627940b2be9406ae87a009c731bf /example/disasm/full.py | |
| parent | dbf10438741443d59b8db500905d3d110a34c73c (diff) | |
| parent | d1eaeba1aab93a918d858750e2cc11a7ea283fbd (diff) | |
| download | miasm-3672de7c319f39273cb7e34797cb928f424ff7c4.tar.gz miasm-3672de7c319f39273cb7e34797cb928f424ff7c4.zip | |
Merge pull request #314 from serpilliere/graph_ir_asm
Graph ir asm
Diffstat (limited to 'example/disasm/full.py')
| -rw-r--r-- | example/disasm/full.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/disasm/full.py b/example/disasm/full.py index 0b0069c6..ee0b88dd 100644 --- a/example/disasm/full.py +++ b/example/disasm/full.py @@ -148,7 +148,7 @@ for blocs in all_funcs_blocs.values(): log.info('generate graph file') -open('graph_execflow.dot', 'w').write(all_blocs.dot(label=True)) +open('graph_execflow.dot', 'w').write(all_blocs.dot(offset=True)) log.info('generate intervals') |