as we know, the loop X
instruction is going over X
until ECX = 0
.
My question - What the loop instruction do first: decrement the ECX, or check if ECX == 0.
Meaning, what of the below is corect
first
ECX = ECX - 1;
if ECX > 0
go to X
second
if ECX > 0 {
ECX = ECX - 1;
fo to x; }
Thanks.