Added English language description for stbupsx instruction
authorShriya Sharma <shriya@redsemiconductor.com>
Fri, 17 Nov 2023 15:35:39 +0000 (15:35 +0000)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Fri, 1 Dec 2023 14:02:54 +0000 (14:02 +0000)
openpower/isa/pifixedstoreshift.mdwn

index 194bee36813b10349cdfda45774b114ad054eb35..1f2694a0e80d9ec5f8b2d96648768da5f82a588d 100644 (file)
 
 Z23-Form
 
-* stbupsx RS,RA,RB
+* stbupsx RS,RA,RB,SH
 
 Pseudo-code:
 
-    EA <- (RA) + (RB)
+    EA <- (RA) + (RB)<<(SH+1)
     ea <- (RA)
     MEM(ea, 1) <- (RS)[XLEN-8:XLEN-1]
     RA <- EA
 
 Description:
 
-    Let the effective address (EA) be the sum (RA)+ (RB).
+    Let the effective address (EA) be the sum of the contents of
+    register RB shifted by (SH+1), and the contents of register RA.
 
     (RS)[56:63] are stored into the byte in storage addressed by EA.