NOTE
All data shared between the CLA and C28x CPUs must be defined in the C28x C or C++ code, and not defined in the CLA code (that is, not in *.cla files). This is required because shared variables defined in CLA code may not be blocked properly, which may cause variable accesses on the C28x to not set the DP correctly. See Section 3.11 for information about blocking and the DP register for both COFF and EABI. The linker provides a diagnostic message if blocked data access is attempted on non-blocked data.
The following data types are supported:
Pointer sizes for CLA are always 16-bits. This differs from C28x, which has 32-bit pointers.
NOTE
CLA Has a Different Size for intThe size of an int for CLA is 32 bits instead of the 16-bit size on the C28x. To avoid ambiguity when sharing data between CLA and C28x, we strongly recommend that you use C99 type declarations that include size information (for example, int32_t and uint16_t).
NOTE
No 64-bit Types With CLA CompilerThe CLA compiler does not support 64-bit types.