gpt4 book ai didi

linux - Linux 上的 _emit 相当于什么?

转载 作者:IT王子 更新时间:2023-10-29 00:18:04 24 4
gpt4 key购买 nike

我正在尝试将一些用 Visual Studio 编写的汇编代码移植到 Linux 上的 GNU 内联汇编中。原始代码使用_emit MSDN 将其描述为伪指令并解释为:

The _emit pseudoinstruction is similar to the DB directive of MASM. You use _emit to define a single immediate byte at the current location in the current text segment. However, _emit can define only one byte at a time, and it can only define bytes in the text segment. It uses the same syntax as the INT instruction.

我怎样才能在 Linux 上做同样的事情?

最佳答案

要发出字节 0x12(例如),请执行以下操作:

asm __volatile__ (".byte 0x12");

尽管如此,您可能会在启用优化后获得令人惊讶的结果。

关于linux - Linux 上的 _emit 相当于什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/731428/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com