
Extremely Active Member
     
Group: Members
Posts: 253
Member No.: 15879
Joined: 3-December 08

|
je @F would jump if Zero flag is set to the following --> @@: <-- label!
je @B would jump if Zero flag is set to the label ahead!
ex.:
| CODE | mov eax,10 @@: dec eax cmp eax,eax je @B:
|
| CODE | cmp eax,eax je @F: mov eax,ebx @@:
|
| CODE | proc somation x mov eax,[x] ;copy stackvalue to eax cmp eax,1 ;compare eax with 1 je @F ;if eax (value of x) equals 1 then go to return dec eax ;else dec x stdcall somation,eax;and call somation again add eax,[x] ;add eax, value of x if it returns from it's call @@: ret endp
|
Maybe this will help you!
Regards,
XeS
|