These are signed and unsigned, min or max. SVP64 Prefixing defines Saturation
semantics therefore Saturated variants of these instructions need not be proposed.
-## Integer Min/Max Mode
+## `MMM` -- Integer Min/Max Mode
+
+<a id="mmm-integer-min-max-mode"></a>
* bit 0: set if word variant else dword
* bit 1: set if signed else unsigned
* bit 2: set if max else min
-| `IMM` | Assembly Alias | Semantics |
+| `MMM` | Assembly Alias | Semantics |
|-------|------------------|----------------------------------------------|
| 000 | `minu RT,RA,RB` | `RT = (uint64_t)RA < (uint64_t)RB ? RA : RB` |
| 001 | `maxu RT,RA,RB` | `RT = (uint64_t)RA > (uint64_t)RB ? RA : RB` |