汇编语言数组
这是一个非常简单的问题..可以说我有以下内容。
wordArray WORD 810Dh, 0C064h, 93ABh
现在,如果我这样做......
MOVZX EAX, wordArray
那就会将数组的第一个值移动到 EAX 上......所以 EAX 看起来像这样......0000810D。我的问题是,如何将所有数组移动到 EAX 上..所以 EAX 看起来像这样... 810DC06493AB ..我想。这可能吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,EAX只保存32位,因此最多只能保存其中两个元素。在这种情况下,您要做的是使用常规的 MOV 指令:
这将从 wordArray 的偏移量开始的 32 位放入 EAX 中。
First of all, EAX only holds 32 bits, so at most it would only hold two of the elements. What you want to do in this case is to use the regular
MOV
instruction:This will put 32 bits starting from the offset at wordArray into EAX.