Docs: Fix invalid autorefs

This commit is contained in:
Krystine Sherwin 2024-05-27 16:33:00 +12:00
parent 6aceb6a297
commit e78841ba45
No known key found for this signature in database
3 changed files with 7 additions and 7 deletions

View File

@ -109,7 +109,7 @@ Installing all prerequisites for macOS 11 (with Homebrew):
Running the build system Running the build system
^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^
From the root `yosys` directory, call the following commands: From the root ``yosys`` directory, call the following commands:
.. code:: console .. code:: console
@ -117,7 +117,7 @@ From the root `yosys` directory, call the following commands:
sudo make install sudo make install
This will build and then install Yosys, making it available on the command line This will build and then install Yosys, making it available on the command line
as `yosys`. Note that this also downloads, builds, and installs `ABC`_ (using as ``yosys``. Note that this also downloads, builds, and installs `ABC`_ (using
:program:`yosys-abc` as the executable name). :program:`yosys-abc` as the executable name).
.. _ABC: https://github.com/berkeley-abc/abc .. _ABC: https://github.com/berkeley-abc/abc

View File

@ -29,8 +29,8 @@ provided implementation.
When no map file is provided, techmap uses a built-in map file that maps the When no map file is provided, techmap uses a built-in map file that maps the
Yosys RTL cell types to the internal gate library used by Yosys. The curious Yosys RTL cell types to the internal gate library used by Yosys. The curious
reader may find this map file as `techlibs/common/techmap.v` in the Yosys source reader may find this map file as :file:`techlibs/common/techmap.v` in the Yosys
tree. source tree.
Additional features have been added to techmap to allow for conditional mapping Additional features have been added to techmap to allow for conditional mapping
of cells (see :doc:`/cmd/techmap`). This can for example be useful if the target of cells (see :doc:`/cmd/techmap`). This can for example be useful if the target

View File

@ -11,9 +11,9 @@ Writing extensions
This chapter contains some bits and pieces of information about programming This chapter contains some bits and pieces of information about programming
yosys extensions. Don't be afraid to ask questions on the YosysHQ Slack. yosys extensions. Don't be afraid to ask questions on the YosysHQ Slack.
The `guidelines/` directory of the Yosys source code contains notes on various The :file:`guidelines/` directory of the Yosys source code contains notes on
aspects of Yosys development. In particular, the files GettingStarted and various aspects of Yosys development. In particular, the files GettingStarted
CodingStyle may be of interest. and CodingStyle may be of interest.
.. todo:: what's in guidelines/GettingStarted that's missing from the manual? .. todo:: what's in guidelines/GettingStarted that's missing from the manual?