I am working on some assembly homework and am stumped on my last program. If anyone with x86 assembly knowledge is lurking, please feel free to comment on how I might get started with this. Thanks!
problem:
Use a loop with indirect or indexed addressing to reverse the elements of an integer array in place. do not copy the elements to any other array. Also use SIZEOF, TYPE, and LENGTHOF operators to make the program flexible to different arrays.
code so far:
.data
array BYTE 10h,20h, 30h, 40h
.code
main PROC
call Clrscr
;no clue...
exit
main ENDP
END main