MASM 中的 _emit 相当于什么
我正在尝试将 Visual Studio 中编写的一些内联汇编代码移植到 MASM64 中。原始代码使用_emit,这是一条伪指令,在当前文本段的当前位置定义一个字节。
我如何在 x64 汇编 MASM 中执行相同的操作?
I'm trying to port some inline assembly code written in Visual Studio into MASM64. The original code uses _emit which is a pseudo instruction that defines one byte at the current location in the current text segment.
How would I do the same in x64 assembly MASM?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以只使用
db
,如下所示:您最常在数据段中执行此操作,除非 64 位版本的 MASM 中发生了变化,否则它也应该在代码段中工作。
You can just use
db
, as in:You do this most often in a data segment, unless things have changed in the 64-bit version of MASM, it should work in the code segment as well.