The question in the book shows the following loop:
mov ecx, -1
forD: .
. ; loop body
.
loop forD
The question asks "how many times is each loop body executed?"
The answer in the back of the book says 4,294,967,295, but why? What's the significance of this number? Is this supposed to be a never-ending-loop?