Please read this page from the main YASEP interface
version 2014-02-13

CMPU : CoMPare Unsigned

Subtract the second operand (snd register) from the first operand (either si4 or imm16). Change the borrow bit: set if an unsigned borrow occured, clear otherwise (?). Internally, this works just like the SUB instruction but the result is never written. It is helpful for clearing or setting the carry flag

It also modifies the Equal flag. When the two operands are equal, Eq is set to 1 (otherwise it is reset to 0) and you can use the EQ (EQual) or NEQ (Not EQual) conditions to enable/predicate the following instruction(s).

The CMPS instruction is identical but performs a signed comparison.