Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jck/riscv
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jck/riscv
- Owner: jck
- Created: 2016-05-15T05:55:02.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T14:24:10.000Z (about 1 year ago)
- Last Synced: 2024-04-16T12:09:12.546Z (9 months ago)
- Language: Python
- Size: 930 KB
- Stars: 19
- Watchers: 5
- Forks: 6
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RISC-V
[![Build Status](https://travis-ci.org/meetshah1995/riscv.svg?branch=master)](https://travis-ci.org/meetshah1995/riscv)
[![Code Health](https://landscape.io/github/meetshah1995/riscv/master/landscape.svg?style=flat)](https://landscape.io/github/meetshah1995/riscv/master)
[![Coverage Status](https://coveralls.io/repos/github/meetshah1995/riscv/badge.svg?branch=dev)](https://coveralls.io/github/meetshah1995/riscv?branch=dev)
[![Documentation Status](https://readthedocs.org/projects/riscv/badge/?version=latest)](http://riscv.readthedocs.io/en/latest/?badge=latest)## RISC-V implementation and tools.
### Available tools :
* Pure Python RISC-V 2.0 decoder.
* myHDL based decoder module.
* myHDL version of RISC-V core [Zscale](https://github.com/ucb-bar/zscale/)
* myHDL based Zscale core modules with individual module tests.### In Progress :
* Tests for core assembly.
### Installation and Usage
*Cloning the repo*
```
git clone https://github.com/jck/riscv.git
```*Installing dependencies*
```
cd riscv
python -m pip install -r requirements.txt
```*Usage*
The core modules can be imported by:
```
from riscv import alu
```*Running tests*
```
python -m pytest
```