1- sphinxcontrib-verilog -diagrams
1+ sphinxcontrib-hdl -diagrams
22==============================
33
44
5- .. image :: https://img.shields.io/pypi/v/sphinxcontrib-verilog -diagrams.svg
6- :target: https://pypi.python.org/pypi/sphinxcontrib-verilog -diagrams
5+ .. image :: https://img.shields.io/pypi/v/sphinxcontrib-hdl -diagrams.svg
6+ :target: https://pypi.python.org/pypi/sphinxcontrib-hdl -diagrams
77 :alt: PyPI
88
99
10- .. image :: https://img.shields.io/pypi/pyversions/sphinxcontrib-verilog -diagrams.svg
11- :target: https://pypi.python.org/pypi/sphinxcontrib-verilog -diagrams
10+ .. image :: https://img.shields.io/pypi/pyversions/sphinxcontrib-hdl -diagrams.svg
11+ :target: https://pypi.python.org/pypi/sphinxcontrib-hdl -diagrams
1212 :alt: PyPI version
1313
1414
15- .. image :: https://readthedocs.org/projects/sphinxcontrib-verilog -diagrams/badge
16- :target: https://sphinxcontrib-verilog -diagrams.readthedocs.io/en/latest/
15+ .. image :: https://readthedocs.org/projects/sphinxcontrib-hdl -diagrams/badge
16+ :target: https://sphinxcontrib-hdl -diagrams.readthedocs.io/en/latest/
1717 :alt: Documentation
1818
1919
20- .. image :: https://travis-ci.com/SymbiFlow/sphinxcontrib-verilog -diagrams.svg?branch=master
21- :target: https://travis-ci.com/SymbiFlow/sphinxcontrib-verilog -diagrams
20+ .. image :: https://travis-ci.com/SymbiFlow/sphinxcontrib-hdl -diagrams.svg?branch=master
21+ :target: https://travis-ci.com/SymbiFlow/sphinxcontrib-hdl -diagrams
2222 :alt: Build Status
2323
2424
25- .. image :: https://codecov.io/gh/SymbiFlow/sphinxcontrib-verilog -diagrams/branch/master/graph/badge.svg
26- :target: https://codecov.io/gh/SymbiFlow/sphinxcontrib-verilog -diagrams
25+ .. image :: https://codecov.io/gh/SymbiFlow/sphinxcontrib-hdl -diagrams/branch/master/graph/badge.svg
26+ :target: https://codecov.io/gh/SymbiFlow/sphinxcontrib-hdl -diagrams
2727 :alt: codecov
2828
2929
3030----
3131
32- Sphinx Extension which generates various types of diagrams from Verilog code.
32+ Sphinx Extension which generates various types of diagrams from HDL code, supporting Verilog,
33+ nMigen and RTLIL.
3334
34- `sphinxcontrib-verilog -diagrams <https://github.com/SymbiFlow/sphinxcontrib-verilog -diagrams >`_
35+ `sphinxcontrib-hdl -diagrams <https://github.com/SymbiFlow/sphinxcontrib-hdl -diagrams >`_
3536is a Sphinx extension to make it easier to write nice documentation from
36- Verilog files. It primarily uses `Yosys <https://github.com/YosysHQ/yosys >`_ to do the Verilog reading.
37+ HDL source files. It primarily uses `Yosys <https://github.com/YosysHQ/yosys >`_ to read the source files
38+ and generate the diagrams.
3739
38- Check out the `documentation <https://sphinxcontrib-verilog -diagrams.readthedocs.io/en/latest >`_ for examples.
40+ Check out the `documentation <https://sphinxcontrib-hdl -diagrams.readthedocs.io/en/latest >`_ for examples.
3941
4042Installation
4143------------
@@ -44,13 +46,13 @@ Python 3.5+ is required.
4446
4547.. code-block ::
4648
47- pip install sphinxcontrib-verilog -diagrams
49+ pip install sphinxcontrib-hdl -diagrams
4850
4951 Or,
5052
5153.. code-block ::
5254
53- python3 -m pip install sphinxcontrib-verilog -diagrams
55+ python3 -m pip install sphinxcontrib-hdl -diagrams
5456
5557 Sphinx Integration
5658^^^^^^^^^^^^^^^^^^
@@ -61,7 +63,7 @@ In your conf.py, add the following lines.
6163
6264 extensions = [
6365 ... ,
64- ' sphinxcontrib_verilog_diagrams ' ,
66+ ' sphinxcontrib_hdl_diagrams ' ,
6567 ]
6668
6769 Non-Python Dependencies
@@ -107,15 +109,15 @@ Optional
107109Usage
108110-----
109111
110- ``verilog -diagram ``
112+ ``hdl -diagram ``
111113^^^^^^^^^^^^^^^^^^^
112114
113- The ``verilog -diagram `` RST directive can be used to generate a diagram from Verilog code and include it in your documentation.
114- Check out the `examples <https://sphinxcontrib-verilog -diagrams.readthedocs.io/en/latest/ >`_ to see how to use it.
115+ The ``hdl -diagram `` RST directive can be used to generate a diagram from Verilog code and include it in your documentation.
116+ Check out the `examples <https://sphinxcontrib-hdl -diagrams.readthedocs.io/en/latest/ >`_ to see how to use it.
115117
116118.. code-block :: rst
117119
118- .. verilog -diagram:: file.v
120+ .. hdl -diagram:: file.v
119121 :type: XXXXX
120122 :module: XXXX
121123 :skin: XXXX
@@ -125,7 +127,7 @@ Check out the `examples <https://sphinxcontrib-verilog-diagrams.readthedocs.io/e
125127 Options
126128~~~~~~~
127129
128- ``:type: `` - Verilog Diagram Types;
130+ ``:type: `` - HDL Diagram Types;
129131
130132
131133* ``yosys-blackbox `` - Netlist rendered by Yosys.
0 commit comments