3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-06 14:13:23 +00:00

Docs: reworking scripting_intro

Now comes *after* example_synth, with references back to it.
Includes some minor adjustment to the `fifo.ys` script to better demonstrate the `select` command.
Still needs an updated section on `show`.

Also includes some other minor updates.
This commit is contained in:
Krystine Sherwin 2024-01-18 15:33:59 +13:00
parent 74d2c918cd
commit 14b7c581fa
No known key found for this signature in database
8 changed files with 139 additions and 120 deletions

View file

@ -16,12 +16,11 @@ language.
The AST Frontend then compiles the AST to Yosys's main internal data format, the
RTL Intermediate Language (RTLIL). A more detailed description of this format is
given in the next section.
.. TODO:: what next section
given in :doc:`/yosys_internals/formats/rtlil_rep`.
There is also a text representation of the RTLIL data structure that can be
parsed using the RTLIL Frontend.
parsed using the RTLIL Frontend which is described in
:doc:`/yosys_internals/formats/rtlil_text`.
The design data may then be transformed using a series of passes that all
operate on the RTLIL representation of the design.