MINRES The Good Folks Series cores ISS
Go to file
Eyck Jentzsch ec6a4877ba Updated Eclipse project name 2018-04-09 20:05:18 +02:00
.settings Moved to cmake4eclipse builder 2018-04-06 01:44:07 +02:00
cmake Adapted plugin behavior obeying availabiltiy of instrumentation 2018-04-06 02:45:11 +02:00
dbt-core@bc05d40184 Updated referenced dbt-core 2018-04-06 03:21:06 +02:00
etc Updated Eclipse project name 2018-04-09 20:05:18 +02:00
external Updated CMake settings 2018-03-28 10:29:45 +02:00
html Fixed transaction linking and gpio visualization 2017-11-27 00:15:20 +01:00
riscv Adapted plugin behavior obeying availabiltiy of instrumentation 2018-04-06 02:45:11 +02:00
riscv.sc Added cycle estimator and remove deprecated functions 2018-03-30 17:59:40 +02:00
sc-components@ac8bd1d291 Added cycle estimator and remove deprecated functions 2018-03-30 17:59:40 +02:00
.clang-format Added clang-format formatting 2017-09-25 22:29:21 +02:00
.cproject Updated Eclipse project name 2018-04-09 20:05:18 +02:00
.gitignore Moved to cmake4eclipse builder 2018-04-06 01:44:07 +02:00
.gitmodules Fixed submodules spec 2017-09-25 21:24:01 +02:00
.project Updated Eclipse project name 2018-04-09 20:05:18 +02:00
CMakeLists.txt Updated CMake settings 2018-03-28 10:29:45 +02:00
LICENSE Initial commit 2017-08-27 13:04:48 +02:00
README.md Added use of CCI and support of LLVM 5.0 2018-03-27 19:49:11 +02:00
build.sh Moved to cmake4eclipse builder 2018-04-06 01:44:07 +02:00
conanfile.txt Adapted plugin behavior obeying availabiltiy of instrumentation 2018-04-06 02:45:11 +02:00
simple-system.json Updated CMake settings 2018-03-28 10:29:45 +02:00

README.md

DBT-RISE-RISCV

Am instruction set simulator based on DBT-RISE implementing the RISC-V ISA

DBT-RISE-RISCV README

This is work in progress, so use at your own risk. Goal is to implement an open-source ISS which can easily embedded e.g. into SystemC Virtual Prototypes. It used code generation to allow easy extension and adaptation of the used instruction. The RISC-V ISS reaches about 30MIPS running on Intel Core i7-2600K.

The implementation is based on LLVM 4.0. Eclipse CDT 4.7 (Oxygen) is recommended as IDE.

DBT-RISE-RISCV uses libGIS (https://github.com/vsergeev/libGIS) as well as ELFIO (http://elfio.sourceforge.net/), both under MIT license

What's missing

  • F & D standard extensions for 32bit to be implemented
  • MACF &D standard extensions for 64bit to be implemented and verified

Planned features

  • add platform peripherals beyond programmers view to resemble E300 platform
    • QSPI
    • PWM
    • ...
  • and more

Quick start

    pip install conan
  • setup conan to use the minres repo:
    conan remote add minres https://api.bintray.com/conan/minres/conan-repo
    conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan
  • checkout source from git
  • start an out-of-source build:
    cd DBT-RISE-RiscV
    mkdir build
    cd build
    cmake ..
    cmake --build .
  • if you encounter issues when linking wrt. c++11 symbols you might have run into GCC ABI incompatibility introduced from GCC 5.0 onwards. You can fix this by adding '-s compiler.libcxx=libstdc++11' to the conan call or changing compiler.libcxx to
compiler.libcxx=libstdc++11

in $HOME/.conan/profiles/default