A Python package to interface with SystemC library and script SystemC simulations
Go to file
Eyck Jentzsch bfb69cc441 Merge branch 'develop' 2021-01-04 19:56:20 +00:00
pysysc add license identifier 2021-01-04 19:54:53 +00:00
tests add license identifier 2021-01-04 19:54:53 +00:00
.gitignore Initial commit 2018-12-31 16:18:02 +01:00
.project Initial commit 2018-12-31 16:18:02 +01:00
.pydevproject update packaging and test 2020-12-23 09:17:31 +01:00
LICENSE Updated license formatting 2018-12-31 16:32:38 +01:00
MANIFEST.in update packaging and test 2020-12-23 09:17:31 +01:00
NOTES.md Added support for SCV & CCI, updated notes 2019-01-06 15:21:33 +01:00
PyScModule.cpp add license identifier 2021-01-04 19:54:53 +00:00
PyScModule.h add license identifier 2021-01-04 19:54:53 +00:00
README.md update README.md 2020-12-23 09:19:56 +01:00
setup.py add license identifier 2021-01-04 19:54:53 +00:00

README.md

PySysC

A Python 3 package to use SystemC from Python

How to setup the environment

The installation for PySysC is as follows (using bash shell):

# create virtual environment
python3 -m venv pysysc-env
# and enable it
. pysysc-env/bin/activate
# install needed packages
python3 -m pip install wheel
# install cppyy, C++ std version needs to match the version used to build the SystemC library
STDCXX=11 python3 -m pip install cppyy
# clone of PySysC
git clone https://git.minres.com/SystemC/PySysC.git
# install PySysC, for development PySysC use 'python3 -m pip install -e`
python3 -m pip install -e PySysC

Testing (preliminary)

To use the tests you also need to clone and build the PySysC-SC repo as sibling of PySysC. It contains the the code and libraries being used in the test.

TODO

  • pythonize sc_module with iteration protocol (__next__ and StopIteration exception)