Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
EAX, EBX, ECX, EDX registers can be used as pointers to memory. EAX and EDX registers contain the multiplication result after executing IMUL instruction. ECX register is often used as a loop counter, E(Counter)X, in assembly language corresponding to simple loops in C and C++ code:
for (int i = 0; i < N ; ++i)