MASM 中的 _emit 相当于什么

发布于 2024-11-27 19:29:25 字数 126 浏览 0 评论 0原文

我正在尝试将 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 技术交流群。

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

发布评论

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

评论(1

偏爱自由 2024-12-04 19:29:25

您可以只使用 db,如下所示:

db 10h

您最常在数据段中执行此操作,除非 64 位版本的 MASM 中发生了变化,否则它也应该在代码段中工作。

You can just use db, as in:

db 10h

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.

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