Next pragma CREATE_ASM_LISTING
#pragma CREATE_ASM_LISTING (ON|OFF)
None
ON: Creates an assembler include file for all subsequent defines or objects
OFF: Does not create an assembler include file for all subsequent defines or objects
OFF
This pragma controls whether subsequent defines or objects are printed into the assembler include file.
A new file generates only when the -La compiler option is specified together with a header file containing #pragma CREATE_ASM_LISTING ON.
#pragma CREATE_ASM_LISTING ON
extern int i; /* i is accessible from the asm code */
#pragma CREATE_ASM_LISTING OFF
extern int j; /* j is only accessible from the C code */