Microsoft assembler to convert GNU assembler

I have an ARM build code that compiles well with Visual Studio. I would like to use the same ARM assembly code and compile it using the GNU Assembler. As you know, the syntax of both collectors is different. I was wondering if there is any tool that can convert from these assembly syntaxes.

+6
assembly arm gas visual-studio gnu
source share
1 answer

Take a look at How do you use gcc to generate assembly code in Intel syntax?

+2
source share

All Articles