You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Now the document header is complete and the wavedrom attribute is active.
5
5
6
6
@@ -12951,7 +12951,7 @@ Included in::
12951
12951
== fround.s
12952
12952
12953
12953
Synopsis::
12954
-
No synopsis available
12954
+
Rounds single-precision float to integer
12955
12955
12956
12956
Assembly::
12957
12957
fround.s fd, fs1, rm
@@ -12963,7 +12963,13 @@ Encoding::
12963
12963
....
12964
12964
12965
12965
Description::
12966
-
No description available.
12966
+
Rounds the single-precision floating-point number in floating-point register _fs1_ to an integer, according to the rounding mode specified in the instruction’s _rm_ field.
12967
+
12968
+
It then writes that integer, represented as a single-precision floating-point number, to floating-point register _fd_.
12969
+
12970
+
Zero and infinite inputs are copied to _fd_ unmodified.
12971
+
12972
+
Signaling NaN inputs cause the invalid operation exception flag to be set; no other exception flags are set. FROUND.S is encoded like FCVT.S.D, but with rs2=4.
0 commit comments