original algorithm detects overflow and manually places 0xffffffff
(all ones) into `qhat`. With there being so many operands already
in `divrem2du` a `cmpl` instruction can be used instead to detect
-the overflow. This saves having to add an Rc=1 or OE.
+the overflow. This saves having to add an Rc=1 or OE=1 mode when
+the available space in VA-Form EXT04 is extremely limited.
Looking closely at the loop however we can see that overflow
will not occur. The initial value k is zero, and on subsequent iterations
-new k, being the modulo, is always less than the divisor
+new k, being the modulo, is always less than the divisor. Thus the
+condition (the loop invariant) `RC < RA` is preserved, as long as RC
+starts at zero.