mirror of https://github.com/YosysHQ/yosys.git
Added first presentation slides
This commit is contained in:
parent
fa103e55ad
commit
fb4c3dff33
2
Makefile
2
Makefile
|
@ -143,7 +143,7 @@ install: $(TARGETS) $(EXTRA_TARGETS)
|
||||||
$(INSTALL_SUDO) cp -r share/. $(DESTDIR)/share/yosys/.
|
$(INSTALL_SUDO) cp -r share/. $(DESTDIR)/share/yosys/.
|
||||||
|
|
||||||
manual:
|
manual:
|
||||||
cd manual && bash make.sh
|
cd manual && bash manual.sh
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf share
|
rm -rf share
|
||||||
|
|
|
@ -6,4 +6,6 @@
|
||||||
*.out
|
*.out
|
||||||
*.pdf
|
*.pdf
|
||||||
*.toc
|
*.toc
|
||||||
|
*.snm
|
||||||
|
*.nav
|
||||||
*.ok
|
*.ok
|
||||||
|
|
|
@ -0,0 +1,39 @@
|
||||||
|
|
||||||
|
\section{Introduction}
|
||||||
|
|
||||||
|
\begin{frame}
|
||||||
|
\sectionpage
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
\subsection{Representations of (digital) Circuits}
|
||||||
|
|
||||||
|
\begin{frame}{\subsecname}
|
||||||
|
\begin{itemize}
|
||||||
|
\item Graphical
|
||||||
|
\begin{itemize}
|
||||||
|
\item \alert<1>{Schematic Diagram}
|
||||||
|
\item \alert<2>{Physical Layout}
|
||||||
|
\end{itemize}
|
||||||
|
\bigskip
|
||||||
|
\item Non-graphical
|
||||||
|
\begin{itemize}
|
||||||
|
\item \alert<3>{Netlists}
|
||||||
|
\item \alert<4>{Hardware Description Language}
|
||||||
|
\end{itemize}
|
||||||
|
\end{itemize}
|
||||||
|
\bigskip
|
||||||
|
\begin{block}{Definition}
|
||||||
|
\only<1>{Schematic Diagrams are ...}
|
||||||
|
\only<2>{Physical Layouts are ...}
|
||||||
|
\only<3>{Netlists are ...}
|
||||||
|
\only<4>{Hardware Description Languages are ...}
|
||||||
|
\end{block}
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
|
||||||
|
\subsection{Digital Circuit Synthesis}
|
||||||
|
|
||||||
|
\begin{frame}{\subsecname}
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,47 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
fast_mode=false
|
||||||
|
|
||||||
|
set -- $(getopt fu "$@")
|
||||||
|
while [ $# -gt 0 ]; do
|
||||||
|
case "$1" in
|
||||||
|
-f)
|
||||||
|
fast_mode=true
|
||||||
|
;;
|
||||||
|
--)
|
||||||
|
shift
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
-*)
|
||||||
|
echo "$0: error - unrecognized option $1" 1>&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
break
|
||||||
|
esac
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
|
||||||
|
PDFTEX_OPT="-shell-escape -halt-on-error"
|
||||||
|
|
||||||
|
if ! $fast_mode; then
|
||||||
|
md5sum *.aux *.snm *.nav *.toc > autoloop.old
|
||||||
|
fi
|
||||||
|
|
||||||
|
set -ex
|
||||||
|
|
||||||
|
pdflatex $PDFTEX_OPT presentation.tex
|
||||||
|
|
||||||
|
if ! $fast_mode; then
|
||||||
|
while
|
||||||
|
md5sum *.aux *.snm *.nav *.toc > autoloop.new
|
||||||
|
! cmp autoloop.old autoloop.new
|
||||||
|
do
|
||||||
|
cp autoloop.new autoloop.old
|
||||||
|
pdflatex $PDFTEX_OPT presentation.tex
|
||||||
|
done
|
||||||
|
|
||||||
|
rm -f autoloop.old
|
||||||
|
rm -f autoloop.new
|
||||||
|
fi
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
\documentclass{beamer}
|
||||||
|
|
||||||
|
\title{Yosys Open SYnthesis Suite}
|
||||||
|
\author{Clifford Wolf}
|
||||||
|
|
||||||
|
\beamertemplatenavigationsymbolsempty
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
|
||||||
|
\begin{frame}
|
||||||
|
\titlepage
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
\include{PRESENTATION_Intro}
|
||||||
|
|
||||||
|
\end{document}
|
Loading…
Reference in New Issue