mirror of https://github.com/YosysHQ/yosys.git
Docs: Minor tidying
This commit is contained in:
parent
b35b6706f8
commit
a9d25ab808
|
|
@ -13,3 +13,4 @@ $(DOTS): counter.v counter.ys mycells.lib
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
@rm -f *.dot
|
@rm -f *.dot
|
||||||
|
@rm -f synth.v
|
||||||
|
|
|
||||||
|
|
@ -18,8 +18,8 @@ tests.
|
||||||
|
|
||||||
.. warning::
|
.. warning::
|
||||||
|
|
||||||
There are limitations when using `Ninja` as generator, so we suggest using
|
There are limitations when using ``Ninja`` as generator, so we suggest using
|
||||||
`Unix Makefiles` to make running tests in parallel possible. However, it is
|
``Unix Makefiles`` to make running tests in parallel possible. However, it is
|
||||||
possible to use it directly by running:
|
possible to use it directly by running:
|
||||||
|
|
||||||
.. code:: console
|
.. code:: console
|
||||||
|
|
@ -27,8 +27,8 @@ tests.
|
||||||
cd tests
|
cd tests
|
||||||
make -j9
|
make -j9
|
||||||
|
|
||||||
Please note that in this case default build directory is `build` but can be
|
Please note that in this case default build directory is ``build`` but can be
|
||||||
overwritten by providing `BUILD_DIR` variable.
|
overwritten by providing :makevar:`BUILD_DIR` variable.
|
||||||
|
|
||||||
Vanilla tests
|
Vanilla tests
|
||||||
~~~~~~~~~~~~~
|
~~~~~~~~~~~~~
|
||||||
|
|
|
||||||
|
|
@ -63,6 +63,10 @@ struct EquivOptPass:public ScriptPass
|
||||||
log(" -nocheck\n");
|
log(" -nocheck\n");
|
||||||
log(" disable running check before and after the command under test.\n");
|
log(" disable running check before and after the command under test.\n");
|
||||||
log("\n");
|
log("\n");
|
||||||
|
log(" -ignore-unknown-cells\n");
|
||||||
|
log(" ignore all cells that can not be matched to a SAT model during\n");
|
||||||
|
log(" equiv_induct.\n");
|
||||||
|
log("\n");
|
||||||
log("The following commands are executed by this verification command:\n");
|
log("The following commands are executed by this verification command:\n");
|
||||||
help_script();
|
help_script();
|
||||||
log("\n");
|
log("\n");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue