\newpage{}
-# Instructions
+# Floating-Point Instructions
## `FMM` -- Floating Min/Max Mode
\newpage{}
+# Fixed-Point Instructions
+
+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
-```
- minu RT, RA, RB
- minu. RT, RA, RB
-```
+X-Form
```
|0 |6 |11 |16 |21 |31 |
| PO | RT | RA | RB | XO | Rc |
```
+* minu RT, RA, RB
+* minu. RT, RA, RB
+
+
```
if (RA) <u (RB) then
RT <- (RA)
RT <- (RB)
```
-Compute the unsigned minimum of RA and RB and store the result in RT.
-
Special Registers altered:
```
CR0 (if Rc=1)
```
-----------
+Compute the unsigned minimum of RA and RB and store the result in RT.
## Maximum Unsigned X-Form
RT <- (RB)
```
-Compute the unsigned maximum of RA and RB and store the result in RT.
-
Special Registers altered:
```
CR0 (if Rc=1)
```
-----------
+Compute the unsigned maximum of RA and RB and store the result in RT.
\newpage{}
RT <- (RB)
```
-Compute the signed minimum of RA and RB and store the result in RT.
-
Special Registers altered:
```
CR0 (if Rc=1)
```
-
-----------
+Compute the signed minimum of RA and RB and store the result in RT.
## Maximum X-Form