mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-05 17:14:08 +00:00
New structure headings
Also adds a note to readme for installing pdflatex if it's missing.
This commit is contained in:
parent
f37ce5c839
commit
4f1cd66829
|
@ -602,10 +602,12 @@ Simply visit https://yosys.readthedocs.io/en/latest/ instead.
|
||||||
In addition to those packages listed above for building Yosys from source, the
|
In addition to those packages listed above for building Yosys from source, the
|
||||||
following are used for building the website:
|
following are used for building the website:
|
||||||
|
|
||||||
$ sudo apt-get install pdf2svg faketime
|
$ sudo apt install pdf2svg faketime
|
||||||
|
|
||||||
PDFLaTeX, included with most LaTeX distributions, is also needed during the
|
PDFLaTeX, included with most LaTeX distributions, is also needed during the
|
||||||
build process for the website.
|
build process for the website. Or, run the following:
|
||||||
|
|
||||||
|
$ sudo apt install texlive-latex-base texlive-latex-extra
|
||||||
|
|
||||||
The Python package, Sphinx, is needed along with those listed in
|
The Python package, Sphinx, is needed along with those listed in
|
||||||
`docs/source/requirements.txt`:
|
`docs/source/requirements.txt`:
|
||||||
|
|
|
@ -43,6 +43,7 @@ bibtex_bibfiles = ['literature.bib']
|
||||||
exclude_patterns = [
|
exclude_patterns = [
|
||||||
"CHAPTER_Eval.rst",
|
"CHAPTER_Eval.rst",
|
||||||
"appendix/CHAPTER_StateOfTheArt.rst"
|
"appendix/CHAPTER_StateOfTheArt.rst"
|
||||||
|
"test_suites.rst"
|
||||||
]
|
]
|
||||||
|
|
||||||
latex_elements = {
|
latex_elements = {
|
||||||
|
|
14
docs/source/getting_started.rst
Normal file
14
docs/source/getting_started.rst
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
Getting started with Yosys
|
||||||
|
==========================
|
||||||
|
|
||||||
|
Installation
|
||||||
|
------------
|
||||||
|
|
||||||
|
Supported platforms
|
||||||
|
~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
Introduction to scripting in Yosys
|
||||||
|
----------------------------------
|
||||||
|
|
||||||
|
Example(s)
|
||||||
|
----------
|
|
@ -27,6 +27,15 @@
|
||||||
Yosys manual
|
Yosys manual
|
||||||
================================================================================
|
================================================================================
|
||||||
|
|
||||||
|
.. toctree::
|
||||||
|
:caption: New docs
|
||||||
|
|
||||||
|
introduction
|
||||||
|
getting_started
|
||||||
|
using_yosys
|
||||||
|
yosys_internals
|
||||||
|
.. test_suites
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
:maxdepth: 2
|
:maxdepth: 2
|
||||||
:caption: Manual
|
:caption: Manual
|
||||||
|
|
8
docs/source/introduction.rst
Normal file
8
docs/source/introduction.rst
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
What is Yosys
|
||||||
|
=============
|
||||||
|
|
||||||
|
What you can do with Yosys
|
||||||
|
--------------------------
|
||||||
|
|
||||||
|
The extended Yosys universe
|
||||||
|
---------------------------
|
8
docs/source/test_suites.rst
Normal file
8
docs/source/test_suites.rst
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
Test suites
|
||||||
|
===========
|
||||||
|
|
||||||
|
Build tests
|
||||||
|
-----------
|
||||||
|
|
||||||
|
Benchmarking
|
||||||
|
------------
|
25
docs/source/using_yosys.rst
Normal file
25
docs/source/using_yosys.rst
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
Using Yosys (advanced)
|
||||||
|
======================
|
||||||
|
|
||||||
|
More scripting
|
||||||
|
--------------
|
||||||
|
|
||||||
|
Selections
|
||||||
|
~~~~~~~~~~
|
||||||
|
|
||||||
|
Note on show/viz
|
||||||
|
|
||||||
|
Troubleshooting
|
||||||
|
~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
Memory map patterns
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
Flows, command types, and order
|
||||||
|
-------------------------------
|
||||||
|
|
||||||
|
Synthesis granularity
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
Formal verification
|
||||||
|
~~~~~~~~~~~~~~~~~~~
|
23
docs/source/yosys_internals.rst
Normal file
23
docs/source/yosys_internals.rst
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
Yosys internals
|
||||||
|
===============
|
||||||
|
|
||||||
|
Control and data flow
|
||||||
|
---------------------
|
||||||
|
|
||||||
|
Frontends
|
||||||
|
~~~~~~~~~
|
||||||
|
|
||||||
|
Backends
|
||||||
|
~~~~~~~~
|
||||||
|
|
||||||
|
Passes
|
||||||
|
~~~~~~
|
||||||
|
|
||||||
|
RTLIL
|
||||||
|
-----
|
||||||
|
|
||||||
|
Techmap
|
||||||
|
-------
|
||||||
|
|
||||||
|
Writing extensions
|
||||||
|
------------------
|
Loading…
Reference in a new issue