Skip to content

Commit eb510cd

Browse files
committed
method desc of examples are updated.
1 parent 3f7ad12 commit eb510cd

14 files changed

+16
-16
lines changed

examples/example_active_analyzer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
def main():
1818
INFO = "Active condition analyzer"
1919
VERSION = pyverilog.utils.version.VERSION
20-
USAGE = "Usage: python active_analyzer.py -t TOPMODULE file ..."
20+
USAGE = "Usage: python example_active_analyzer.py -t TOPMODULE file ..."
2121

2222
def showVersion():
2323
print(INFO)

examples/example_active_range.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
def main():
1717
INFO = "Active condition analyzer (Obsoluted)"
1818
VERSION = pyverilog.utils.version.VERSION
19-
USAGE = "Usage: python active_range.py -t TOPMODULE file ..."
19+
USAGE = "Usage: python example_active_range.py -t TOPMODULE file ..."
2020

2121
def showVersion():
2222
print(INFO)

examples/example_codegen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
def main():
1515
INFO = "Code converter from AST"
1616
VERSION = pyverilog.utils.version.VERSION
17-
USAGE = "Usage: python codegen.py file ..."
17+
USAGE = "Usage: python example_codegen.py file ..."
1818

1919
def showVersion():
2020
print(INFO)

examples/example_controlflow_analyzer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
def main():
1717
INFO = "Control-flow analyzer for Verilog definitions"
1818
VERSION = pyverilog.utils.version.VERSION
19-
USAGE = "Usage: python controlflow_analyzer.py -t TOPMODULE file ..."
19+
USAGE = "Usage: python example_controlflow_analyzer.py -t TOPMODULE file ..."
2020

2121
def showVersion():
2222
print(INFO)

examples/example_dataflow_analyzer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
def main():
1414
INFO = "Verilog module signal/module dataflow analyzer"
1515
VERSION = pyverilog.utils.version.VERSION
16-
USAGE = "Usage: python dataflow_analyzer.py -t TOPMODULE file ..."
16+
USAGE = "Usage: python example_dataflow_analyzer.py -t TOPMODULE file ..."
1717

1818
def showVersion():
1919
print(INFO)

examples/example_dataflow_codegen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
def main():
1616
INFO = "Code generator from Verilog dataflow definitions"
1717
VERSION = pyverilog.utils.version.VERSION
18-
USAGE = "Usage: python codegen.py -t TOPMODULE file ..."
18+
USAGE = "Usage: python example_dataflow_codegen.py -t TOPMODULE file ..."
1919

2020
def showVersion():
2121
print(INFO)

examples/example_graphgen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
def main():
2727
INFO = "Graph generator from dataflow"
2828
VERSION = pyverilog.utils.version.VERSION
29-
USAGE = "Usage: python graphgen.py -t TOPMODULE -s TARGETSIGNAL file ..."
29+
USAGE = "Usage: python example_graphgen.py -t TOPMODULE -s TARGETSIGNAL file ..."
3030

3131
def showVersion():
3232
print(INFO)

examples/example_lexer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
from pyverilog.vparser.lexer import dump_tokens
1313

1414
def main():
15-
INFO = "Verilog Preprocessor"
15+
INFO = "Verilog Lexer"
1616
VERSION = pyverilog.utils.version.VERSION
17-
USAGE = "Usage: python preprocessor.py file ..."
17+
USAGE = "Usage: python example_lexer.py file ..."
1818

1919
def showVersion():
2020
print(INFO)

examples/example_merge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
def main():
1717
INFO = "Dataflow merge module"
1818
VERSION = pyverilog.utils.version.VERSION
19-
USAGE = "Usage: python merge.py -t TOPMODULE file ..."
19+
USAGE = "Usage: python example_merge.py -t TOPMODULE file ..."
2020

2121
def showVersion():
2222
print(INFO)

examples/example_optimizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
def main():
1515
INFO = "Verilog dataflow optimizer with Pyverilog"
1616
VERSION = pyverilog.utils.version.VERSION
17-
USAGE = "Usage: python optimizer.py -t TOPMODULE file ..."
17+
USAGE = "Usage: python example_optimizer.py -t TOPMODULE file ..."
1818

1919
def showVersion():
2020
print(INFO)

0 commit comments

Comments
 (0)