This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

What is the first symbol of the annotation for assemble code in ccs6.0?



Hi,

      I have a problem about the annotation for assemble code in CCS6.0, as follow:

;----------------------------------------------------------------------------------
; FILE: {ProjectName}-DPL-ISR.asm
;
; Description: {ProjectName}-DPL-ISR.asm contains the ISR for the system
; It also contains the initailization routine for all the macros
; being used in the system both for CLA and C28x macros
;
; Revision/ Version: See {ProjectName}-Main.c
;----------------------------------------------------------------------------------

;Gives peripheral addresses visibility in assembly
.cdecls C,NOLIST, "PeripheralHeaderIncludes.h"

;include C header file - sets INCR_BUILD etc.(used in conditional builds)
.cdecls C,NOLIST, "CNTL_Boost_Settings.h"

;Include files for the Power Library Maco's being used by the system
.include "PWMDRV_1ch.asm"
.include "CNTL_2P2Z.asm"
.include "ADCDRV_8ch.asm"

The problem is the annotation symbol";"is not recognized by the compiler,why?