push esi // move register esi to the top of the stack<br>pop esi // get the top of the stack and put into esi<br>mov esi, eax // esi := eax<br>shr ecx, 2 // ecx shr 2 (shift right)<br>the same for and, xor, etc<br>jz // GOTO = jump if zero (if the result of last command is zero)<br>
jnz // GOTO = jump if not zero<br>add esi, 4 // esi := esi + 4<br>dec ecx // Dec(ecx)<br><br>-- <br>Atenciosamente,<br>Alexsander da Rosa<br><a href="http://rednaxel.com" target="_blank">http://rednaxel.com</a><br>