I am new to Intel x86 assembly - this is actually the first program I am writing for it.
I am trying to use a loop that is similar to this:
mov ecx,5
numLoop:
[OTHER CODE - DOESN'T OVERWRITE ECX]
loop numLoop
This looks fine to me, however it just loops forever in the output and I cannot figure out why. I do not alter the value of ECX
at all during the extra code.