A.2.3 Embedding assembler instructions

With the CC-RH assembler instructions can be described in the following formats within C source programs. This treats the function itself as an assembler instruction, and performs inline expansion at the call site.

-

#pragma directive

#pragma inline_asm func
static int func(int a, int b) {
        /*Assembler instruction*/
}

 

See "Describing assembler instruction" for details.