This is a pretty simple question.. lets say I have the following.
wordArray WORD 810Dh, 0C064h, 93ABh
Now, if I do this...
MOVZX EAX, wordArray
Thats going to move the first value of the array onto EAX.. so EAX would look something like this.. 0000810D. My question is, how can I move ALL of the array onto EAX.. so EAX would look like this... 810DC06493AB .. I think. Is this possible?