bitmanip: fixed syntax for code block
authorAndrey Miroshnikov <andrey@technepisteme.xyz>
Mon, 24 Oct 2022 12:26:53 +0000 (13:26 +0100)
committerAndrey Miroshnikov <andrey@technepisteme.xyz>
Mon, 24 Oct 2022 12:26:53 +0000 (13:26 +0100)
openpower/sv/bitmanip.mdwn

index 11bf894472e2c6a703af65cd6685c337091ae4de..4744974a88175ede03e33564d83afa1df7260277 100644 (file)
@@ -249,23 +249,20 @@ Replaces a pair of explicit instructions in hot-loops.
     | PO   |  RT  |   RA     |   RB  |sm |   XO |Rc |
 ```
 
-```
-Pseudo-code (shadd):
+    Pseudo-code (shadd):
     shift <- sm & 0x3                  # Ensure sm is 2-bit
     shift <- shift + 1                 # Shift is between 1-4
     sum[0:63] <- ((RB) << shift) + (RA) # Shift RB, add RA
     RT <- sum                          # Result stored in RT
-```
 
 Is Rc used to indicate the two modes?
-```
-Pseudo-code (shadduw):
+
+    Pseudo-code (shadduw):
     shift <- sm & 0x3                  # Ensure sm is 2-bit
     shift <- shift + 1                 # Shift is between 1-4
     n <- (RB) & 0xFFFFFFFF             # Limit RB to upper word (32-bits)
     sum[0:63] <- (n << shift) + (RA)    # Shift n, add RA
     RT <- sum                          # Result stored in RT
-```
 
 ```
 uint_xlen_t shadd(uint_xlen_t RA, uint_xlen_t RB, uint8_t sm) {