Go to file
Eyck Jentzsch eced81b5ea added sc_comm_singleton to coordinate interaction with clients (e.g. web
browser)
2017-11-10 22:40:24 +01:00
cmake Added seasocks via conan 2017-10-26 12:06:29 +02:00
dbt-core@29a69884d2 Fixed handling of compressed ISA 2017-10-25 22:05:31 +02:00
external Updated elfio and fixed a problem in CLI usage 2017-10-12 20:23:12 +02:00
html added sc_comm_singleton to coordinate interaction with clients (e.g. web 2017-11-10 22:40:24 +01:00
riscv added sc_comm_singleton to coordinate interaction with clients (e.g. web 2017-11-10 22:40:24 +01:00
riscv.sc added sc_comm_singleton to coordinate interaction with clients (e.g. web 2017-11-10 22:40:24 +01:00
sc-components@174e0f55f1 added sc_comm_singleton to coordinate interaction with clients (e.g. web 2017-11-10 22:40:24 +01:00
.clang-format Added clang-format formatting 2017-09-25 22:29:21 +02:00
.cproject Fixed portability issue 2017-10-18 11:23:51 +02:00
.gitignore Fixed setup to work with conan packages to simplify start to work 2017-10-29 20:56:20 +01:00
.gitmodules Fixed submodules spec 2017-09-25 21:24:01 +02:00
.project clean up class vs. struct 2017-10-12 22:41:37 +02:00
CMakeLists.txt Added seasocks via conan 2017-10-26 12:06:29 +02:00
LICENSE Initial commit 2017-08-27 13:04:48 +02:00
README.md Fixed setup to work with conan packages to simplify start to work 2017-10-29 20:56:20 +01:00
conanfile.txt added sc_comm_singleton to coordinate interaction with clients (e.g. web 2017-11-10 22:40:24 +01: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 20MIPS at an 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

  • RV64I is only preliminary verified
  • F & D standard extensions to be implemented

Planned features

  • add platform peripherals to resemble E300 platform
    • PLIC
    • gpio
    • ...
  • and more

Quick start

    pip install conan
  • setup conan to use the minres repo:
    conan add remote minres https://api.bintray.com/conan/minres/conan-repo
  • 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