You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Then you got the result as below. The result of syntax analysis is displayed.
@@ -267,7 +267,7 @@ Dataflow analyzer
267
267
Let's try dataflow analysis. Please type the command as below.
268
268
269
269
```
270
-
python pyverilog/dataflow/dataflow_analyzer.py -t top test.v
270
+
python pyverilog/examples/example_dataflow_analyzer.py -t top test.v
271
271
```
272
272
273
273
Then you got the result as below. The result of each signal definition and each signal assignment are displayed.
@@ -293,7 +293,7 @@ Bind:
293
293
Let's view the result of dataflow analysis as a picture file. Now we select 'led' as the target. Please type the command as below. In this example, Graphviz and Pygraphviz are installed.
294
294
295
295
```
296
-
python pyverilog/dataflow/graphgen.py -t top -s top.led test.v
296
+
python pyverilog/examples/example_graphgen.py -t top -s top.led test.v
297
297
```
298
298
299
299
Then you got a png file (out.png). The picture shows that the definition of 'led' is a part-selection of 'count' from 23-bit to 16-bit.
@@ -306,7 +306,7 @@ Control-flow analyzer
306
306
Let's try control-flow analysis. Please type the command as below. In this example, Graphviz and Pygraphviz are installed. If don't use Graphviz, please append "--nograph" option.
307
307
308
308
```
309
-
python pyverilog/controlflow/controlflow_analyzer.py -t top test.v
309
+
python pyverilog/examples/example_controlflow_analyzer.py -t top test.v
310
310
```
311
311
312
312
Then you got the result as below. The result shows that the state machine structure and transition conditions to the next state in the state machine.
0 commit comments