None
+The 128-bit dividend is (RA) || (RC). The 64-bit divisor is
+(RB). If the quotient can be represented in 64 bits, it is
+placed into register RT. The modulo is placed into register RS.
+RS is implictly defined as the same register as RC, similarly to maddedu.
+
+The instruction is only defined where both conditions are true:
+
+* (RA) < (RB) (unsigned comparison)
+* (RB) is NOT 0 (not divide-by-0)
+
+If these conditions are not met, RT is set to all 1's, RS to all 0's.
+
+Both operands, quotient, and modulo are interpreted as unsigned integers.
+
+
Divide/Modulo Quad-Double Unsigned is another VA-Form instruction
that is near-identical to `divdeu` except that: