Given the following values in the registers answer the follo
Given the following values in the registers, answer the following questions:
Solution
mov ecx, ebx------------------------------------------------------->ecx = 0x00A30040
mov ecx, 0x00000044------------------------------------------>ecx = 0x00000044
mov ecx, [0x00000044]---------------------------------------->ecx = 0x00000060
mov ecx, [ebx]----------------------------------------------------->ecx = 0x00000040
mov ecx, [ebx-4*eax+8]---------------------------------------->ecx = 0x00000060
lea ecx, [ebx-4*eax+8]---------------------------------------->ecx = 0x00A30044
