rename IMM integer min/max mode table -> MMM
authorJacob Lifshay <programmerjake@gmail.com>
Fri, 21 Apr 2023 00:37:48 +0000 (17:37 -0700)
committerJacob Lifshay <programmerjake@gmail.com>
Fri, 21 Apr 2023 00:37:48 +0000 (17:37 -0700)
openpower/sv/rfc/ls013.mdwn

index 2c7d14005daede7647e76dca214aed0b6fe12782..4b2975550d31bca2df3d58e8fe3af0bdcd2ef24f 100644 (file)
@@ -206,13 +206,15 @@ Assembly Aliases: see
 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` |