aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNao Pross <np@0hm.ch>2021-08-22 13:21:57 +0200
committerNao Pross <np@0hm.ch>2021-08-22 13:21:57 +0200
commit4b581a52b6f09bcb1c416d52a293e439dbb2b6ee (patch)
treee291465b255a20042eadacb998ebd081609602ff
parentHSR colors (diff)
downloadDigDes-4b581a52b6f09bcb1c416d52a293e439dbb2b6ee.tar.gz
DigDes-4b581a52b6f09bcb1c416d52a293e439dbb2b6ee.zip
Small corrections
-rw-r--r--build/DigDes.pdfbin150345 -> 150604 bytes
-rw-r--r--tex/vhdl.tex4
2 files changed, 2 insertions, 2 deletions
diff --git a/build/DigDes.pdf b/build/DigDes.pdf
index 13049f9..64450f8 100644
--- a/build/DigDes.pdf
+++ b/build/DigDes.pdf
Binary files differ
diff --git a/tex/vhdl.tex b/tex/vhdl.tex
index 64bc9db..7901b53 100644
--- a/tex/vhdl.tex
+++ b/tex/vhdl.tex
@@ -205,7 +205,7 @@ support the operations in table \ref{tab:arithmetic-type-ops}.
- & Subtraction \\
abs() & Absolute value \\
* & Multiplication \\
- / & Division & Typically no \\
+ / & Division & Typically not available\\
** & Power & Only powers of 2 \\
mod & Modulo & Only modulo of \(2^k\) \\
rem & Remainder & Only of division by \(2^k\) \\
@@ -546,7 +546,7 @@ statements, the following applies:
\item Neither selective (\vhdl{with}) nor conditional (\vhdl{when}) should be used.
They are replaced with new sequential constructs (\vhdl{if} and \vhdl{case}).
\item Signal assignments (with \vhdl{<=}) change their value
- \emph{only at the end of the process}.
+ \emph{only at the next} \vhdl{wait for} \emph{statement or at the end of the process}.
\item Variables on the other hand change as soon as they are assigned (with \vhdl{:=}).
\end{itemize}
And for good practice: