aboutsummaryrefslogtreecommitdiff
path: root/src/f-st-ext.adoc
diff options
context:
space:
mode:
authorBill Traynor <wmat@riscv.org>2022-12-06 16:30:07 -0500
committerBill Traynor <wmat@riscv.org>2022-12-06 16:30:07 -0500
commit035669fb97770d238b38401ce023697d87695197 (patch)
tree6e4118d17e7db54ed2906819ffaa820cfb2457ab /src/f-st-ext.adoc
parent2eab21ff7a3679e273f785f9fd22a6b57689e59f (diff)
downloadriscv-isa-manual-035669fb97770d238b38401ce023697d87695197.zip
riscv-isa-manual-035669fb97770d238b38401ce023697d87695197.tar.gz
riscv-isa-manual-035669fb97770d238b38401ce023697d87695197.tar.bz2
Fixed latexmath spacing so it all matches.
Fixed latexmath spacing so it all matches.
Diffstat (limited to 'src/f-st-ext.adoc')
-rw-r--r--src/f-st-ext.adoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/f-st-ext.adoc b/src/f-st-ext.adoc
index fb7f44f..061dbf1 100644
--- a/src/f-st-ext.adoc
+++ b/src/f-st-ext.adoc
@@ -294,11 +294,11 @@ _rs3_, and writes the final result to _rd_. FMADD.S computes
_(rs1latexmath:[$\times$]rs2)latexmath:[$\+$]rs3_.
FMSUB.S multiplies the values in _rs1_ and _rs2_, subtracts the value in _rs3_, and writes the final result to _rd_. FMSUB.S computes
-_(rs1latexmath:[$\times$]rs2)-rs3_.
+_(rs1latexmath:[$\times$]rs2)latexmath:[$\-$]rs3_.
-FNMSUB.S multiplies the values in _rs1_ and _rs2_, negates the product, adds the value in _rs3_, and writes the final result to _rd_. FNMSUB.S computes _-(rs1latexmath:[$\times$]rs2)+rs3_.
+FNMSUB.S multiplies the values in _rs1_ and _rs2_, negates the product, adds the value in _rs3_, and writes the final result to _rd_. FNMSUB.S computes _-(rs1latexmath:[$\times$]rs2)latexmath:[$\+$]rs3_.
-FNMADD.S multiplies the values in _rs1_ and _rs2_, negates the product, subtracts the value in _rs3_, and writes the final result to _rd_. FNMADD.S computes _-(rs1latexmath:[$\times$]rs2)-rs3_.
+FNMADD.S multiplies the values in _rs1_ and _rs2_, negates the product, subtracts the value in _rs3_, and writes the final result to _rd_. FNMADD.S computes _-(rs1latexmath:[$\times$]rs2)latexmath:[$\-$]rs3_.
[NOTE]
====