int_regfile[RT].halfs[i] = int_regfile[RA].halfs[i] + int_regfile[RB].halfs[i]
```
+The most fundamental aspect here to understand is that the wrapping into
+subsequent Scalar GPRs that occurs on larger-numbered elements
+including and especially on smaller element widths is **deliberate and intentional**.
+From this Canonical definition it should be clear that sequential elements begin
+at the LSB end of any given underlying Scalar GPR, progress to the MSB end, and
+then to the LSB end of the *next numerically-larger Scalar GPR*. In the
+example above if VL=5 and RT=1 then the contents of GPR(1) and GPR(2) will
+be as follows:
+
+
+
Hardware Architectural note: to avoid a Read-Modify-Write at the register
file it is strongly recommended to implement byte-level write-enable lines
exactly as has been implemented in DRAM ICs for many decades. Additionally