|
Sure. It jumps to 'setcount' if there's a carry, and falls through to 'setcount' if there's no carry. The result is to count, regardless. I recommend that you make a flowchart from your code and analyze it. For instructions like "loop", be sure and break them into their entire function. "loop", for instance, would be, "decrement ecx", "test ecx", and "jnz label operand".
|