Can I use Intel syntax of x86 assembly with GCC?
If you are using separate assembly files, gas has a directive to support Intel syntax: .intel_syntax noprefix # not recommended for inline asm which uses Intel syntax and doesn’t need the % prefix before register names. (You can also run as with -msyntax=intel -mnaked-reg to have that as the default instead of att, in case … Read more