I have some C inline assembly using the asm keyword. When I enable the Compiler > Enable ANSI Checking project property I get implicit declaration of function 'asm' compilation warnings and an undefined reference to 'asm' linker error. What is going on?
If you are using Enable ANSI Checking you should use __asm__ rather than asm.
Comments
0 comments
Please sign in to leave a comment.