多维数组 x86
我知道如何在 C++ 中执行此操作,但在 x86 中我似乎无法在任何地方声明 4x4 数组。我只是在寻找一个例子来帮助我开始。
I know how to do this in C++ but in x86 I can not seem anywhere to declare say a 4x4 array. I am just looking for an example to get me started.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
汇编语言没有“多维数组”的概念,至少没有直接的。您将需要分配总空间量(在您的情况下为 16 个元素),并自行处理行/列偏移计算。
Assembly language doesn't have the concept of a "multidimensional array", at least not directly. You will need to allocate the total amount of space (16 elements in your case), and handle the row/column offset calculations yourself.