mirror of https://github.com/YosysHQ/yosys.git
presentation progress
This commit is contained in:
parent
c13c5b9b7b
commit
821156b6cf
|
@ -168,14 +168,66 @@ See {\tt help select} for full documentation of this expressions.
|
||||||
|
|
||||||
\subsubsection{Incremental selection}
|
\subsubsection{Incremental selection}
|
||||||
|
|
||||||
\begin{frame}{\subsubsecname}
|
\begin{frame}[fragile]{\subsubsecname}
|
||||||
TBD
|
Sometime a selection can most easily described by a series of add/delete operations.
|
||||||
|
For the commands {\tt select -add} and {\tt select -del} add or remove objects
|
||||||
|
from the current selection instead of overwriting it.
|
||||||
|
|
||||||
|
\medskip
|
||||||
|
\begin{lstlisting}[xleftmargin=0.5cm, basicstyle=\ttfamily\fontsize{8pt}{10pt}\selectfont, language=ys]
|
||||||
|
select -none # start with an empty selection
|
||||||
|
select -add reg_* # select a bunch of objects
|
||||||
|
select -del reg_42 # but not this one
|
||||||
|
select -add state %ci # and add mor stuff
|
||||||
|
\end{lstlisting}
|
||||||
|
|
||||||
|
\bigskip
|
||||||
|
Within a select expression the token {\tt \%} can be used to push the previous selection
|
||||||
|
on the stack.
|
||||||
|
|
||||||
|
\medskip
|
||||||
|
\begin{lstlisting}[xleftmargin=0.5cm, basicstyle=\ttfamily\fontsize{8pt}{10pt}\selectfont, language=ys]
|
||||||
|
select t:$add t:$sub # select all $add and $sub cells
|
||||||
|
select % %ci % %d # select only the input wires to those cells
|
||||||
|
\end{lstlisting}
|
||||||
\end{frame}
|
\end{frame}
|
||||||
|
|
||||||
\subsubsection{Creating selection variables}
|
\subsubsection{Creating selection variables}
|
||||||
|
|
||||||
\begin{frame}{\subsubsecname}
|
\begin{frame}[fragile]{\subsubsecname}
|
||||||
TBD
|
Selections can be stored under a name with the {\tt select -set <name>}
|
||||||
|
command. The stored selections can be used in later select expressions
|
||||||
|
using the syntax {\tt @<name>}.
|
||||||
|
|
||||||
|
\medskip
|
||||||
|
\begin{lstlisting}[xleftmargin=0.5cm, basicstyle=\ttfamily\fontsize{8pt}{10pt}\selectfont, language=ys]
|
||||||
|
select -set cone_a state_a %ci*:-$dff # set @cone_a to the input cone of state_a
|
||||||
|
select -set cone_b state_b %ci*:-$dff # set @cone_b to the input cone of state_b
|
||||||
|
select @cone_a @cone_b %i # select the objects that are in both cones
|
||||||
|
\end{lstlisting}
|
||||||
|
|
||||||
|
\bigskip
|
||||||
|
Remember that select expressions can also be used directly as arguments to most
|
||||||
|
commands. Some commands also except a single select argument to some options.
|
||||||
|
In those cases selection variables must be used to capture more complex selections.
|
||||||
|
|
||||||
|
\medskip
|
||||||
|
\begin{lstlisting}[xleftmargin=0.5cm, basicstyle=\ttfamily\fontsize{8pt}{10pt}\selectfont, language=ys]
|
||||||
|
dump @cone_a @cone_b
|
||||||
|
|
||||||
|
select -set cone_ab @cone_a @cone_b %i
|
||||||
|
show -color red @cone_ab -color magenta @cone_a -color blue @cone_b
|
||||||
|
\end{lstlisting}
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
\begin{frame}[fragile]{\subsubsecname{} -- Example}
|
||||||
|
\begin{columns}
|
||||||
|
\column[t]{4cm}
|
||||||
|
\lstinputlisting[basicstyle=\ttfamily\fontsize{6pt}{7pt}\selectfont, language=verilog]{PRESENTATION_ExAdv/select_01.v}
|
||||||
|
\column[t]{7cm}
|
||||||
|
\lstinputlisting[basicstyle=\ttfamily\fontsize{8pt}{10pt}\selectfont, language=ys, frame=single]{PRESENTATION_ExAdv/select_01.ys}
|
||||||
|
\end{columns}
|
||||||
|
\hfil\includegraphics[width=\linewidth,trim=0 0cm 0 0cm]{PRESENTATION_ExAdv/select_01.pdf}
|
||||||
\end{frame}
|
\end{frame}
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
@ -225,3 +277,26 @@ TBD
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
|
\subsection{Summary}
|
||||||
|
|
||||||
|
\begin{frame}{\subsecname}
|
||||||
|
\begin{itemize}
|
||||||
|
\item TBD
|
||||||
|
\item TBD
|
||||||
|
\item TBD
|
||||||
|
\item TBD
|
||||||
|
\end{itemize}
|
||||||
|
|
||||||
|
\bigskip
|
||||||
|
\bigskip
|
||||||
|
\begin{center}
|
||||||
|
Questions?
|
||||||
|
\end{center}
|
||||||
|
|
||||||
|
\bigskip
|
||||||
|
\bigskip
|
||||||
|
\begin{center}
|
||||||
|
\url{http://www.clifford.at/yosys/}
|
||||||
|
\end{center}
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
*.dot
|
|
@ -0,0 +1,6 @@
|
||||||
|
|
||||||
|
all: select_01.pdf
|
||||||
|
|
||||||
|
select_01.pdf: select_01.v select_01.ys
|
||||||
|
../../yosys select_01.ys
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
module test(clk, s, a, y);
|
||||||
|
input clk, s;
|
||||||
|
input [15:0] a;
|
||||||
|
output [15:0] y;
|
||||||
|
reg [15:0] b, c;
|
||||||
|
|
||||||
|
always @(posedge clk) begin
|
||||||
|
b <= a;
|
||||||
|
c <= b;
|
||||||
|
end
|
||||||
|
|
||||||
|
wire [15:0] state_a = (a ^ b) + c;
|
||||||
|
wire [15:0] state_b = (a ^ b) - c;
|
||||||
|
assign y = !s ? state_a : state_b;
|
||||||
|
endmodule
|
|
@ -0,0 +1,10 @@
|
||||||
|
read_verilog select_01.v
|
||||||
|
hierarchy -check -top test
|
||||||
|
proc; opt
|
||||||
|
cd test
|
||||||
|
select -set cone_a state_a %ci*:-$dff
|
||||||
|
select -set cone_b state_b %ci*:-$dff
|
||||||
|
select -set cone_ab @cone_a @cone_b %i
|
||||||
|
show -prefix select_01 -format pdf -notitle \
|
||||||
|
-color red @cone_ab -color magenta @cone_a \
|
||||||
|
-color blue @cone_b
|
|
@ -61,3 +61,26 @@ TBD
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
|
\subsection{Summary}
|
||||||
|
|
||||||
|
\begin{frame}{\subsecname}
|
||||||
|
\begin{itemize}
|
||||||
|
\item TBD
|
||||||
|
\item TBD
|
||||||
|
\item TBD
|
||||||
|
\item TBD
|
||||||
|
\end{itemize}
|
||||||
|
|
||||||
|
\bigskip
|
||||||
|
\bigskip
|
||||||
|
\begin{center}
|
||||||
|
Questions?
|
||||||
|
\end{center}
|
||||||
|
|
||||||
|
\bigskip
|
||||||
|
\bigskip
|
||||||
|
\begin{center}
|
||||||
|
\url{http://www.clifford.at/yosys/}
|
||||||
|
\end{center}
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
|
|
@ -73,7 +73,7 @@ hierarchy -check -top top_module
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
\subsection{The ``proc'' commands}
|
\subsection{The {\tt proc} command}
|
||||||
|
|
||||||
\begin{frame}[fragile]{\subsecname}
|
\begin{frame}[fragile]{\subsecname}
|
||||||
The Verilog frontend converts {\tt always}-blocks to RTL netlists for the
|
The Verilog frontend converts {\tt always}-blocks to RTL netlists for the
|
||||||
|
@ -137,7 +137,7 @@ after design elaboration.
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
\subsection{The ``opt'' commands}
|
\subsection{The {\tt opt} command}
|
||||||
|
|
||||||
\begin{frame}[fragile]{\subsecname}
|
\begin{frame}[fragile]{\subsecname}
|
||||||
The {\tt opt} command implements a series of simple optimizations. It also
|
The {\tt opt} command implements a series of simple optimizations. It also
|
||||||
|
@ -211,7 +211,7 @@ proc; opt; memory; opt_const;; fsm;;
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
\subsection{When to use ``opt'' or ``clean''}
|
\subsection{When to use {\tt opt} or {\tt clean}}
|
||||||
|
|
||||||
\begin{frame}{\subsecname}
|
\begin{frame}{\subsecname}
|
||||||
Usually it does not hurt to call {\tt opt} after each regular command in the
|
Usually it does not hurt to call {\tt opt} after each regular command in the
|
||||||
|
@ -237,7 +237,7 @@ is a good idea in every synthesis script.
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
\subsection{The ``memory'' commands}
|
\subsection{The {\tt memory} command}
|
||||||
|
|
||||||
\begin{frame}[fragile]{\subsecname}
|
\begin{frame}[fragile]{\subsecname}
|
||||||
In the RTL netlist, memory reads and writes are individual cells. This makes
|
In the RTL netlist, memory reads and writes are individual cells. This makes
|
||||||
|
@ -291,7 +291,7 @@ memory -nomap; techmap -map my_memory_map.v; memory_map
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
\subsection{The ``fsm'' commands}
|
\subsection{The {\tt fsm} command}
|
||||||
|
|
||||||
\begin{frame}[fragile]{\subsecname{}}
|
\begin{frame}[fragile]{\subsecname{}}
|
||||||
The {\tt fsm} command identifies, extracts, optimizes (re-encodes), and
|
The {\tt fsm} command identifies, extracts, optimizes (re-encodes), and
|
||||||
|
@ -343,7 +343,7 @@ Finally the {\tt fsm\_map} command can be used to convert the (optimized) {\tt
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
\subsection{The ``techmap'' command}
|
\subsection{The {\tt techmap} command}
|
||||||
|
|
||||||
\begin{frame}[t]{\subsecname}
|
\begin{frame}[t]{\subsecname}
|
||||||
\vbox to 0cm{\includegraphics[width=12cm,trim=-18cm 0cm 0cm -34cm]{PRESENTATION_ExSyn/techmap_01.pdf}\vss}
|
\vbox to 0cm{\includegraphics[width=12cm,trim=-18cm 0cm 0cm -34cm]{PRESENTATION_ExSyn/techmap_01.pdf}\vss}
|
||||||
|
@ -384,7 +384,7 @@ to map all RTL cell types to a generic library of built-in logic gates and regis
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
\subsection{The ``abc'' command}
|
\subsection{The {\tt abc} command}
|
||||||
|
|
||||||
\begin{frame}{\subsecname}
|
\begin{frame}{\subsecname}
|
||||||
The {\tt abc} command provides an interface to ABC\footnote[frame]{\url{http://www.eecs.berkeley.edu/~alanmi/abc/}},
|
The {\tt abc} command provides an interface to ABC\footnote[frame]{\url{http://www.eecs.berkeley.edu/~alanmi/abc/}},
|
||||||
|
@ -490,3 +490,26 @@ the next part (Section 3, ``Advanced Synthesis'') of this presentation.}
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
|
\subsection{Summary}
|
||||||
|
|
||||||
|
\begin{frame}{\subsecname}
|
||||||
|
\begin{itemize}
|
||||||
|
\item Yosys provides commands for each phase of the synthesis.
|
||||||
|
\item Each command solves a (more or less) simple problem.
|
||||||
|
\item Complex command are often only front-ends to simple commands.
|
||||||
|
\item {\tt proc; opt; memory; opt; fsm; opt; techmap; opt; abc;;}
|
||||||
|
\end{itemize}
|
||||||
|
|
||||||
|
\bigskip
|
||||||
|
\bigskip
|
||||||
|
\begin{center}
|
||||||
|
Questions?
|
||||||
|
\end{center}
|
||||||
|
|
||||||
|
\bigskip
|
||||||
|
\bigskip
|
||||||
|
\begin{center}
|
||||||
|
\url{http://www.clifford.at/yosys/}
|
||||||
|
\end{center}
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
|
|
@ -466,7 +466,7 @@ Commands for high-level synthesis:
|
||||||
\bigskip
|
\bigskip
|
||||||
Commands for technology mapping:
|
Commands for technology mapping:
|
||||||
\begin{lstlisting}[xleftmargin=1cm, basicstyle=\ttfamily\fontsize{8pt}{10pt}\selectfont, language=ys]
|
\begin{lstlisting}[xleftmargin=1cm, basicstyle=\ttfamily\fontsize{8pt}{10pt}\selectfont, language=ys]
|
||||||
techmap # simple technology mapper
|
techmap # generic technology mapper
|
||||||
abc # use ABC for technology mapping
|
abc # use ABC for technology mapping
|
||||||
dfflibmap # technology mapping of flip-flops
|
dfflibmap # technology mapping of flip-flops
|
||||||
hilomap # technology mapping of constant hi- and/or lo-drivers
|
hilomap # technology mapping of constant hi- and/or lo-drivers
|
||||||
|
@ -492,6 +492,14 @@ Script-Commands for standard synthesis tasks:
|
||||||
synth_xilinx # synthesis for Xilinx FPGAs
|
synth_xilinx # synthesis for Xilinx FPGAs
|
||||||
\end{lstlisting}
|
\end{lstlisting}
|
||||||
|
|
||||||
|
\bigskip
|
||||||
|
Commands for model checking:
|
||||||
|
\begin{lstlisting}[xleftmargin=1cm, basicstyle=\ttfamily\fontsize{8pt}{10pt}\selectfont, language=ys]
|
||||||
|
sat # solve a SAT problem in the circuit
|
||||||
|
miter # automatically create a miter circuit
|
||||||
|
scc # detect strongly connected components (logic loops)
|
||||||
|
\end{lstlisting}
|
||||||
|
|
||||||
\bigskip
|
\bigskip
|
||||||
... and many many more.
|
... and many many more.
|
||||||
\end{frame}
|
\end{frame}
|
||||||
|
@ -713,6 +721,51 @@ but also formal verification, reverse engineering, ...}
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
|
\subsection{Other Open Source Tools}
|
||||||
|
|
||||||
|
\begin{frame}{\subsecname}
|
||||||
|
\begin{itemize}
|
||||||
|
\item Icarus Verilog \\
|
||||||
|
\smallskip\hskip1cm{}Verilog Simulation (and also a good syntax checker) \\
|
||||||
|
\smallskip\hskip1cm{}\url{http://iverilog.icarus.com/}
|
||||||
|
|
||||||
|
\bigskip
|
||||||
|
\item Qflow (incl. TimberWolf, qrouter and Magic) \\
|
||||||
|
\smallskip\hskip1cm{}A complete ASIC synthesis flow, using Yosys and ABC \\
|
||||||
|
\smallskip\hskip1cm{}\url{http://opencircuitdesign.com/qflow/}
|
||||||
|
|
||||||
|
\bigskip
|
||||||
|
\item ABC \\
|
||||||
|
\smallskip\hskip1cm{}Logic optimization, technology mapping, and more \\
|
||||||
|
\smallskip\hskip1cm{}\url{http://www.eecs.berkeley.edu/~alanmi/abc/}
|
||||||
|
\end{itemize}
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
|
\subsection{What the Yosys project needs from you}
|
||||||
|
|
||||||
|
\begin{frame}{\subsecname}
|
||||||
|
We need you as an active user:
|
||||||
|
\begin{itemize}
|
||||||
|
\item Use Yosys for on your own designs
|
||||||
|
\item .. even if you are not using it as final synthesis tool
|
||||||
|
\item Join the discussion on the Subreddit
|
||||||
|
\item Report bugs and send in feature requests
|
||||||
|
\end{itemize}
|
||||||
|
|
||||||
|
\bigskip
|
||||||
|
We need you as a developer:
|
||||||
|
\begin{itemize}
|
||||||
|
\item Use Yosys as environment for your research work
|
||||||
|
\item .. you might also want to look into ABC for logic-level stuff
|
||||||
|
\item Fork the project on github or create loadable plugins
|
||||||
|
\item We desperately need a VHDL frontend or a VHDL-to-Verilog converter
|
||||||
|
\end{itemize}
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
\subsection{Documentation, Downloads, Contatcs}
|
\subsection{Documentation, Downloads, Contatcs}
|
||||||
|
|
||||||
\begin{frame}{\subsecname}
|
\begin{frame}{\subsecname}
|
||||||
|
@ -736,3 +789,26 @@ but also formal verification, reverse engineering, ...}
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
|
\subsection{Summary}
|
||||||
|
|
||||||
|
\begin{frame}{\subsecname}
|
||||||
|
\begin{itemize}
|
||||||
|
\item Yosys is a powerful tool and framework for Verilog synthesis.
|
||||||
|
\item Is uses a command-based interface and can be controlled by scripts.
|
||||||
|
\item By combining existing commands and implementing new commands Yosys can
|
||||||
|
be used in a wide range of application far beyond simple synthesis.
|
||||||
|
\end{itemize}
|
||||||
|
|
||||||
|
\bigskip
|
||||||
|
\bigskip
|
||||||
|
\begin{center}
|
||||||
|
Questions?
|
||||||
|
\end{center}
|
||||||
|
|
||||||
|
\bigskip
|
||||||
|
\bigskip
|
||||||
|
\begin{center}
|
||||||
|
\url{http://www.clifford.at/yosys/}
|
||||||
|
\end{center}
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
|
|
@ -202,3 +202,26 @@ TBD
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
|
\subsection{Summary}
|
||||||
|
|
||||||
|
\begin{frame}{\subsecname}
|
||||||
|
\begin{itemize}
|
||||||
|
\item TBD
|
||||||
|
\item TBD
|
||||||
|
\item TBD
|
||||||
|
\item TBD
|
||||||
|
\end{itemize}
|
||||||
|
|
||||||
|
\bigskip
|
||||||
|
\bigskip
|
||||||
|
\begin{center}
|
||||||
|
Questions?
|
||||||
|
\end{center}
|
||||||
|
|
||||||
|
\bigskip
|
||||||
|
\bigskip
|
||||||
|
\begin{center}
|
||||||
|
\url{http://www.clifford.at/yosys/}
|
||||||
|
\end{center}
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
|
|
@ -28,6 +28,7 @@ if ! $fast_mode; then
|
||||||
md5sum *.aux *.snm *.nav *.toc > autoloop.old
|
md5sum *.aux *.snm *.nav *.toc > autoloop.old
|
||||||
make -C PRESENTATION_Intro
|
make -C PRESENTATION_Intro
|
||||||
make -C PRESENTATION_ExSyn
|
make -C PRESENTATION_ExSyn
|
||||||
|
make -C PRESENTATION_ExAdv
|
||||||
fi
|
fi
|
||||||
|
|
||||||
set -ex
|
set -ex
|
||||||
|
|
Loading…
Reference in New Issue