Question: Assembly language. Please use comments explaining the instructions for learning purposes! What changes would you make to the code below, so it would sum a

Assembly language. Please use comments explaining the instructions for learning purposes!
What changes would you make to the code below, so it would sum a doubleword array? .data intarray WORD 100h,200h,300h,400h .code mov edi,0 offset of 1st element mov ecx,LENGTHOF intarray loop counter mov ax,0;zero the accumulator add ax,intarray[edi]; add an integer add edi,TYPE intarray; point to next integer loop L1 ; repeat until ECX = 0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
