sphinx-vhdl icon indicating copy to clipboard operation
sphinx-vhdl copied to clipboard

Results 7 sphinx-vhdl issues
Sort by recently updated
recently updated
newest added
trafficstars

I'm trying to get a `Framework :: Sphinx :: Domain` PyPi classifier approved to help with the Sphinx docs as well as keep the ecosystem more organize and I need...

Hi, I really appreciate using the vhdl domain for sphinx and the autodoc functionnalities. A lot of thanks for all the good work you have been doing so far. There...

```vhdl package math_pack is -- This function calculates the base 2 logarithm of a number. -- -- .. vhdl:parameters:: log2 -- -- a : in unsigned -- The number of...

```vhdl package math_pack is function log2 parameter (a : unsigned) return integer; end package math_pack; package body math_pack is -- This function calculates the base 2 logarithm of a number....

``` package math_pack is -- This function calculates the base 2 logarithm of a number. -- a : in unsigned -- The number of which to calculate the logarithm procedure...

```VHDL -- This package provides basic mathematic functions utilised all through -- the design package math_pack is -- This function calculates the base 2 logarithm of a number. -- --...