汇编语言数组

发布于 2024-09-30 03:05:20 字数 290 浏览 3 评论 0原文

这是一个非常简单的问题..可以说我有以下内容。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧人哭 2024-10-07 03:05:20

首先,EAX只保存32位,因此最多只能保存其中两个元素。在这种情况下,您要做的是使用常规的 MOV 指令:

MOV EAX, dword ptr wordArray.

这将从 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:

MOV EAX, dword ptr wordArray.

This will put 32 bits starting from the offset at wordArray into EAX.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文