diff --git a/Makefile b/Makefile index 2f98869de..2fc4e16b8 100644 --- a/Makefile +++ b/Makefile @@ -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) diff --git a/README.md b/README.md index 50949c75e..f970e1f6e 100644 --- a/README.md +++ b/README.md @@ -35,4 +35,22 @@ make dcache_arbiter ``` # Contributing -Check out the [contribution guide](CONTRIBUTING.md) \ No newline at end of file +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: | | |