Update README.md

This commit is contained in:
BOISSON Brice 2023-11-25 19:48:46 +09:00 committed by GitHub
parent 0a032b36b0
commit 38d35c3a63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 8 deletions

View File

@ -10,14 +10,13 @@ This CPU will implement the RV32I ISA, with the following goals:
# How to Run the Test # How to Run the Test
Use the command :\ Use the command : ```make TARGET=<test_bench>-<sub_test>```
```make TARGET=<test_bench>-<sub_test>```
With `test_bench` among the listed test bench in the `tb` directory and `sub_test` a source code file in the `tb/test_source_code/tb_<test_bench>` directory. With `test_bench` among the listed test bench in the `tb` directory and `sub_test` a source code file in the `tb/test_source_code/tb_<test_bench>` directory. \
```make TARGET=risc_v_cpu-test``` Example: `make TARGET=risc_v_cpu-test`
You can remove the dash and `sub_test` argument to run only the non source code based test. You can remove the dash and `sub_test` argument to run only the non source code based test. \
```make TARGET=risc_v_cpu``` Example: `make TARGET=risc_v_cpu`
Or use `all` as a `sub_test` to run all test associated to a `test_bench`. Or use `all` as a `sub_test` to run all test associated to a `test_bench`. \
```make TARGET=risc_v_cpu-all``` Example: `make TARGET=risc_v_cpu-all`