Dear Champs,
I am asking this for our customer.
The user wants to write assembly in the same C/CLA files and call from C/CLA and need us to clarify.
1. Assembly embedded in the same C file
We should be able to use this kind of statement directly in C codes, right?
asm(" EALLOW");
But can the user also use directives directly?
For example, this is a code from one of our competitor to declare a variable or a constant.
__asm__ volatile (".EQU MAX_FREQUENCY, 22000"); // 220 KHZ
Can we use asm("..."); to do all the assembly codes including all the directives?
If not, what is the limitation or concern?
2. Assembly embedded in the same CLA file
Same as (1) above, does it also work in .cla file for CLA?
3. Call assembly from C
If the user uses a function instead and call it from an .asm file, how do they do?
Do we have any example and doc to show this?
4. Call assembly from CLA.
Same as (3) above, how does the user do from .cla file on CLA?
Wayne Huang