summaryrefslogtreecommitdiffstats
path: root/verilog.tex
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2021-09-12 20:16:09 +0100
committerYann Herklotz <git@yannherklotz.com>2021-09-12 20:16:09 +0100
commit6a2797ace635cddfea3a3835661a19eccc3f4ad2 (patch)
treef4c31e3a33a9b7252bf19cd524611236b2c73336 /verilog.tex
parent22bae2c90b1848b84119d40e1f51500723238dec (diff)
downloadoopsla21_fvhls-6a2797ace635cddfea3a3835661a19eccc3f4ad2.tar.gz
oopsla21_fvhls-6a2797ace635cddfea3a3835661a19eccc3f4ad2.zip
Add some tiny changes and upgrades to the proof section
Diffstat (limited to 'verilog.tex')
-rw-r--r--verilog.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/verilog.tex b/verilog.tex
index 1e0b9ff..11087b0 100644
--- a/verilog.tex
+++ b/verilog.tex
@@ -92,7 +92,7 @@ The \compcert{} computation model defines a set of states through which executio
\compcert{} executions pass through three main states:
\begin{description}
\item[\texttt{State} $\mathit{sf}$ $m$ $v$ $\Gamma_{r}$ $\Gamma_{a}$] The main state when executing a function, with stack frame $\mathit{sf}$, current module $m$, current state $v$ and variable states $\Gamma_{r}$ and $\Gamma_{a}$.
- \item[\texttt{Callstate} $\mathit{sf}$ ${r}$] The state that is reached when a function is called, with the current stack frame $\mathit{sf}$, current module $m$ and arguments $\vec{r}$.
+ \item[\texttt{Callstate} $\mathit{sf}$ $m$ $\vec{r}$] The state that is reached when a function is called, with the current stack frame $\mathit{sf}$, current module $m$ and arguments $\vec{r}$.
\item[\texttt{Returnstate} $\mathit{sf}$ $v$] The state that is reached when a function returns back to the caller, with stack frame $\mathit{sf}$ and return value $v$.
\end{description}