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
Pyverilog_toolbox is Pyverilog-based verification/design tool including
code clone finder, metrics calculator and so on. Pyverilog_toolbox
accerating your digital circuit design verification. Thanks to Pyverilog
developer shtaxxx.
If you want to use Pyverilog as a general library, you can install on
your environment by using setup.py.
python setup.py install
Or you can use pip
pip install pyverilog_toolbox
Features
codeclone_finder
codeclone_finder can find pair of the register clone, which always hold
same value. Also can find pair of the invert register, which always hold
different value.
Unreferenced_finder can find signals which isn't referenced by any
signals. Also floating nodes can be found. By using this, you can delte
unnecessary codes.
cnt_analyzer analyze counter property(up or down, max value, reset
value and counter dependency). And extracting event which depends on
counter value. This feature help you finding redundunt counter, deadlock
loop, and other counter trouble.