Keil™, An ARM® Company

CARM User's Guide

Discontinued

Using the SRC Directive

The CARM Compiler can create assembly source files that you can assemble with the AA ARM Assembler. These SRC files can help you determine the argument passing conventions between C and assembly.

To create an assembly source file, you must use the SRC directive with the CARM Compiler. For example:

#pragma SRC

unsigned int asmfunc1 (
  unsigned int arg)
{
return (1 + arg);
}