22Quickstart
33##########
44
5- This doc is meant to serve as a quick-guide to setup RISCOF and perform a sample compliance check
6- between `` spike `` (DUT in this case) and `` riscvOVPsim `` (Golden model in this case) .
5+ This doc is meant to serve as a quick-guide to setup RISCV-CONFIG and perform a \
6+ sample validation of target specifications .
77
88Install Python Dependencies
99===========================
1010
11- RISCOF requires `pip ` and `python ` (>=3.7) to be available on your system. If you have issues, instead of
11+ RISCV-CONFIG requires `pip ` and `python ` (>=3.7) to be available on your system. If you have issues
1212installing either of these directly on your system, we suggest using a virtual environment
1313like `pyenv ` to make things easy.
1414
@@ -42,15 +42,15 @@ Open a new terminal and create a virtual environment using the following
4242.. code-block :: bash
4343
4444 $ pyenv install 3.7.0
45- $ pyenv virtualenv 3.7.0 riscof_env
45+ $ pyenv virtualenv 3.7.0 riscv_config_env
4646
4747
4848 Now you can activate this virtual environment using the following command:
4949
5050.. code-block :: bash
5151
52- $ pyenv activate riscof_env
53- $ python == version
52+ $ pyenv activate riscv_config_env
53+ $ python -- version
5454
5555 Install via PIP [users]
5656=======================
@@ -62,33 +62,33 @@ performing the following steps.
6262
6363 $ pip install riscv_config
6464
65- To update an already installed version of RISCOF to the latest version:
65+ To update an already installed version of RISCV-CONFIG to the latest version:
6666
6767.. code-block :: bash
6868
6969 $ pip install -U riscv_config
7070
71- To checkout a specific version of riscof :
71+ To checkout a specific version of riscv_config :
7272
7373.. code-block :: bash
7474
75- $ pip install riscv_config== 1.x.x
75+ $ pip install riscv_config-- 1.x.x
7676
77- Once you have RISCV_CONFIG installed, executing ``riscv_config == help `` should print the following on the terminal:
77+ Once you have RISCV_CONFIG installed, executing ``riscv_config -- help `` should print the following on the terminal:
7878
7979.. code-block :: bash
8080
81- riscv-config [-h] == isa_spec YAML == platform_spec YAML [== verbose]
81+ riscv-config [-h] -- isa_spec YAML -- platform_spec YAML [-- verbose]
8282
8383 RISC-V Configuration Validator
8484
8585 optional arguments:
86- == isa_spec YAML, -ispec YAML
86+ -- isa_spec YAML, -ispec YAML
8787 The YAML which contains the ISA specs.
88- == platform_spec YAML, -pspec YAML
88+ -- platform_spec YAML, -pspec YAML
8989 The YAML which contains the Platfrorm specs.
90- == verbose debug | info | warning | error
91- -h, == help show this help message and exit
90+ -- verbose debug | info | warning | error
91+ -h, -- help show this help message and exit
9292
9393
9494
@@ -105,7 +105,7 @@ performing the following steps.
105105 $ cd riscv_config
106106 $ pip3 install -r requirements.txt
107107
108- Executing ``python -m riscv_config.main == help `` should display the same help message as above.
108+ Executing ``python -m riscv_config.main -- help `` should display the same help message as above.
109109
110110Usage Example
111111=============
0 commit comments