Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/habedi/systemcaccessnoxim
All you need to build and run SystemC and AccessNoxim on your system; SystemC and AccessNoxim are tools to emulate and test network-on-chip (NOC) algorithms
https://github.com/habedi/systemcaccessnoxim
hardware shell simulation systemc
Last synced: 2 months ago
JSON representation
All you need to build and run SystemC and AccessNoxim on your system; SystemC and AccessNoxim are tools to emulate and test network-on-chip (NOC) algorithms
- Host: GitHub
- URL: https://github.com/habedi/systemcaccessnoxim
- Owner: habedi
- License: agpl-3.0
- Created: 2015-04-23T05:51:19.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-12-17T08:20:32.000Z (about 7 years ago)
- Last Synced: 2024-03-16T04:10:43.592Z (10 months ago)
- Topics: hardware, shell, simulation, systemc
- Language: Shell
- Homepage:
- Size: 150 KB
- Stars: 11
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SystemC & AccessNoxim
All you need know to build and run SystemC and AccessNoxim on your system.[![GitHub issues](https://img.shields.io/github/issues/habedi/SystemC-AccessNoxim.svg)](https://github.com/habedi/SystemC-AccessNoxim/issues) [![GitHub forks](https://img.shields.io/github/forks/habedi/SystemC-AccessNoxim.svg)](https://github.com/habedi/SystemC-AccessNoxim/network) [![GitHub stars](https://img.shields.io/github/stars/habedi/SystemC-AccessNoxim.svg)](https://github.com/habedi/SystemC-AccessNoxim/stargazers) [![GitHub license](https://img.shields.io/badge/license-AGPLv3-blue.svg)](https://raw.githubusercontent.com/habedi/SystemC-AccessNoxim/master/LICENSE)
I assume you have downloaded AccessNoxim from (http://access.ee.ntu.edu.tw/noxim/index.html) and SystemC from (http://accellera.org/downloads/standards/systemc) and have uncompressed them in a directory, having two folders named AccessNoxim_v0.3 and systemc-2.3.1 inside it.
Note: This tutorial is tested for AccessNoxim v0.3 and SystemC 2.3.1 on Debian 8 amd64(Debian Sid, as 23 April 2015)
---Building SystemC{do this inside systemc-2.3.1}
export SYSTEMC_HOME=/usr/local/systemc231
sudo mkdir $SYSTEMC_HOME
chmod +x configure
mkdir objdir
cd objdir
../configure --prefix=$SYSTEMC_HOME
make
sudo make installBuilding AccessNoxim{do this inside AccessNoxim_v0.3}
export SYSTEMC_HOME=/usr/local/systemc231
export SYSTEMC_HEADERS=$SYSTEMC_HOME/include
export C_INCLUDE_PATH=$SYSTEMC_HEADERS
export CPLUS_INCLUDE_PATH=$SYSTEMC_HEADERS
cd bin
makeTo run AccessNoxim{do this inside AccessNoxim_v0.3/bin}
chmod +x noxim
./noximYou could run bashSetup.sh to add SYSTEMC_HOME and SYSTEMC_HEADERS and C_INCLUDE_PATH and CPLUS_INCLUDE_PATH permanently to your bash start-up scrip{aka ~/.bashrc}
chmod +x bashSetup.sh
./bashSetup.shA screen-shot of a noxim run
![AccessNoxim](https://github.com/habedi/SystemC-AccessNoxim/blob/master/accessnoxim-run.png "running noxim")