3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 01:24:10 +00:00

docs: restructuring images directory

see also previous commit
Also updates `scripting_intro.rst` to use literal includes, and uses individual image outputs to avoid the intermediary `.tex` file to join them all.
This commit is contained in:
Krystine Sherwin 2023-11-14 18:54:16 +13:00
parent dbc38d72cf
commit b6e61c16b1
No known key found for this signature in database
44 changed files with 131 additions and 237 deletions

5
docs/.gitignore vendored
View file

@ -1,12 +1,9 @@
/build/ /build/
/source/cmd /source/cmd
/source/temp /source/temp
/source/_images/*.log
/source/_images/*.aux
/source/_images/*.pdf
/source/_images/*.svg
/source/_images/**/*.log /source/_images/**/*.log
/source/_images/**/*.aux /source/_images/**/*.aux
/source/_images/**/*.pdf /source/_images/**/*.pdf
/source/_images/**/*.svg /source/_images/**/*.svg
/source/_images/**/*.dot /source/_images/**/*.dot
/source/_images/code_examples

View file

@ -1,18 +0,0 @@
\documentclass[12pt,tikz]{standalone}
\pdfinfoomitdate 1
\pdfsuppressptexinfo 1
\pdftrailerid{}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\pagestyle{empty}
\begin{document}
\begin{tikzpicture}
\node[inner sep=0pt] at (0,0)
{\includegraphics[width=\linewidth]{example_00.pdf}};
\node[inner sep=0pt] at (0,-3.8)
{\includegraphics[width=\linewidth]{example_01.pdf}};
\node[inner sep=0pt] at (0,-7)
{\includegraphics[width=\linewidth]{example_02.pdf}};
\end{tikzpicture}
\end{document}

View file

@ -1,19 +0,0 @@
\documentclass[12pt,tikz]{standalone}
\pdfinfoomitdate 1
\pdfsuppressptexinfo 1
\pdftrailerid{}
\usepackage[utf8]{inputenc}
\pagestyle{empty}
\begin{document}
\begin{tikzpicture}
\node[inner sep=0pt] at (0,0)
{\hfill \includegraphics[width=4cm,trim=0 1cm 0 1cm]{sumprod_02.pdf}};
\node[inner sep=0pt] at (0,-2.8)
{\includegraphics[width=\linewidth,trim=0 0cm 0 1cm]{sumprod_03.pdf}};
\node[inner sep=0pt] at (0,-6.2)
{\includegraphics[width=\linewidth,trim=0 0cm 0 1cm]{sumprod_04.pdf}};
\node[inner sep=0pt] at (0,-9.2)
{\includegraphics[width=\linewidth,trim=0 1cm 0 1cm]{sumprod_05.pdf}};
\end{tikzpicture}
\end{document}

View file

@ -1,15 +0,0 @@
\documentclass[12pt,tikz]{standalone}
\pdfinfoomitdate 1
\pdfsuppressptexinfo 1
\pdftrailerid{}
\usepackage[utf8]{inputenc}
\pagestyle{empty}
\begin{document}
\begin{tikzpicture}
\node[inner sep=0pt] at (0,0)
{\includegraphics[height=\linewidth]{cmos_00.pdf}};
\node[inner sep=0pt] at (2,-8)
{\includegraphics[width=\linewidth]{cmos_01.pdf}};
\end{tikzpicture}
\end{document}

View file

@ -1,27 +0,0 @@
\documentclass[12pt,tikz]{standalone}
\pdfinfoomitdate 1
\pdfsuppressptexinfo 1
\pdftrailerid{}
\usepackage[utf8]{inputenc}
\pagestyle{empty}
\begin{document}
\begin{tikzpicture}
\node[inner sep=0pt] at (0,0)
{\includegraphics[width=\linewidth,trim=0 1.3cm 0 0cm]{submod_00.pdf}};
\node at (0, -2.5)
{\tt memdemo};
\node[inner sep=0pt] at (0,-5)
{\includegraphics[width=\linewidth,trim=0 1.3cm 0 0cm]{submod_01.pdf}};
\node at (0, -7.5)
{\tt scramble};
\node[inner sep=0pt] at (0, -11)
{\includegraphics[width=\linewidth,trim=0 1.3cm 0 0cm]{submod_02.pdf}};
\node at (0, -14.8)
{\tt outstage};
\node[inner sep=0pt] at (0,-16.6)
{\includegraphics[width=\linewidth,trim=0 1.3cm 0 0cm]{submod_03.pdf}};
\node at (0, -19)
{\tt selstage};
\end{tikzpicture}
\end{document}

View file

