Suppose we want EAX to contain the sum of the dword1 array when the following (incomplete) code finishes executing:
mov edi, OFFSET dword1
mov ecx, LENGTHOF dword
?
?
?
loop Ll
Which of the following choices would best fill in lines 3, 4, and 5 above?
a. mov eax, [edi]
L1: add eax, dword1
add edi,
b. mov eax,0 4:
L1: add eax, ledi
add edi, TYPE dword1
c. mov eax,
LI: add eax, [edi 5:
add edi,
d. mov DWORD PTR [edi),
LI: add eax, [edi]
add edi, TYPE dword1