for lmw and stmw, these are not supported but are there for spec
"completeness"
None
-<!-- MISSING stq -->
-
<!-- Section 3.3.5 Fixed-Point Load and Store with Byte Reversal Instructions page 60 -->
# Load Halfword Byte-Reverse Indexed
None
-<!-- MISSING sthbrx -->
-
# Load Word Byte-Reverse Indexed
X-Form
None
-<!-- MISSING stwbrx -->
-
<!-- Section 3.3.5.1 64-Bit Load and Store with Byte Reversal Instructions page 61 -->
None
-<!-- MISSING stdbrx -->
-
<!-- Section 3.3.6 Fixed-Point Load and Store Multiple Instructions page 62 -->
# Load Multiple Word
b <- (RA|0)
EA <- b + EXTS(D)
- r <- RT
+ r <- RT[0:63]
do while r <= 31
GPR(r) <- [0]*32 || MEM(EA, 4)
r <- r + 1
None
-<!-- MISSING stmw -->
-
-
<!-- Section 3.3.5.1 64-Bit Load and Store with Byte Reversal Instructions page 61 -->
<!-- Section 3.3.6 Fixed-Point Load and Store Multiple Instructions page 62 -->
-<!-- MISSING stbh -->
-<!-- MISSING stbhx -->
-<!-- MISSING stbhu -->
-<!-- MISSING stbhux -->
-<!-- MISSING stbw -->
-<!-- MISSING stbwx -->
-<!-- MISSING stbwu -->
-<!-- MISSING stbwux -->
-
<!-- Section 3.3.3 Fixed-Point Store Instructions pages 54 - 57 -->
# Store Byte
b <- (RA|0)
EA <- b + EXTS(D)
- r <- RS
+ r <- RS[0:63]
do while r <= 31
MEM(EA, 4) <- GPR(r)[32:63]
r <- r + 1