git submodule init
git submodule update --init --recursive --remote
+# now installed as a command (/usr/local/bin/svanalysis) by setup.py
svanalysis:
- python3 openpower/sv_analysis.py
+ svanalysis
# now installed as a command (/usr/local/bin/pywriter) by setup.py
pywriter:
install_requires = [
'nmigen',
- #'nmutil', # can be obtained with pip3, best done manually
+ 'nmutil', # can be obtained with pip3, best done manually
]
test_requires = [
entry_points = {
'console_scripts': [
'pywriter=openpower.decoder.pseudo.pywriter:pywriter'
+ 'sv_analysis=openpower.sv:sv_analysis'
]
}
)