From 35935cfc8c9c70c357d0e5a148ee88fbd0dffb2b Mon Sep 17 00:00:00 2001 From: Yehowshua Date: Sat, 2 May 2020 20:29:33 +0100 Subject: [PATCH] --- index.mdwn | 53 +++++++++++++++++++++++++++++++++++------------------ 1 file changed, 35 insertions(+), 18 deletions(-) diff --git a/index.mdwn b/index.mdwn index 131955ecf..196d7d88c 100644 --- a/index.mdwn +++ b/index.mdwn @@ -78,24 +78,41 @@ happy with it and agree to it. 2. The next thing you should do is read through the [bugs list](http://bugs.libre-riscv.org) and see if there are any bugs that pique your interest. -3. After that, go ahead and take a look at the - [git repositories](https://git.libre-riscv.org). - - pip3 install virtualenv requests - mkdir ~/.virtualenvs && cd ~/.virtualenvs - python3 -m venv libresoc - source ~/.virtualenvs/bin/activate - - cd ~; mkdir libresoc; cd libresoc - git clone https://git.libre-riscv.org/git/nmutil.git - git clone https://git.libre-riscv.org/git/ieee754fpu.git - git clone https://git.libre-riscv.org/git/soc.git - - cd nmutil; pip3 install -e .; cd .. - cd ieee754fpu; pip3 install -e .; cd .. - cd soc; pip3 install -e .; cd .. - - python3 soc/src/soc/decoder/power_decoder.py +3. After that, go ahead and take a look at the [git repositories](https://git.libre-riscv.org). + +
+

pip3 install virtualenv requests +

+

mkdir ~/.virtualenvs && cd ~/.virtualenvs +

+

python3 -m venv libresoc +

+

source ~/.virtualenvs/bin/activate +

+

+

+

cd ~; mkdir libresoc; cd libresoc +

+

git clone https://git.libre-riscv.org/git/nmutil.git +

+

git clone https://git.libre-riscv.org/git/ieee754fpu.git +

+

git clone https://git.libre-riscv.org/git/soc.git +

+

+

+

cd nmutil; pip3 install -e .; cd .. +

+

cd ieee754fpu; pip3 install -e .; cd .. +

+

cd soc; pip3 install -e .; cd .. +

+

+

+

#play with the decoder +

+

python3 soc/src/soc/decoder/power_decoder.py +

4. If you plan to do HDL work, you should familiarize yourself with our -- 2.30.2