(no commit message)
authorlkcl <lkcl@web>
Sat, 24 Sep 2022 23:19:47 +0000 (00:19 +0100)
committerIkiWiki <ikiwiki.info>
Sat, 24 Sep 2022 23:19:47 +0000 (00:19 +0100)
openpower/sv/overview/discussion.mdwn

index b998e1c8567bbd377bcbe98963e9e324a4a5e8a7..7c670a840f827aecc43d9b226acce0449165a01c 100644 (file)
@@ -212,3 +212,12 @@ First we define the contents of 64-bit registers:
 |------|-------------------------|-----|---------------------------------|
 | bits | b0.b1.b2.b3.b4.b5.b6.b7 | ... | b56.b57.b58.b59.b60.b61.b62.b63 |
 | bytes|        B0               | ... |  B7                             |
+
+In pseudocode we may now define B0 to B7 in terms of b0..b63 and thus
+also define Registers:
+
+     B0 = b0 || b1 || b2 || b3 || b4 || b5 || b6 || b7
+     B1 = b8 || ..........                 ....  || b15
+     ...
+     B7 = b56 || .........                 ....  || b63
+     RA = B0 || B1 || B2 || B3 || B4 || B5 || B6 || B7