// Please try to run this code in DEBUG mode before the class
void main() { int n = 0xffffffff; register int m = 3; register int p = 256; static int q = 0x7fffffff; static int r = 0x10000000; _asm { start_loop: mov esi, 0 // esi += 0 mov edx, 0 // edx += 0 mov edi, 0 mov eax, 0 add eax, n // add eax, r // add edx, q // add n, edx } } |
|||