Question: Using the Array Sum example below. How do I Modify this example for an Array of doublewords? *Note: The class is Assembly Language for x86
Array Sum Example Indirect operands are ideal for traversing an array Note that the register in brackets must be incremented by a value that matches the array type data array W WORD 1000h,2000h,3000h. code mov esi,OFFSET arrayW Or add esi, TYPE arrayW mov ax, [esi] add esi,2 add ax, [esi] AX sum of the array add esi, 2 add ax, [esi] ToDo: Modify this example for an array of doublewords. 59 Irvine, Kip R. Assembly Language for x86 Processors6e, 2010
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
