Please help and provide a screen shot of the program running
Please help and provide a screen shot of the program running. Write an assembly program that uses indirect addressing to switch the 1st and 2nd elements of the dword array. Then switch the 3rd and 4th elements, and so on. Then output the final contents of the array dwarraay. USE THE TEMPLATE BELOW.
INCLUDE Irvine32.inc
.data dwarray
dword 0,2,5,9,10,12
.code
main proc
all waitMsg
exit
mainENDP
END main
Solution
When the above code is compiled and executed, it produces the following result

