mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-26 18:45:34 +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:
parent
dbc38d72cf
commit
b6e61c16b1
44 changed files with 131 additions and 237 deletions
44
docs/source/_images/primer/basics_flow.tex
Normal file
44
docs/source/_images/primer/basics_flow.tex
Normal file
|
@ -0,0 +1,44 @@
|
|||
\documentclass[12pt,tikz]{standalone}
|
||||
\pdfinfoomitdate 1
|
||||
\pdfsuppressptexinfo 1
|
||||
\pdftrailerid{}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage{amsmath}
|
||||
\usepackage{pgfplots}
|
||||
\usepackage{tikz}
|
||||
\pagestyle{empty}
|
||||
|
||||
\begin{document}
|
||||
\begin{tikzpicture}
|
||||
\tikzstyle{manual} = [draw, fill=green!10, rectangle, minimum height=2em, minimum width=8em, node distance=10em]
|
||||
\tikzstyle{auto} = [draw, fill=orange!10, rectangle, minimum height=2em, minimum width=8em, node distance=10em]
|
||||
|
||||
\node[manual] (sys) {\begin{minipage}{8em}
|
||||
\center
|
||||
System Level \\
|
||||
Model
|
||||
\end{minipage}};
|
||||
\node[manual] (beh) [right of=sys] {\begin{minipage}{8em}
|
||||
\center
|
||||
Behavioral \\
|
||||
Model
|
||||
\end{minipage}};
|
||||
\node[auto] (rtl) [right of=beh] {\begin{minipage}{8em}
|
||||
\center
|
||||
RTL \\
|
||||
Model
|
||||
\end{minipage}};
|
||||
\node[auto] (gates) [right of=rtl] {\begin{minipage}{8em}
|
||||
\center
|
||||
Gate-Level \\
|
||||
Model
|
||||
\end{minipage}};
|
||||
|
||||
\draw[-latex] (beh) edge[double, bend left] node[above] {synthesis} (rtl);
|
||||
\draw[-latex] (rtl) edge[double, bend left] node[above] {synthesis} (gates);
|
||||
|
||||
\draw[latex-latex] (sys) edge[bend right] node[below] {verify} (beh);
|
||||
\draw[latex-latex] (beh) edge[bend right] node[below] {verify} (rtl);
|
||||
\draw[latex-latex] (rtl) edge[bend right] node[below] {verify} (gates);
|
||||
\end{tikzpicture}
|
||||
\end{document}
|
Loading…
Add table
Add a link
Reference in a new issue