将另一个汇编器(MASM、NASM、TASM 等)与 GCC 一起使用

发布于 2024-10-16 15:47:34 字数 288 浏览 4 评论 0原文

我已经在这里和互联网上查找问题一段时间了,我似乎无法弄清楚是否可以使用 GAS 以外的东西与 GCC 进行内联汇编。我试图找出是否可以避免不仅使用 GAS 的 AT&T 语法(尽管我知道如何将 Intel 语法与 GAS 一起使用),还可以避免使用扩展的 asm 格式。虽然这不是为了一个项目或除了我自己的好奇心之外的任何东西,但我真的很感激我能得到的任何帮助(这实际上是我在这里的第一个问题,因为我找不到答案)!另外,如果这有什么区别的话,我目前在 Windows 上使用 DevC++(用于 C 代码,而不是 C++)。

谢谢, 汤姆

I've been looking through questions on here and the internet for a while now and I cannot seem to find out whether or not it is possible to do inline assembly with GCC using something other than GAS. I am trying to find if I can avoid using not only GAS's AT&T syntax (though, I know how to use Intel syntax with GAS) but the extended asm format. While this is not for a project or anything other than my own curiosity, I would really appreciate any help I can get (this is actually my first question here because I could not find an answer about it)! Also, if this makes any difference, I'm currently using DevC++ (for C code, not C++) on Windows.

Thanks,
Tom

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

送君千里 2024-10-23 15:47:34

您可以将汇编器的输出(“.o”或“.obj”文件)与您的 C 或 C++ 程序链接起来。将汇编代码放入文本文件中。您的 IDE 或 makefile 将像编译任何 c 源文件一样编译它。唯一棘手的一点是学习如何在两个不同的系统之间进行交互。

You can link the output from an assembler (a ".o" or ".obj" file) with your C or C++ program. Put your assembler code in a text file. Your IDE or makefile will assemble it just as it would any c source file. The only tricky bit is learning how to interface between the two different systems.

-小熊_ 2024-10-23 15:47:34

您不能在 GCC 中使用其他内联汇编语法。内联汇编由 GCC 实现,字面上包括您用其自己的(文本)汇编输出内联编写的汇编,然后将其发送到 gas 进行汇编。由于 GCC 不知道如何更改其自身输出的格式以提供给另一个汇编器,因此您也无法更改内联汇编。

You cannot use another inline assembly syntax with GCC. inline assembly is implemented by GCC literally including the assembly you write inline with its own (textual) assembly output, which it then sends to gas to be assembled. Since GCC doesn't know how to change the format of its own output to feed to another assembler, you can't change the inline assembly, either.

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