Program For Exchanging Pairs of Array Values in Assembly Language Using Visual Studio PDF
Program For Exchanging Pairs of Array Values in Assembly Language Using Visual Studio PDF
Program for Exchanging Pairs of Array Values in Assembly Language using Visual Studio
Programming Tutorials
SUBSCRIBE
Chapter 4
Problem # 2:
Solution:
.386
.model flat,stdcall
.stack 4096
ExitProcess proto,dwExitCode:dword
.data
.code
main proc
myLoop:
MOV eax,[esi]
http://csprogrammingtutorial.blogspot.com/2017/12/exchanging-pairs-of-array-values.html 1/3
12/9/2018 2. Program for Exchanging Pairs of Array Values in Assembly Language using Visual Studio
XCHG eax,[esi+4]
Programming Tutorials
MOV [esi],eax
SUBSCRIBE
loop myLoop
invoke ExitProcess,0
main endp
end main
Let me know in the comment sec on if you have any ques on.
Previous Post:
Next Post:
Summing the Gaps between Array Values
http://csprogrammingtutorial.blogspot.com/2017/12/exchanging-pairs-of-array-values.html 2/3