Microsoft 汇编器到 GNU 汇编器的转换
我有一个 ARM 汇编代码,可以用 Visual Studio 很好地编译。我现在想使用相同的 ARM 汇编代码并使用 GNU Assembler 进行编译。如您所知,两个汇编器的语法是不同的。我想知道是否有任何工具可以从这些汇编语法进行转换。
I have an ARM assembly code that compiles well with Visual Studio. I would like to now use the same ARM assembly code and compile it with GNU Assembler. As you know the syntax of both assemblers are different. I was wondering if there is any tool that can convert from these Assembly syntaxes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看如何使用gcc 生成 Intel 语法的汇编代码?
Take a look at How do you use gcc to generate assembly code in Intel syntax?