|------|-------------------------|-----|---------------------------------|
| 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