@ -1,62 +1,46 @@
all: resources dots tex svg tidy all: examples all_tex tidy
RES_LIST:= PRESENTATION_Intro/ PRESENTATION_ExSyn/ PRESENTATION_ExAdv/ PRESENTATION_ExOth/ # set a fake time in pdf generation to prevent unnecessary differences in output
RES_DIRS:= $(addprefix ../../resources/,$(RES_LIST)) FAKETIME := TZ='Z' faketime -f '2022-01-01 00:00:00 x0,001'
.PHONY: resources
resources: $(RES_DIRS) # find all code example makefiles
.PHONY: examples
CODE_EXAMPLES := ../code_examples/*/Makefile
examples: $(CODE_EXAMPLES)
# target to convert specified dot file(s)
.PHONY: convert
TARG_DOT ?=
convert: $(TARG_DOT:.dot=.pdf) $(TARG_DOT:.dot=.svg)
# use empty FORCE target because .PHONY ignores % expansion, using find allows
# us to generate everything in one pass, since we don't know all of the possible
# outputs until the sub-makes run
FORCE: FORCE:
../../resources/%: FORCE ../%/Makefile: FORCE
@$(MAKE) -C $@ @make -C $(@D) dots
@mkdir -p res/$* @mkdir -p $*
@cp --update -t res/$* $@*.dot @find $(@D) -name *.dot -exec cp -u {} -t $* \;
@find $* -name *.dot -printf "%p " | xargs -i make --no-print-directory convert TARG_DOT="{}"
TEX_SOURCE:= $(wildcard *.tex) # find and build all tex files
DOT_LOC:= ../APPNOTE_011_Design_Investigation .PHONY: all_tex
DOT_SOURCE:= $(wildcard $(DOT_LOC)/*.dot) TEX_FILES := $(wildcard **/*.tex)
all_tex: $(TEX_FILES:.tex=.pdf) $(TEX_FILES:.tex=.svg)
RES_DOTS:= $(wildcard res/*/*.dot) %.pdf: %.dot
RES_DIRS:= $(sort $(dir $(RES_DOTS))) $(FAKETIME) dot -Tpdf -o $@ $<
RES_PDF:= $(RES_DOTS:%.dot=%.pdf)
TEX_SOURCE+= 011/example_out.tex
011/example_out.pdf: 011/example_00.pdf 011/example_01.pdf 011/example_02.pdf
TEX_SOURCE+= 011/select_prod.tex
011/select_prod.pdf: 011/sumprod_02.pdf 011/sumprod_03.pdf 011/sumprod_04.pdf 011/sumprod_05.pdf
TEX_SOURCE+= 011/splitnets_libfile.tex
011/splitnets_libfile.pdf: 011/cmos_00.pdf 011/cmos_01.pdf
TEX_SOURCE+= 011/submod_dots.tex
011/submod_dots.pdf: 011/submod_00.pdf 011/submod_01.pdf 011/submod_02.pdf 011/submod_03.pdf
TEX_PDF:= $(patsubst %.tex,%.pdf,$(TEX_SOURCE))
DOT_PDF:= $(addprefix 011/,$(notdir $(patsubst %.dot,%.pdf,$(DOT_SOURCE))))
SVG_OUTPUT:= $(patsubst %.pdf,%.svg,$(TEX_PDF) $(DOT_PDF) $(RES_PDF))
dots: $(DOT_PDF) $(RES_PDF)
tex: $(TEX_PDF)
svg: $(SVG_OUTPUT)
011/%.pdf: $(DOT_LOC)/%.dot
TZ='Z' faketime -f '2022-01-01 00:00:00 x0,001' dot -Tpdf -o $@ $<
res/%.pdf: res/%.dot
TZ='Z' faketime -f '2022-01-01 00:00:00 x0,001' dot -Tpdf -o $@ $<
011/%.pdf: 011/%.tex
cd 011 && TZ='Z' faketime -f '2022-01-01 00:00:00 x0,001' pdflatex $(<F) --interaction=nonstopmode
%.pdf: %.tex %.pdf: %.tex
pdflatex $< --interaction=nonstopmode cd $(@D) && $(FAKETIME) pdflatex $(<F) --interaction=nonstopmode
%.svg: %.pdf %.svg: %.pdf
pdf2svg $< $@ pdf2svg $< $@
.PHONY: clean tidy .PHONY: clean tidy
tidy: tidy:
rm -f *.log rm -f **/*.log **/*.aux
rm -f *.aux
rm -f 011/*.log 011/*.aux
clean: tidy clean: tidy
rm -f *.pdf rm -rf code_examples
rm -f *.svg rm -f **/*.pdf **/*.svg
rm -f 011/*.pdf 011/*.svg
rm -rf $(RES_DIRS)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

View file

@ -23,7 +23,7 @@ circuit to a functionally equivalent low-level representation of a circuit.
:numref:`Figure %s <fig:Basics_abstractions>` lists the different levels of :numref:`Figure %s <fig:Basics_abstractions>` lists the different levels of
abstraction and how they relate to different kinds of synthesis. abstraction and how they relate to different kinds of synthesis.
.. figure:: /_images/basics_abstractions.* .. figure:: /_images/primer/basics_abstractions.*
:class: width-helper :class: width-helper
:name: fig:Basics_abstractions :name: fig:Basics_abstractions
@ -498,7 +498,7 @@ Then the synthesizable description is transformed to lower-level representations
using a series of tools and the results are again verified using simulation. using a series of tools and the results are again verified using simulation.
This process is illustrated in :numref:`Fig. %s <fig:Basics_flow>`. This process is illustrated in :numref:`Fig. %s <fig:Basics_flow>`.
.. figure:: /_images/basics_flow.* .. figure:: /_images/primer/basics_flow.*
:class: width-helper :class: width-helper
:name: fig:Basics_flow :name: fig:Basics_flow
@ -597,7 +597,7 @@ Let's consider the following BNF (in Bison syntax):
assign_stmt: TOK_ASSIGN TOK_IDENTIFIER TOK_EQ expr TOK_SEMICOLON; assign_stmt: TOK_ASSIGN TOK_IDENTIFIER TOK_EQ expr TOK_SEMICOLON;
expr: TOK_IDENTIFIER | TOK_NUMBER | expr TOK_PLUS expr; expr: TOK_IDENTIFIER | TOK_NUMBER | expr TOK_PLUS expr;
.. figure:: /_images/basics_parsetree.* .. figure:: /_images/primer/basics_parsetree.*
:class: width-helper :class: width-helper
:name: fig:Basics_parsetree :name: fig:Basics_parsetree
@ -626,7 +626,7 @@ Usually the AST is then converted into yet another representation that is more
suitable for further processing. In compilers this is often an assembler-like suitable for further processing. In compilers this is often an assembler-like
three-address-code intermediate representation. :cite:p:`Dragonbook` three-address-code intermediate representation. :cite:p:`Dragonbook`
.. figure:: /_images/basics_ast.* .. figure:: /_images/primer/basics_ast.*
:class: width-helper :class: width-helper
:name: fig:Basics_ast :name: fig:Basics_ast

View file

@ -1,13 +1,10 @@
PROGRAM_PREFIX := PROGRAM_PREFIX :=
YOSYS ?= ../../../$(PROGRAM_PREFIX)yosys YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
all: counter_00.dot counter_01.dot counter_02.dot counter_03.dot DOTS = counter_00.dot counter_01.dot counter_02.dot counter_03.dot
counter_00.dot: counter.v counter.ys mycells.lib dots: $(DOTS)
$(DOTS): counter.v counter.ys mycells.lib
$(YOSYS) counter_outputs.ys $(YOSYS) counter_outputs.ys
counter_01.dot: counter_00.dot
counter_02.dot: counter_00.dot
counter_03.dot: counter_00.dot

View file

@ -1,12 +1,14 @@
PROGRAM_PREFIX := PROGRAM_PREFIX :=
YOSYS ?= ../../../$(PROGRAM_PREFIX)yosys YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
all: macc_simple_xmap.pdf macc_xilinx_xmap.pdf DOTS = macc_simple_xmap.dot macc_xilinx_xmap.dot
macc_simple_xmap.pdf: macc_simple_*.v macc_simple_test.ys dots: $(DOTS)
macc_simple_xmap.dot: macc_simple_*.v macc_simple_test.ys
$(YOSYS) macc_simple_test.ys $(YOSYS) macc_simple_test.ys
macc_xilinx_xmap.pdf: macc_xilinx_*.v macc_xilinx_test.ys macc_xilinx_xmap.dot: macc_xilinx_*.v macc_xilinx_test.ys
$(YOSYS) macc_xilinx_test.ys $(YOSYS) macc_xilinx_test.ys

View file

@ -3,21 +3,21 @@ read_verilog -lib -icells macc_xilinx_unwrap_map.v
read_verilog -lib -icells macc_xilinx_xmap.v read_verilog -lib -icells macc_xilinx_xmap.v
hierarchy -check ;; hierarchy -check ;;
show -prefix macc_xilinx_test1a -format pdf -notitle test1 show -prefix macc_xilinx_test1a -format dot -notitle test1
show -prefix macc_xilinx_test2a -format pdf -notitle test2 show -prefix macc_xilinx_test2a -format dot -notitle test2
techmap -map macc_xilinx_swap_map.v;; techmap -map macc_xilinx_swap_map.v;;
show -prefix macc_xilinx_test1b -format pdf -notitle test1 show -prefix macc_xilinx_test1b -format dot -notitle test1
show -prefix macc_xilinx_test2b -format pdf -notitle test2 show -prefix macc_xilinx_test2b -format dot -notitle test2
techmap -map macc_xilinx_wrap_map.v techmap -map macc_xilinx_wrap_map.v
connwrappers -unsigned $__mul_wrapper Y Y_WIDTH \ connwrappers -unsigned $__mul_wrapper Y Y_WIDTH \
-unsigned $__add_wrapper Y Y_WIDTH;; -unsigned $__add_wrapper Y Y_WIDTH;;
show -prefix macc_xilinx_test1c -format pdf -notitle test1 show -prefix macc_xilinx_test1c -format dot -notitle test1
show -prefix macc_xilinx_test2c -format pdf -notitle test2 show -prefix macc_xilinx_test2c -format dot -notitle test2
design -push design -push
read_verilog macc_xilinx_xmap.v read_verilog macc_xilinx_xmap.v
@ -30,14 +30,14 @@ extract -constports -ignore_parameters \
-map %__macc_xilinx_xmap \ -map %__macc_xilinx_xmap \
-swap $__add_wrapper A,B ;; -swap $__add_wrapper A,B ;;
show -prefix macc_xilinx_test1d -format pdf -notitle test1 show -prefix macc_xilinx_test1d -format dot -notitle test1
show -prefix macc_xilinx_test2d -format pdf -notitle test2 show -prefix macc_xilinx_test2d -format dot -notitle test2
techmap -map macc_xilinx_unwrap_map.v;; techmap -map macc_xilinx_unwrap_map.v;;
show -prefix macc_xilinx_test1e -format pdf -notitle test1 show -prefix macc_xilinx_test1e -format dot -notitle test1
show -prefix macc_xilinx_test2e -format pdf -notitle test2 show -prefix macc_xilinx_test2e -format dot -notitle test2
design -load __macc_xilinx_xmap design -load __macc_xilinx_xmap
show -prefix macc_xilinx_xmap -format pdf -notitle show -prefix macc_xilinx_xmap -format dot -notitle

View file

@ -1,8 +1,8 @@
PROGRAM_PREFIX := PROGRAM_PREFIX :=
YOSYS ?= ../../../$(PROGRAM_PREFIX)yosys YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
all: scrambler_p01.dot scrambler_p02.dot dots: scrambler_p01.dot scrambler_p02.dot
scrambler_p01.dot scrambler_p02.dot: scrambler.ys scrambler.v scrambler_p01.dot scrambler_p02.dot: scrambler.ys scrambler.v
$(YOSYS) scrambler.ys $(YOSYS) scrambler.ys

View file

@ -11,22 +11,22 @@ MEMDEMO_DOTS := $(addsuffix .dot,$(MEMDEMO))
SUBMOD = submod_00 submod_01 submod_02 submod_03 SUBMOD = submod_00 submod_01 submod_02 submod_03
SUBMOD_DOTS := $(addsuffix .dot,$(SUBMOD)) SUBMOD_DOTS := $(addsuffix .dot,$(SUBMOD))
all: select.dot $(SUMPROD_DOTS) $(MEMDEMO_DOTS) dots: select.dot $(SUMPROD_DOTS) $(MEMDEMO_DOTS) $(SUBMOD_DOTS)
select.dot: select.v select.ys select.dot: select.v select.ys
$(YOSYS) select.ys $(YOSYS) select.ys
$(SUMPROD_DOTS): sumprod.v $(SUMPROD_DOTS): sumprod.v
$(YOSYS) -p 'opt; cd sumprod; select a:sumstuff; show -format dot -prefix sumprod_00' sumprod.v $(YOSYS) -p 'read_verilog sumprod.v; opt; cd sumprod; select a:sumstuff; show -format dot -prefix sumprod_00'
$(YOSYS) -p 'opt; cd sumprod; select a:sumstuff %x; show -format dot -prefix sumprod_01' sumprod.v $(YOSYS) -p 'read_verilog sumprod.v; opt; cd sumprod; select a:sumstuff %x; show -format dot -prefix sumprod_01'
$(YOSYS) -p 'opt; cd sumprod; select prod; show -format dot -prefix sumprod_02' sumprod.v $(YOSYS) -p 'read_verilog sumprod.v; opt; cd sumprod; select prod; show -format dot -prefix sumprod_02'
$(YOSYS) -p 'opt; cd sumprod; select prod %ci; show -format dot -prefix sumprod_03' sumprod.v $(YOSYS) -p 'read_verilog sumprod.v; opt; cd sumprod; select prod %ci; show -format dot -prefix sumprod_03'
$(YOSYS) -p 'opt; cd sumprod; select prod %ci2; show -format dot -prefix sumprod_04' sumprod.v $(YOSYS) -p 'read_verilog sumprod.v; opt; cd sumprod; select prod %ci2; show -format dot -prefix sumprod_04'
$(YOSYS) -p 'opt; cd sumprod; select prod %ci3; show -format dot -prefix sumprod_05' sumprod.v $(YOSYS) -p 'read_verilog sumprod.v; opt; cd sumprod; select prod %ci3; show -format dot -prefix sumprod_05'
$(MEMDEMO_DOTS): memdemo.v $(MEMDEMO_DOTS): memdemo.v
$(YOSYS) -p 'proc; opt; memory; opt; cd memdemo; show -format dot -prefix memdemo_00' memdemo.v $(YOSYS) -p 'read_verilog memdemo.v; proc; opt; memory; opt; cd memdemo; show -format dot -prefix memdemo_00'
$(YOSYS) -p 'proc; opt; memory; opt; cd memdemo; show -format dot -prefix memdemo_01 y %ci2:+$dff[Q,D] %ci*:-$mux[S]:-$dff' memdemo.v $(YOSYS) -p 'read_verilog memdemo.v; proc; opt; memory; opt; cd memdemo; show -format dot -prefix memdemo_01 y %ci2:+$dff[Q,D] %ci*:-$mux[S]:-$dff'
$(SUBMOD_DOTS): submod.ys memdemo.v $(SUBMOD_DOTS): submod.ys memdemo.v
$(YOSYS) submod.ys $(YOSYS) submod.ys

View file

@ -2,16 +2,16 @@ PROGRAM_PREFIX :=
YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
EXAMPLE = example_00 example_01 example_02 example_03 EXAMPLE = example_00 example_01 example_02
EXAMPLE_DOTS := $(addsuffix .dot,$(EXAMPLE)) EXAMPLE_DOTS := $(addsuffix .dot,$(EXAMPLE))
CMOS = cmos_00 cmos_01 CMOS = cmos_00 cmos_01
CMOS_DOTS := $(addsuffix .dot,$(CMOS)) CMOS_DOTS := $(addsuffix .dot,$(CMOS))
all: splice.dot $(EXAMPLE_DOTS) $(CMOS_DOTS) dots: splice.dot $(EXAMPLE_DOTS) $(CMOS_DOTS)
splice.dot: splice.v splice.dot: splice.v
$(YOSYS) -p 'proc; opt; show -format dot -prefix splice' splice.v $(YOSYS) -p 'read_verilog splice.v; proc; opt; show -format dot -prefix splice'
$(EXAMPLE_DOTS): example.v example.ys $(EXAMPLE_DOTS): example.v example.ys
$(YOSYS) example.ys $(YOSYS) example.ys

View file

@ -4,8 +4,3 @@ proc
show -format dot -prefix example_01 show -format dot -prefix example_01
opt opt
show -format dot -prefix example_02 show -format dot -prefix example_02
cd example
select t:$add
show -format dot -prefix example_03

View file

@ -1,3 +1,5 @@
dots:
test: stubnets.so test: stubnets.so
yosys -ql test1.log -m ./stubnets.so test.v -p "stubnets" yosys -ql test1.log -m ./stubnets.so test.v -p "stubnets"
yosys -ql test2.log -m ./stubnets.so test.v -p "opt; stubnets" yosys -ql test2.log -m ./stubnets.so test.v -p "opt; stubnets"

View file

@ -7,18 +7,15 @@ TARGETS += abc_01
PROGRAM_PREFIX := PROGRAM_PREFIX :=
YOSYS ?= ../../../$(PROGRAM_PREFIX)yosys YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
all: $(addsuffix .pdf,$(TARGETS)) DOTS = $(addsuffix .dot,$(TARGETS))
define make_pdf_template dots: $(DOTS)
$(1).pdf: $(1)*.v $(1)*.ys
$(YOSYS) -p 'script $(1).ys; show -notitle -prefix $(1) -format pdf'
endef
$(foreach trg,$(TARGETS),$(eval $(call make_pdf_template,$(trg)))) %.dot: %.v %.ys
$(YOSYS) -p 'script $*.ys; show -notitle -prefix $* -format dot'
clean: clean:
rm -f $(addsuffix .pdf,$(TARGETS)) rm -f $(DOTS)
rm -f $(addsuffix .dot,$(TARGETS))

View file

@ -1,8 +1,8 @@
PROGRAM_PREFIX := PROGRAM_PREFIX :=
YOSYS ?= ../../../$(PROGRAM_PREFIX)yosys YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
all: red_or3x1.dot sym_mul.dot mymul.dot mulshift.dot addshift.dot dots: red_or3x1.dot sym_mul.dot mymul.dot mulshift.dot addshift.dot
red_or3x1.dot: red_or3x1_* red_or3x1.dot: red_or3x1_*
$(YOSYS) red_or3x1_test.ys $(YOSYS) red_or3x1_test.ys
@ -18,4 +18,3 @@ mulshift.dot: mulshift_*
addshift.dot: addshift_* addshift.dot: addshift_*
$(YOSYS) addshift_test.ys $(YOSYS) addshift_test.ys

View file

@ -128,31 +128,31 @@ different stages of the yosys tool flow.
.. _xdot: https://github.com/jrfonseca/xdot.py .. _xdot: https://github.com/jrfonseca/xdot.py
.. code-block:: console .. literalinclude:: /code_examples/show/example.ys
:caption: Yosys script with :cmd:ref:`show` commands and example design :language: yoscrypt
:name: show_src :caption: docs/source/code_examples/show/example.ys
$ cat example.ys .. literalinclude:: /code_examples/show/example.v
read_verilog example.v :language: Verilog
show -pause :caption: docs/source/code_examples/show/example.v
proc
show -pause
opt
show -pause
$ cat example.v .. role:: yoscrypt(code)
module example(input clk, a, b, c, :language: yoscrypt
output reg [1:0] y);
always @(posedge clk)
if (c)
y <= c ? a + b : 2'd0;
endmodule
.. figure:: /_images/011/example_out.* .. figure:: /_images/code_examples/show/example_00.*
:class: width-helper :class: width-helper
:name: show_out
Output of the three :cmd:ref:`show` commands from :numref:`show_src` ``example_00`` - shown after :yoscrypt:`read_verilog example.v`
.. figure:: /_images/code_examples/show/example_01.*
:class: width-helper
``example_01`` - shown after :yoscrypt:`proc`
.. figure:: /_images/code_examples/show/example_02.*
:class: width-helper
``example_02`` - shown after :yoscrypt:`opt`
A circuit diagram is generated for the design in its current state. Various A circuit diagram is generated for the design in its current state. Various
options can be used to change the appearance of the circuit diagram, set the options can be used to change the appearance of the circuit diagram, set the

View file

@ -37,7 +37,7 @@ domain of behavioural, rtl and logic synthesis. Yosys is designed to be
extensible and therefore is a good basis for implementing custom synthesis tools extensible and therefore is a good basis for implementing custom synthesis tools
for specialised tasks. for specialised tasks.
.. figure:: /_images/levels_of_abstraction.* .. figure:: /_images/primer/levels_of_abstraction.*
:class: width-helper :class: width-helper
:name: fig:Levels_of_abstraction :name: fig:Levels_of_abstraction

View file

@ -45,7 +45,7 @@ This script, when executed, will show the design after each of the three
synthesis commands. We will now look at each of these diagrams and explain what synthesis commands. We will now look at each of these diagrams and explain what
is shown. is shown.
.. figure:: /_images/011/example_00.* .. figure:: /_images/code_examples/show/example_00.*
:class: width-helper :class: width-helper
Output of the first :cmd:ref:`show` command in :numref:`example_ys` Output of the first :cmd:ref:`show` command in :numref:`example_ys`
@ -77,7 +77,7 @@ original ``always``-block in the second line. Note how the multiplexer from the
The :cmd:ref:`proc` command transforms the process from the first diagram into a The :cmd:ref:`proc` command transforms the process from the first diagram into a
multiplexer and a d-type flip-flop, which brings us to the second diagram: multiplexer and a d-type flip-flop, which brings us to the second diagram:
.. figure:: /_images/011/example_01.* .. figure:: /_images/code_examples/show/example_01.*
:class: width-helper :class: width-helper
Output of the second :cmd:ref:`show` command in :numref:`example_ys` Output of the second :cmd:ref:`show` command in :numref:`example_ys`
@ -99,7 +99,7 @@ call :cmd:ref:`clean` before calling :cmd:ref:`show`.
In this script we directly call :cmd:ref:`opt` as the next step, which finally In this script we directly call :cmd:ref:`opt` as the next step, which finally
leads us to the third diagram: leads us to the third diagram:
.. figure:: /_images/011/example_02.* .. figure:: /_images/code_examples/show/example_02.*
:class: width-helper :class: width-helper
:name: example_out :name: example_out
@ -126,7 +126,7 @@ native objects. While this provides great advantages when analyzing circuits
that operate on wide integers, it also introduces some additional complexity that operate on wide integers, it also introduces some additional complexity
when the individual bits of of a signal vector are accessed. when the individual bits of of a signal vector are accessed.
.. figure:: /_images/011/splice.* .. figure:: /_images/code_examples/show/splice.*
:class: width-helper :class: width-helper
:name: splice_dia :name: splice_dia
@ -154,7 +154,7 @@ Gate level netlists
:numref:`first_pitfall` shows two common pitfalls when working with designs :numref:`first_pitfall` shows two common pitfalls when working with designs
mapped to a cell library: mapped to a cell library:
.. figure:: /_images/011/cmos_00.* .. figure:: /_images/code_examples/show/cmos_00.*
:class: width-helper :class: width-helper
:name: first_pitfall :name: first_pitfall
@ -167,7 +167,7 @@ all ports are drawn on the left side the cells are awkwardly arranged in a large
column. Secondly the two-bit vector ``y`` requires breakout-boxes for its column. Secondly the two-bit vector ``y`` requires breakout-boxes for its
individual bits, resulting in an unnecessary complex diagram. individual bits, resulting in an unnecessary complex diagram.
.. figure:: /_images/011/cmos_01.* .. figure:: /_images/code_examples/show/cmos_01.*
:class: width-helper :class: width-helper
:name: second_pitfall :name: second_pitfall
@ -350,10 +350,10 @@ reorganizing a module in Yosys and checking the resulting circuit.
:caption: ``docs/source/code_examples/scrambler/scrambler.ys`` :caption: ``docs/source/code_examples/scrambler/scrambler.ys``
:end-before: cd .. :end-before: cd ..
.. figure:: /_images/res/PRESENTATION_ExOth/scrambler_p01.* .. figure:: /_images/code_examples/scrambler/scrambler_p01.*
:class: width-helper :class: width-helper
.. figure:: /_images/res/PRESENTATION_ExOth/scrambler_p02.* .. figure:: /_images/code_examples/scrambler/scrambler_p02.*
:class: width-helper :class: width-helper
Analyzing the resulting circuit with :doc:`/cmd/eval`: Analyzing the resulting circuit with :doc:`/cmd/eval`:
@ -430,7 +430,7 @@ if the circuit under investigation is encapsulated in a separate module.
Recall the ``memdemo`` design from :ref:`advanced_logic_cones`: Recall the ``memdemo`` design from :ref:`advanced_logic_cones`:
.. figure:: /_images/011/memdemo_00.* .. figure:: /_images/code_examples/selections/memdemo_00.*
:class: width-helper :class: width-helper
``memdemo`` ``memdemo``
@ -451,18 +451,18 @@ The ``-name`` option is used to specify the name of the new module and also the
name of the new cell in the current module. The resulting circuits are shown name of the new cell in the current module. The resulting circuits are shown
below. below.
.. figure:: /_images/011/submod_02.* .. figure:: /_images/code_examples/selections/submod_02.*
:class: width-helper :class: width-helper
``outstage`` ``outstage``
.. figure:: /_images/011/submod_03.* .. figure:: /_images/code_examples/selections/submod_03.*
:class: width-helper :class: width-helper
:name: selstage :name: selstage
``selstage`` ``selstage``
.. figure:: /_images/011/submod_01.* .. figure:: /_images/code_examples/selections/submod_01.*
:class: width-helper :class: width-helper
``scramble`` ``scramble``

View file

@ -154,7 +154,7 @@ to mark portions of code for analysis.)
Selecting ``a:sumstuff`` in this module will yield the following circuit Selecting ``a:sumstuff`` in this module will yield the following circuit
diagram: diagram:
.. figure:: /_images/011/sumprod_00.* .. figure:: /_images/code_examples/selections/sumprod_00.*
:class: width-helper :class: width-helper
:name: sumprod_00 :name: sumprod_00
@ -171,7 +171,7 @@ be achieved using the ``%x`` action, that broadens the selection, i.e. for each
selected wire it selects all cells connected to the wire and vice versa. So selected wire it selects all cells connected to the wire and vice versa. So
:yoscrypt:`show a:sumstuff %x` yields the diagram shown in :numref:`sumprod_01`: :yoscrypt:`show a:sumstuff %x` yields the diagram shown in :numref:`sumprod_01`:
.. figure:: /_images/011/sumprod_01.* .. figure:: /_images/code_examples/selections/sumprod_01.*
:class: width-helper :class: width-helper
:name: sumprod_01 :name: sumprod_01
@ -192,22 +192,22 @@ input ports.
The following sequence of diagrams demonstrates this step-wise expansion: The following sequence of diagrams demonstrates this step-wise expansion:
.. figure:: /_images/011/sumprod_02.* .. figure:: /_images/code_examples/selections/sumprod_02.*
:class: width-helper :class: width-helper
Output of ``show prod`` on :numref:`sumprod` Output of ``show prod`` on :numref:`sumprod`
.. figure:: /_images/011/sumprod_03.* .. figure:: /_images/code_examples/selections/sumprod_03.*
:class: width-helper :class: width-helper
Output of ``show prod %ci`` on :numref:`sumprod` Output of ``show prod %ci`` on :numref:`sumprod`
.. figure:: /_images/011/sumprod_04.* .. figure:: /_images/code_examples/selections/sumprod_04.*
:class: width-helper :class: width-helper
Output of ``show prod %ci %ci`` on :numref:`sumprod` Output of ``show prod %ci %ci`` on :numref:`sumprod`
.. figure:: /_images/011/sumprod_05.* .. figure:: /_images/code_examples/selections/sumprod_05.*
:class: width-helper :class: width-helper
Output of ``show prod %ci %ci %ci`` on :numref:`sumprod` Output of ``show prod %ci %ci %ci`` on :numref:`sumprod`
@ -242,7 +242,7 @@ We synthesize the circuit using ``proc; opt; memory; opt`` and change to the
``memdemo`` module with ``cd memdemo``. If we type :cmd:ref:`show` now we see ``memdemo`` module with ``cd memdemo``. If we type :cmd:ref:`show` now we see
the diagram shown in :numref:`memdemo_00`. the diagram shown in :numref:`memdemo_00`.
.. figure:: /_images/011/memdemo_00.* .. figure:: /_images/code_examples/selections/memdemo_00.*
:class: width-helper :class: width-helper
:name: memdemo_00 :name: memdemo_00
@ -287,7 +287,7 @@ Or we could decide to tell the ``%ci`` action to not follow the ``CLK`` input:
show y %ci2:-[CLK] show y %ci2:-[CLK]
.. figure:: /_images/011/memdemo_01.* .. figure:: /_images/code_examples/selections/memdemo_01.*
:class: width-helper :class: width-helper
:name: memdemo_01 :name: memdemo_01
@ -379,7 +379,7 @@ Example:
:caption: ``docs/source/code_examples/selections/select.ys`` :caption: ``docs/source/code_examples/selections/select.ys``
:name: select_ys :name: select_ys
.. figure:: /_images/res/PRESENTATION_ExAdv/select.* .. figure:: /_images/code_examples/selections/select.*
:class: width-helper :class: width-helper
Circuit diagram produced by :numref:`select_ys` Circuit diagram produced by :numref:`select_ys`

View file

@ -58,7 +58,7 @@ provides.
This document will focus on the much simpler version of RTLIL left after the This document will focus on the much simpler version of RTLIL left after the
commands :cmd:ref:`proc` and :cmd:ref:`memory` (or ``memory -nomap``): commands :cmd:ref:`proc` and :cmd:ref:`memory` (or ``memory -nomap``):
.. figure:: /_images/simplified_rtlil.* .. figure:: /_images/internals/simplified_rtlil.*
:class: width-helper :class: width-helper
:name: fig:Simplified_RTLIL :name: fig:Simplified_RTLIL

View file

@ -9,7 +9,7 @@ a predetermined order, each consuming the data generated by the last subsystem
and generating the data for the next subsystem (see :numref:`Fig. %s and generating the data for the next subsystem (see :numref:`Fig. %s
<fig:approach_flow>`). <fig:approach_flow>`).
.. figure:: /_images/approach_flow.* .. figure:: /_images/internals/approach_flow.*
:class: width-helper :class: width-helper
:name: fig:approach_flow :name: fig:approach_flow

View file

@ -40,7 +40,7 @@ possible it is key that (1) all passes operate on the same data structure
(RTLIL) and (2) that this data structure is powerful enough to represent the (RTLIL) and (2) that this data structure is powerful enough to represent the
design in different stages of the synthesis. design in different stages of the synthesis.
.. figure:: /_images/overview_flow.* .. figure:: /_images/internals/overview_flow.*
:class: width-helper :class: width-helper
:name: fig:Overview_flow :name: fig:Overview_flow

View file

@ -9,7 +9,7 @@ abstract syntax tree (AST) representation of the input. This AST representation
is then passed to the AST frontend that converts it to RTLIL data, as is then passed to the AST frontend that converts it to RTLIL data, as
illustrated in :numref:`Fig. %s <fig:Verilog_flow>`. illustrated in :numref:`Fig. %s <fig:Verilog_flow>`.
.. figure:: /_images/verilog_flow.* .. figure:: /_images/internals/verilog_flow.*
:class: width-helper :class: width-helper
:name: fig:Verilog_flow :name: fig:Verilog_flow

View file

@ -23,7 +23,7 @@ pass is reading an auxiliary Verilog file such as a cell library, it might
create an additional ``RTLIL::Design`` object and call the Verilog frontend with create an additional ``RTLIL::Design`` object and call the Verilog frontend with
this other object to parse the cell library. this other object to parse the cell library.
.. figure:: /_images/overview_rtlil.* .. figure:: /_images/internals/overview_rtlil.*
:class: width-helper :class: width-helper
:name: fig:Overview_RTLIL :name: fig:Overview_RTLIL