bug #1183: attempt first ddffirst mapreduce mode
[openpower-isa.git] / openpower / isa / pifpstore.mdwn
index ffbc8f7be62a84b2379d06c6f6ab4db3fc7aa416..29df22f9c6b714e4fc4eec858785a99af754eb4b 100644 (file)
@@ -6,12 +6,12 @@
 
 D-Form
 
-* stfsu FRS,D(RA)
+* stfsup FRS,D(RA)
 
 Pseudo-code:
 
     EA <- (RA) + EXTS(D)
-    MEM(EA, 4)<- SINGLE( (FRS) )
+    MEM(RA, 4)<- SINGLE( (FRS) )
     RA <- EA
 
 Description:
@@ -20,7 +20,7 @@ Description:
 
     The contents of register FRS are converted to single
     format (see page 142) and stored into the word in stor-
-    age addressed by EA.
+    age addressed by RA.
 
     EA is placed into register RA.
 
@@ -34,12 +34,12 @@ Special Registers Altered:
 
 X-Form
 
-* stfsux FRS,RA,RB
+* stfsupx FRS,RA,RB
 
 Pseudo-code:
 
     EA <- (RA) + (RB)
-    MEM(EA, 4)<- SINGLE( (FRS) )
+    MEM(RA, 4)<- SINGLE( (FRS) )
     RA <- EA
 
 Description:
@@ -48,7 +48,7 @@ Description:
 
     The contents of register FRS are converted to single
     format (see page 142) and stored into the word in stor-
-    age addressed by EA.
+    age addressed by RA.
 
     EA is placed into register RA.
 
@@ -62,12 +62,12 @@ Special Registers Altered:
 
 D-Form
 
-* stfdu FRS,D(RA)
+* stfdup FRS,D(RA)
 
 Pseudo-code:
 
     EA <- (RA) + EXTS(D)
-    MEM(EA, 8)<- (FRS) 
+    MEM(RA, 8)<- (FRS)
     RA <- EA
 
 Description:
@@ -75,7 +75,7 @@ Description:
     Let the effective address (EA) be the sum (RA)+D.
 
     The contents of register FRS are stored into the dou-
-    bleword in storage addressed by EA.
+    bleword in storage addressed by RA.
 
     EA is placed into register RA.
 
@@ -89,12 +89,12 @@ Special Registers Altered:
 
 X-Form
 
-* stfdux FRS,RA,RB
+* stfdupx FRS,RA,RB
 
 Pseudo-code:
 
     EA <- (RA) + (RB)
-    MEM(EA, 8)<- (FRS) 
+    MEM(RA, 8)<- (FRS)
     RA <- EA
 
 Description:
@@ -102,7 +102,7 @@ Description:
     Let the effective address (EA) be the sum (RA)+(RB).
 
     The contents of register FRS are stored into the dou-
-    bleword in storage addressed by EA.
+    bleword in storage addressed by RA.
 
     EA is placed into register RA.