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) | . |
| 83 F8 00 | cmp eax,$00 (0) | tmp = param_b; |
| B8 00 00 00 00 | mov eax,$00000000 (0) | param_b = 0; |
| 74 06 | jz +$06 (@@1) | if (tmp == 0) goto @@1; |
| 83 FB 00 | cmp ebx,$00 (0) | . |
| 74 01 | jz +$01 (@@1) | if (param_a == 0) goto @@1; |
| 40 | inc eax | param_b++; |
| @@1: | @@1: | |
| 50 | push eax | return param_b; |