Skip to content

Commit 3d279f1

Browse files
committed
README updated
1 parent eb510cd commit 3d279f1

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
include README.md
22
include README.rst
33
recursive-include tests *
4+
recursive-include examples *
45
recursive-include verilogcode *
56
recursive-include img *

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ Code parser
147147
Let's try syntax analysis. Please type the command as below.
148148

149149
```
150-
python pyverilog/vparser/parser.py test.v
150+
python pyverilog/examples/example_parser.py test.v
151151
```
152152

153153
Then you got the result as below. The result of syntax analysis is displayed.
@@ -267,7 +267,7 @@ Dataflow analyzer
267267
Let's try dataflow analysis. Please type the command as below.
268268

269269
```
270-
python pyverilog/dataflow/dataflow_analyzer.py -t top test.v
270+
python pyverilog/examples/example_dataflow_analyzer.py -t top test.v
271271
```
272272

273273
Then you got the result as below. The result of each signal definition and each signal assignment are displayed.
@@ -293,7 +293,7 @@ Bind:
293293
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.
294294

295295
```
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
297297
```
298298

299299
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
306306
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.
307307

308308
```
309-
python pyverilog/controlflow/controlflow_analyzer.py -t top test.v
309+
python pyverilog/examples/example_controlflow_analyzer.py -t top test.v
310310
```
311311

312312
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.

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ Let's try syntax analysis. Please type the command as below.
161161

162162
::
163163

164-
python pyverilog/vparser/parser.py test.v
164+
python pyverilog/examples/example_parser.py test.v
165165

166166
Then you got the result as below. The result of syntax analysis is
167167
displayed.
@@ -282,7 +282,7 @@ Let's try dataflow analysis. Please type the command as below.
282282

283283
::
284284

285-
python pyverilog/dataflow/dataflow_analyzer.py -t top test.v
285+
python pyverilog/examples/example_dataflow_analyzer.py -t top test.v
286286

287287
Then you got the result as below. The result of each signal definition
288288
and each signal assignment are displayed.
@@ -311,7 +311,7 @@ example, Graphviz and Pygraphviz are installed.
311311

312312
::
313313

314-
python pyverilog/dataflow/graphgen.py -t top -s top.led test.v
314+
python pyverilog/examples/example_graphgen.py -t top -s top.led test.v
315315

316316
Then you got a png file (out.png). The picture shows that the definition
317317
of 'led' is a part-selection of 'count' from 23-bit to 16-bit.
@@ -330,7 +330,7 @@ Graphviz, please append "--nograph" option.
330330

331331
::
332332

333-
python pyverilog/controlflow/controlflow_analyzer.py -t top test.v
333+
python pyverilog/examples/example_controlflow_analyzer.py -t top test.v
334334

335335
Then you got the result as below. The result shows that the state
336336
machine structure and transition conditions to the next state in the

0 commit comments

Comments
 (0)