The inverse condition code produces the opposite result for all comparisons.
That is, cmp CC, x, y is true if and only if cmp CC.inverse(), x, y is false.
The reversed condition code produces the same result as swapping x and y in the
comparison. That is, cmp CC, x, y is the same as cmp CC.reverse(), y, x.