diff options
author | Rafael Catrou <RafaelCatrou@users.noreply.github.com> | 2016-05-28 08:49:11 +0200 |
---|---|---|
committer | tgingold <tgingold@users.noreply.github.com> | 2016-05-28 08:49:11 +0200 |
commit | af9d1d913a1fc586afd39b87bed6f4c78d171a9b (patch) | |
tree | eae64174f8fcf1616ac0bac565e16664f61fdba7 /doc/Starting_with_GHDL.rst | |
parent | 97c46f4c2f3efe2bba45edc50e98aa968155caec (diff) | |
download | ghdl-af9d1d913a1fc586afd39b87bed6f4c78d171a9b.tar.gz ghdl-af9d1d913a1fc586afd39b87bed6f4c78d171a9b.tar.bz2 ghdl-af9d1d913a1fc586afd39b87bed6f4c78d171a9b.zip |
Update Starting_with_GHDL.rst (#74)
* Update Starting_with_GHDL.rst
Add option "--workdir=work" for the command "$ ghdl -r --workdir=work dlx_test_behaviour"
This avoid the error message "ghdl: cannot find entity or configuration dlx_test_behaviour"
* Update Starting_with_GHDL.rst
Diffstat (limited to 'doc/Starting_with_GHDL.rst')
-rw-r--r-- | doc/Starting_with_GHDL.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/Starting_with_GHDL.rst b/doc/Starting_with_GHDL.rst index 23888ba59..d046e9aca 100644 --- a/doc/Starting_with_GHDL.rst +++ b/doc/Starting_with_GHDL.rst @@ -286,7 +286,7 @@ And you can run the test suite: .. code-block:: shell - $ ghdl -r dlx_test_behaviour + $ ghdl -r --workdir=work dlx_test_behaviour The test bench monitors the bus and displays each instruction executed. @@ -305,7 +305,7 @@ stop when an assertion above or equal a certain severity level occurs: .. code-block:: shell - $ ghdl -r dlx_test_behaviour --assert-level=note + $ ghdl -r --workdir=work dlx_test_behaviour --assert-level=note With this option, the program stops just after the previous message:: |