(no commit message)
authorlkcl <lkcl@web>
Wed, 6 Apr 2022 17:04:24 +0000 (18:04 +0100)
committerIkiWiki <ikiwiki.info>
Wed, 6 Apr 2022 17:04:24 +0000 (18:04 +0100)
openpower/sv/bitmanip.mdwn

index 91eb79eded321c7b45bde4187b6c95afb030613e..3f2fd4e3c77ae0c3ca870e64185af18cf25c9d03 100644 (file)
@@ -981,7 +981,7 @@ RA ← EXTZ64(count)
 
 ## bit deposit
 
-vpdepd VRT,VRA,VRB, identical to RV bitmamip bdep, found already in v3.1 p106
+pdepd VRT,VRA,VRB, identical to RV bitmamip bdep, found already in v3.1 p106
 
     do while(m < 64)
        if VSR[VRB+32].dword[i].bit[63-m]=1 then do
@@ -1008,7 +1008,7 @@ uint_xlen_t bdep(uint_xlen_t RA, uint_xlen_t RB)
 
 ## bit extract
 
-other way round: identical to RV bext, found in v3.1 p196
+other way round: identical to RV bext: pextd, found in v3.1 p196
 
 ```
 uint_xlen_t bext(uint_xlen_t RA, uint_xlen_t RB)