Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 .
```