diff options
| author | Ivan “CLOVIS” Canet <ivan.canet@gmail.com> | 2022-03-16 09:28:33 +0100 |
|---|---|---|
| committer | Ivan “CLOVIS” Canet <ivan.canet@gmail.com> | 2022-03-21 09:21:51 +0100 |
| commit | 711752fc45027682e962853906a4b515e5f45849 (patch) | |
| tree | 848849d98b4b512eb1795cb137fc1d0391fc38cc /example/expression | |
| parent | 64f55d0c4f8f770e5b1d41ce59228ab2cba07f9a (diff) | |
| download | miasm-711752fc45027682e962853906a4b515e5f45849.tar.gz miasm-711752fc45027682e962853906a4b515e5f45849.zip | |
Fixed output file name in graph_dataflow
Diffstat (limited to 'example/expression')
| -rw-r--r-- | example/expression/graph_dataflow.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/example/expression/graph_dataflow.py b/example/expression/graph_dataflow.py index 0546fda3..dc09eae4 100644 --- a/example/expression/graph_dataflow.py +++ b/example/expression/graph_dataflow.py @@ -158,8 +158,10 @@ gen_block_data_flow_graph(lifter, ircfg, ad, block_flow_cb) print('*' * 40) print(""" View with: -dotty dataflow.dot +dotty data.dot + or +xdot data.dot or Generate ps with pdf: -dot -Tps dataflow_xx.dot -o graph.ps +dot -Tps data.dot -o graph.ps """) |