Add further assembly tests

This commit is contained in:
Florian Zaruba 2017-06-05 20:58:49 +02:00
parent 7538150cc9
commit ca70973ae6
2 changed files with 20 additions and 2 deletions

View file

@ -33,7 +33,7 @@ tbs = $(wildcard tb/*_tb.sv)
# RISCV-tests path
riscv-test-dir = riscv-tests/isa
riscv-tests = rv64ui-p-add rv64ui-p-addi rv64ui-p-slli rv64ui-p-addiw rv64ui-p-addw rv64ui-p-and rv64ui-p-auipc \
rv64ui-p-beq rv64ui-p-bge rv64ui-p-bgeu
rv64ui-p-beq rv64ui-p-bge rv64ui-p-bgeu rv64ui-p-andi rv64ui-p-blt rv64ui-p-bltu rv64ui-p-bne
riscv-test = rv64ui-p-add
# Search here for include files (e.g.: non-standalone components)

View file

@ -35,4 +35,22 @@ make dcache_arbiter
```
# Contributing
Check out the [contribution guide](CONTRIBUTING.md)
Check out the [contribution guide](CONTRIBUTING.md)
# Test Overview
| **Test Name** | **P/F/U** | **Test Name** | **P/F/U** |
|---------------|--------------------|---------------|-----------|
| add | :white_check_mark: | | |
| addi | :white_check_mark: | | |
| addiw | :white_check_mark: | | |
| addw | :white_check_mark: | | |
| and | :white_check_mark: | | |
| andi | :white_check_mark: | | |
| auipc | :white_check_mark: | | |
| beq | :white_check_mark: | | |
| bge | :white_check_mark: | | |
| bgeu | :white_check_mark: | | |
| blt | :white_check_mark: | | |
| bltu | :white_check_mark: | | |
| bne | :white_check_mark: | | |