----------
-## Floating Minimum/Maximum Single X-Form
+## Floating Minimum/Maximum Single
+
+A-Form
* fminmaxs FRT, FRA, FRB, FMM
* fminmaxs. FRT, FRA, FRB, FMM
These are signed and unsigned, min or max. SVP64 Prefixing defines Saturation
semantics therefore Saturated variants of these instructions need not be proposed.
-## Minimum Unsigned X-Form
+## Minimum Unsigned
X-Form
Compute the unsigned minimum of RA and RB and store the result in RT.
-## Maximum Unsigned X-Form
+## Maximum Unsigned
+
+X-Form
```
maxu RT, RA, RB
\newpage{}
-## Minimum X-Form
+## Minimum
+
+X-Form
```
min RT, RA, RB
```
Compute the signed minimum of RA and RB and store the result in RT.
-## Maximum X-Form
+## Maximum
+
+X-Form
```
max RT, RA, RB
Add the following entries to Book I 1.6.1.15 X-FORM:
```
- |0 |6 |11 |16 |21 |24 |31 |
- | PO | FRT | FRA | FRB | FMM[0:2] | XO | FMM[3] |
+ |0 |6 |11 |16 |21 |26 |31 |
+ | PO | FRT | FRA | FRB | FMM[0:3] / | XO | Rc |
```
Add a new field to Book I 1.6.2 Word Instruction Fields:
```
- FMM (21:23,31)
+ FMM (21:24)
Field used to specify minimum/maximum mode for fminmax[s].
- Formats: X
+ Formats: A
```
----------