summaryrefslogtreecommitdiff
path: root/cheri/sail_latex/sailfnexecuteADDU.tex
diff options
context:
space:
mode:
Diffstat (limited to 'cheri/sail_latex/sailfnexecuteADDU.tex')
-rw-r--r--cheri/sail_latex/sailfnexecuteADDU.tex9
1 files changed, 0 insertions, 9 deletions
diff --git a/cheri/sail_latex/sailfnexecuteADDU.tex b/cheri/sail_latex/sailfnexecuteADDU.tex
deleted file mode 100644
index ec253078..00000000
--- a/cheri/sail_latex/sailfnexecuteADDU.tex
+++ /dev/null
@@ -1,9 +0,0 @@
-function clause #\hyperref[zexecute]{execute}# (#\hyperref[zADDU]{ADDU}#(rs, rt, rd)) =
- {
- opA = #\hyperref[zrGPR]{rGPR}#(rs);
- opB = #\hyperref[zrGPR]{rGPR}#(rt);
- if #\hyperref[zNotWordVal]{NotWordVal}#(opA) | #\hyperref[zNotWordVal]{NotWordVal}#(opB) then
- #\hyperref[zwGPR]{wGPR}#(rd) = undefined
- else
- #\hyperref[zwGPR]{wGPR}#(rd) = #\hyperref[zsignzyextend]{sign\_extend}#(opA[31..0] + opB[31..0])
- }