Skip to content

Commit

Permalink
Fixed markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
klasnordmark committed May 11, 2021
1 parent 13a01db commit 4246699
Showing 1 changed file with 24 additions and 12 deletions.
36 changes: 24 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,28 +50,40 @@ This core is supported by the
[FuseSoC](https://github.com/olofk/fusesoc) core package manager and
build system. Some quick FuseSoC instructions:

#install FuseSoC
Install FuseSoC
~~~
pip install fusesoc
~~~

#Create and enter a new workspace
Create and enter a new workspace
~~~
mkdir workspace && cd workspace

#Register aes as a library in the workspace
fusesoc library add chacha /path/to/aes
#...if repo is available locally or...
#...to get the upstream repo
~~~

Register chacha as a library in the workspace
~~~
fusesoc library add chacha /path/to/chacha
~~~
...if repo is available locally or...
...to get the upstream repo
~~~
fusesoc library add chacha https://github.com/secworks/chacha
~~~

#Run tb_chacha testbench
Run tb_chacha testbench
~~~
fusesoc run --target=tb_chacha secworks:crypto:chacha
~~~

#Run with modelsim instead of default tool (icarus)
Run with modelsim instead of default tool (icarus)
~~~
fusesoc run --target=tb_chacha --tool=modelsim secworks:crypto:chacha
~~~

#List all targets
List all targets
~~~
fusesoc core show secworks:crypto:aes


~~~

## Implementation results##

Expand Down

0 comments on commit 4246699

Please sign in to comment.