3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-09-01 01:04:57 +00:00

Improve documentation of scripts and Verific bindings

Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
Clifford Wolf 2018-06-23 18:25:52 +02:00
parent 983f066445
commit 93e7e1d1e2
3 changed files with 46 additions and 12 deletions

View file

@ -95,10 +95,10 @@ combinations of some host implementations A and B and device implementations X a
live: aiger suprove
[script]
hostA: read_verilog hostA.v
hostB: read_verilog hostB.v
deviceX: read_verilog deviceX.v
deviceY: read_verilog deviceY.v
hostA: read -sv hostA.v
hostB: read -sv hostB.v
deviceX: read -sv deviceX.v
deviceY: read -sv deviceY.v
...
The ``[tasks]`` section must appear in the ``.sby`` file before the first
@ -286,10 +286,11 @@ design file ``mytest.sv`` with the top-module ``mytest``:
.. code-block:: text
[script]
read_verilog -sv mytest.sv
read -sv mytest.sv
prep -top mytest
Or using the Verific SystemVerilog parser:
Or explicitly using the Verific SystemVerilog parser (default for ``read -sv``
when Yosys is built with Verific support):
.. code-block:: text
@ -298,6 +299,15 @@ Or using the Verific SystemVerilog parser:
verific -import mytest
prep -top mytest
Or explicitly using the native Yosys Verilog parser (default for ``read -sv``
when Yosys is not built with Verific support):
.. code-block:: text
[script]
read_verilog -sv mytest.sv
prep -top mytest
Run ``yosys`` in a terminal window and enter ``help`` on the Yosys prompt
for a command list. Run ``help <command>`` for a detailed description of the
command, for example ``help prep``.