Add build instructions for Minerva

pull/3/head
Donald Sebastian Leung 2020-08-17 16:46:15 +08:00
parent 7005d22e4e
commit 3faa8ed1b8
2 changed files with 18 additions and 1 deletions

View File

@ -5,6 +5,8 @@ A port of [riscv-formal](https://github.com/SymbioticEDA/riscv-formal) to nMigen
## Dependencies
- [nMigen](https://github.com/m-labs/nmigen)
- [Yosys](https://github.com/YosysHQ/yosys)
- [SymbiYosys](https://github.com/YosysHQ/SymbiYosys)
## Breakdown
@ -17,7 +19,13 @@ A port of [riscv-formal](https://github.com/SymbioticEDA/riscv-formal) to nMigen
## Build
This framework is not ready to be used to verify RISC-V compliant cores at the time of writing. Instructions for running the framework against such a core will be added once the framework is ready for use.
### Minerva
`cd` to the root directory of this project and do:
```python
$ python -m rvfi.cores.minerva.verify
```
## Scope

View File

@ -0,0 +1,9 @@
import unittest
from .test.test_cache import *
from .test.test_units_divider import *
from .test.test_units_multiplier import *
test = L1CacheTestCase()
test.test_direct_mapped()
test.test_2_ways()
unittest.main()