aboutsummaryrefslogtreecommitdiff
path: root/src/f-st-ext.adoc
diff options
context:
space:
mode:
authorBill Traynor <wmat@riscv.org>2022-12-06 15:58:23 -0500
committerBill Traynor <wmat@riscv.org>2022-12-06 15:58:23 -0500
commitea837046dc70a626bee5d3ba17809d1ea45ef5eb (patch)
treef88d17d86a13fa43cd0e2f93842d0f995ddf66f2 /src/f-st-ext.adoc
parent1996603181b00aa52c602da272a625212c338637 (diff)
downloadriscv-isa-manual-ea837046dc70a626bee5d3ba17809d1ea45ef5eb.zip
riscv-isa-manual-ea837046dc70a626bee5d3ba17809d1ea45ef5eb.tar.gz
riscv-isa-manual-ea837046dc70a626bee5d3ba17809d1ea45ef5eb.tar.bz2
Wrapped whole expression in italics
Wrapped whole latexmath statement in italics
Diffstat (limited to 'src/f-st-ext.adoc')
-rw-r--r--src/f-st-ext.adoc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/f-st-ext.adoc b/src/f-st-ext.adoc
index 9a07550..03765ce 100644
--- a/src/f-st-ext.adoc
+++ b/src/f-st-ext.adoc
@@ -293,14 +293,14 @@ latexmath:[C = \alpha + \beta Y^{\gamma} + \epsilon]
FMADD.S multiplies the values in _rs1_ and _rs2_, adds the value in
_rs3_, and writes the final result to _rd_. FMADD.S computes
-_(rs1_latexmath:[$\times$]_rs2)_+_rs3_.
+_(rs1latexmath:[$\times$]rs2)+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
-_(rs1_latexmath:[$\times$]_rs2)_-_rs3_.
+_(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 _-(rs1_latexmath:[$\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)+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 _-(rs1_latexmath:[$\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)-rs3_.
[NOTE]
====