FilterFactory - Operator "<=" (smaller than)

Back to function listing

Syntax

a<=b

Original Machine Code (in OPER resource) of Filter Factory 3.0 and 3.0.4 for Photoshop/Win32

58 pop eax (param_b) .
5B pop ebx (param_a) .
3B C3 cmp eax,ebx .
B8 00 00 00 00 mov eax,$00000000 (0) .
0F 9D C0 setnl al result = (param_b >= param_a) ? 1 : 0;
50 push eax return result;