Answered You can hire a professional tutor to get the answer.
Need to generate an assembly code which does the following: define an array of 32-bit integers .data sarray DWORD 700h, 600h, 500h, 400h, 300h daray
Need to generate an assembly code which does the following:
define an array of 32-bit integers
.data
sarray DWORD 700h, 600h, 500h, 400h, 300h
daray DWORD 5 DUP(?)
1) output the sum of elements in intarray;
2) copy sarray to darray, but the order of elements will be reverse
must use a loop structure. Any help is thankful.