this program uses an array to reverse the order of a string in place but the output is very unusual
here is the code
.data
string BYTE 'abcdefghij',0
count dWORD ($ - string -1)/2
.code
main PROC
MOV ECX, count
L1:
mov esi, offset string
call WriteString
mov edi, offset string...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.