FASM - 压缩“缓冲区 db 0, 0, 0, 0, 0, 0, ...”
我很幸运遇到了一些 NASM 代码,这些代码在 FASM 中编译得很好,只改变了一行;
buffer times 64 db 0
这在 NASM 中工作得很好,但在 FASM 中不行——我必须写:
buffer db 0, 0, 0, 0, 0, 0, ...
必须有一种更紧凑的方法来做到这一点。
I was lucky enough to run into some NASM code that compiled fine in FASM changing just a single line;
buffer times 64 db 0
This works fine in NASM, but not in FASM - i had to write:
buffer db 0, 0, 0, 0, 0, 0, ...
There must be a more compact way to do this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可能正在寻找:
You are probably looking for:
在 fasm 中你应该写
In fasm you should write
在 fasm 中,当标签后跟宏时,其名称应以冒号结尾
in fasm, when a label is folowed by a macro, its name should end with a colon