Added English language description for ldupsx instruction
authorShriya Sharma <shriya@redsemiconductor.com>
Fri, 17 Nov 2023 15:34:20 +0000 (15:34 +0000)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Fri, 17 Nov 2023 15:43:12 +0000 (15:43 +0000)
openpower/isa/pifixedloadshift.mdwn

index dce20ab2922aa6aa6386f2ef1f95b5bc686b364d..75a9a25b42e6766a10c3b5b0e279fbceeaf86663 100644 (file)
@@ -155,17 +155,18 @@ Special Registers Altered:
 
 X-Form
 
-* ldupsx RT,RA,RB
+* ldupsx RT,RA,RB,SH
 
 Pseudo-code:
 
-    EA <- (RA)
+    EA <- (RA)<<(SH+1)
     RT <- MEM(EA, 8)
     RA <- (RA) + (RB)
 
 Description:
 
-    Let the effective address (EA) be the register RA.
+    Let the effective address (EA) be the contents of
+    register RA shifted by (SH+1).
 
     The doubleword in storage addressed by EA is loaded into RT.