* Revision 0.0: 21apr2022 <https://www.youtube.com/watch?v=8hrIG7-E77o>
* Revision 0.01: 22apr2022 removal of msubed because sv.madded and sv.subfe works
* Revision 0.02: 22apr2022 128/64 scalar divide, investigate Goldschmidt
+* Revision 0.03: 24apr2022 add 128/64 divrem2du, similar loop to madded
This page covers an analysis of big integer operations, to
work out optimal Scalar Instructions to propose be submitted to
RT = UDIV(dividend, divisor)
RS = UREM(dividend, divisor)
-Again, using EXTRA mode bit 8 allows for selecting whether RS=RC or
-RS=RT+VL.
+Again, in an SVP64 context, using EXTRA mode bit 8 allows for
+selecting whether `RS=RC` or
+`RS=RT+VL`. Similar flexibility in the scalar-vector settings
+allows the instruction to perform full parallel vector div/mod,
+or act in loop-back mode for big-int division by a scalar,
+or for a single scalar 128/64 div/mod.