We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
How to mix ARM assembler and c code?
Hi Pero,
If I understand correctly, you want to mix Arm assembly code with C code and call those assembly functions from C, right?
You can do this with any compiler and assembler that targets the Arm architecture. For example, Arm Development Studio (Arm DS) includes Arm Compiler 6, armclang. The armclang compiler includes an integrated assembler.
For more information about how to call assembly functions from C, see the Arm Compiler documentation: https://developer.arm.com/documentation/100748/0616/Using-Assembly-and-Intrinsics-in-C-or-C---Code/Calling-assembly-functions-from-C-and-C--
To download an evaluation copy of Arm Development Studio, see here: https://developer.arm.com/tools-and-software/embedded/arm-development-studio
Hope that helps,
Chris