Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eatonphil/riscve
A RISC-V user-mode emulator for RV64I
https://github.com/eatonphil/riscve
emulator golang risc-v
Last synced: 25 days ago
JSON representation
A RISC-V user-mode emulator for RV64I
- Host: GitHub
- URL: https://github.com/eatonphil/riscve
- Owner: eatonphil
- Created: 2019-07-29T03:35:54.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-08-05T04:08:10.000Z (over 5 years ago)
- Last Synced: 2024-06-19T15:09:16.937Z (5 months ago)
- Topics: emulator, golang, risc-v
- Language: Go
- Size: 12.7 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# riscve
A RISC-V user-mode emulator for RV64I written in Go.
### Use
```bash
$ git clone [email protected]:eatonphil/riscve
$ make
$ cat example/first.s
main:
li a0 12
li a1 14
add a0 a1 a0
ret
$ ./dist/main -program ./example/first.s
(exit)26
```### Tests
```bash
$ go test .
```