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.

DSP/BIOS hello world sample

Expert 1005 points
Other Parts Discussed in Thread: CCSTUDIO

Hello,

I am using CCS 3.3 and I am new in DSP/BIOS. I want to find the steps that I need to create a new DSP/BIOS project in CCS studio. Is there any document to show me how I can create a DSP/BIOS application in CCS? Some of the questions that I have are as follow:

 

1-     After I created a new project in CCS, how can I convert it to a DSP/BIOS application? I know that if I am not adding the DSP/BIOS capability to it, it is a bare board app,lication (no support for DSP/BIOS functions and capabilities)

2-     How to create the linker command file (*.cmd)?

3-     Is there any other file that I should create (other than .C and .h files which my code is in them)?

Best regards

 

  • mans said:
    Is there any document to show me how I can create a DSP/BIOS application in CCS?

    I do not know of a good one off the top of my head, but I can try to answer each of your questions to help move you along.

    mans said:
    1-     After I created a new project in CCS, how can I convert it to a DSP/BIOS application? I know that if I am not adding the DSP/BIOS capability to it, it is a bare board app,lication (no support for DSP/BIOS functions and capabilities)
    Converting a non-BIOS project into a BIOS project is as simple as adding a .tcf file to the project. You can create a new one and modify it to meet your needs by selecting New->DSP/BIOS Configuration File. Once you save this file you can add it to your project.

    mans said:
    2-     How to create the linker command file (*.cmd)?
    This is actually done automatically when you include a BIOS configuration (.tcf file) to your project. Sometimes a custom command file is required, but for many projects the BIOS-generated command file is sufficient.

    mans said:
    3-     Is there any other file that I should create (other than .C and .h files which my code is in them)?
    Once you add the .tcf file to your project the other BIOS-related source files will be generated automatically based on the specifications you make to your script/GUI. These are in addition to your own source files, so don't forget to add those as well.

  • Thanks a lot for your reply.

    I am using the simulator in CCS to learn DSP/BIOS.

    I create a new project and create a new .tcf and add it to project.

    I also wrote a simple hello world application.

    When I am building the project, I am getting the following error:

    [DspBios_config.tcf] "C:\ProgramFiles\CCStudio_v3.3\bios_5_31_02\xdctools\tconf" -b -Dconfig.importPath="C:/ProgramFiles/CCStudio_v3.3/bios_5_31_02/packages;" DspBios_config.tcf
    remark:Sim62xx platform is configured for 6204 device. To change the configuration to another 62 device, please add that device as a parameter to utils.loadPlatform() call in your TCF file. Ex:
    utils.loadPlatform('ti.platforms.sim62xx', {deviceName: '###'});

    For more information, please refer to Chapter 4 of the Tconf User's Guide
    (SPRU007G)
    js: "./DspBios_config.tcf", line 11: Heaps are enabled, but the segment for DSP/BIOS Objects (MEM.BIOSOBJSEG) is not set correctly. Please create a heap in one of your data segments and set MEM.BIOSOBJSEG to it.


    Compile Complete,
      1 Errors, 0 Warnings, 0 Remarks.

     

    Can you please help me to find the problem?

    Best regards

     

  • mans said:
    [DspBios_config.tcf] "C:\ProgramFiles\CCStudio_v3.3\bios_5_31_02\xdctools\tconf" -b -Dconfig.importPath="C:/ProgramFiles/CCStudio_v3.3/bios_5_31_02/packages;" DspBios_config.tcf
    remark:Sim62xx platform is configured for 6204 device. To change the configuration to another 62 device, please add that device as a parameter to utils.loadPlatform() call in your TCF file. Ex:
    utils.loadPlatform('ti.platforms.sim62xx', {deviceName: '###'});

    You need to make sure that you select an appropriate seed file for your platform when creating the new BIOS file. For example, you selected a sim62x seed which is used for C62xx Simulators (I assume this is not your intended TI device).

    mans said:
    js: "./DspBios_config.tcf", line 11: Heaps are enabled, but the segment for DSP/BIOS Objects (MEM.BIOSOBJSEG) is not set correctly. Please create a heap in one of your data segments and set MEM.BIOSOBJSEG to it.
    You can fix this by creating a heap - which is used for dynamic memory allocation (malloc, etc.) - in one of your memory ranges. For example, expand System->MEM - Memory Section Manager, right click one of the memory ranges (e.g., IRAM), and select Properties. Choose either code/data or data in the space dropdown box, and click the box to create a heap in this memory. Click the OK box.

    Once you've done this you can right click on the Memory Section Manager itself and select Properties. Change the dropdowns for Segment for DSP/BIOS Objects and Segment for malloc() / free() to the name of the memory range in which you created a heap (it should be MEM_NULL) by default.

  • Thanks alot!

    That problem is now solved but after I built the project, I am getting this errors and warnings:

    -----------------------------  test1.pjt - Debug  -----------------------------
    [DspBios_config.tcf] "C:\ProgramFiles\CCStudio_v3.3\bios_5_31_02\xdctools\tconf" -b -Dconfig.importPath="C:/ProgramFiles/CCStudio_v3.3/bios_5_31_02/packages;" DspBios_config.tcf
    remark:Sim62xx platform is configured for 6204 device. To change the configuration to another 62 device, please add that device as a parameter to utils.loadPlatform() call in your TCF file. Ex:
    utils.loadPlatform('ti.platforms.sim62xx', {deviceName: '###'});

    For more information, please refer to Chapter 4 of the Tconf User's Guide
    (SPRU007G)

    [Main.c] "C:\ProgramFiles\CCStudio_v3.3\C6000\cgtools\bin\cl6x" -g -fr"C:/ProgramFiles/CCStudio_v3.3/examples/sim62xx/xdais/test1/Debug" -d"_DEBUG" -@"Debug.lkf" "Main.c"

    [DspBios_configcfg.s62] "C:\ProgramFiles\CCStudio_v3.3\C6000\cgtools\bin\cl6x" -g -fr"C:/ProgramFiles/CCStudio_v3.3/examples/sim62xx/xdais/test1/Debug" -d"_DEBUG" -@"Debug.lkf" "DspBios_configcfg.s62"

    [DspBios_configcfg_c.c] "C:\ProgramFiles\CCStudio_v3.3\C6000\cgtools\bin\cl6x" -g -fr"C:/ProgramFiles/CCStudio_v3.3/examples/sim62xx/xdais/test1/Debug" -d"_DEBUG" -@"Debug.lkf" "DspBios_configcfg_c.c"

    Warning: The project has no cmd file while the Text Linker is selected
    [Linking...] "C:\ProgramFiles\CCStudio_v3.3\C6000\cgtools\bin\cl6x" -@"Debug.lkf"
    <Linking>
    >> warning: creating output section .gblinit without SECTIONS specification
    >> warning: creating output section .mem without SECTIONS specification
    >> warning: creating output section .rtdx_data without SECTIONS specification
    >> warning: creating output section .sys without SECTIONS specification
    >> warning: creating output section .clk without SECTIONS specification
    >> warning: creating output section .hst1 without SECTIONS specification
    >> warning: creating output section .hst without SECTIONS specification
    >> warning: creating output section .pip without SECTIONS specification
    >> warning: creating output section .hst0 without SECTIONS specification
    >> warning: creating output section .hwi_vec without SECTIONS specification
    >> warning: creating output section .swi without SECTIONS specification
    >> warning: creating output section .printf without SECTIONS specification
    >> warning: creating output section .sts without SECTIONS specification
    >> warning: creating output section .tsk without SECTIONS specification
    >> warning: creating output section .TSK_idle$stk without SECTIONS specification
    >> warning: creating output section .idlcal without SECTIONS specification
    >> warning: creating output section .idl without SECTIONS specification
    >> warning: creating output section .LOG_system$buf without SECTIONS
                specification
    >> warning: creating output section .log without SECTIONS specification
    >> warning: creating output section .sysinit without SECTIONS specification
    >> warning: creating output section .vers without SECTIONS specification
    >> warning: entry point symbol _c_int00 undefined

    undefined                        first referenced
     symbol                              in file
    ---------                        ----------------
    _CLK_start                       C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    SWI_D_rdytab                     C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    _GBL_procId                      C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    __HOOK_knlId                     C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    _KNL_exit                        C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    TSK_VCREATEFXN                   C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    _UTL_doError                     C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    PIP_F_start                      C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    GBL_boot                         C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    TSK_VDELETEFXN                   C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    KNL_glue                         C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    _UTL_doAbort                     C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    IDL_F_loop                       C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    _CLK_DFLTMICROSECS               C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    _CLK_htimePerLtime               C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    GBL_stackbeg                     C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    _UTL_doPutc                      C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    _MEM                             C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    PRD_F_tick                       C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    __HOOK_NUMHOOKS                  C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    _CLK_D_microseconds              C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    RTA_F_or                         C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    TRC_R_mask                       C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    GBL_stackend                     C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    _c_int00                         C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    _TSK_config                      C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    _OBJ_table                       C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    HWI_A_VECS                       C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    _FXN_F_nop                       C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    SDRAM0$B                         C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    IDL_D_calibrate                  C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    _TSK                             C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    _KNL_run                         C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    SDRAM0$L                         C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    LNK_dspFrameRequestMask          C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    CLK_F_isr                        C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    PIP_D_tabbeg                     C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    TRC_cinit                        C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    _UTL_halt                        C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    _MEM_init                        C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    RTA_F_dispatch                   C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    _TSK_startup                     C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    _TSK_setup                       C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    _KNL_queues                      C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    CLK_A_TABBEG                     C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    LNK_F_dataPump                   C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    TSK_VEXITFXN                     C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    HWI_D_ccmask                     C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    HWI_F_dispatch                   C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    _RTDX_Poll                       C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    _TSK_init                        C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    IDL_D_busyObj                    C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    _TSK_exit                        C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    SWI_F_enable                     C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    FXN_F_run                        C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    _GBL_getVersion                  C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    GBL_initdone                     C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    _CLK_stop                        C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    _HWI_dispatchTab                 C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    LNK_dspFrameReadyMask            C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    IDL_F_busy                       C:\\ProgramFiles\\CCStudio_v3.3\\examples\\sim62xx\\xdais\\test1\\Debug\\DspBios_configcfg.obj
    >>   error: symbol referencing errors - './Debug/test1.out' not built

    >> Compilation failure

    Build Complete,
      2 Errors, 23 Warnings, 0 Remarks.

     

    Any help?

    Best regards

     

  • You need to include the BIOS-generated linker command file. This should be located in the same directory as the .tcf file (and will be similarly named).

  • Tim said, "Converting a non-BIOS project into a BIOS project is as simple as adding a .tcf file to the project. You can create a new one and modify it to meet your needs by selecting New->DSP/BIOS Configuration File. Once you save this file you can add it to your project."

    When I tried this with a non-BIOS project that I have created and have running with a simulator I find that I can't add a new DSP/BIOS Configuration file because "the The selected project does not have DSP/BIOS support".  The "next" and "finished" buttons are grayed out and the only option is to cancel.  I have also tried copying a .tcf file to the project but when I try to edit with the DSP/BIOS Configuration tool it tells me that "the project of the selected file does not have DSP/BIOS support."

         sitichon

  • I have the same error of Jamp.I can't create the .tcf file for the same reasons.

    Thanks

  • I got the similar error,

    How can I fix it?

    -----------------------------  proj1.pjt - Debug  -----------------------------
    [Configuration1.tcf] "C:\CCStudio_v3.3\bios_5_31_02\xdctools\tconf" -b -Dconfig.importPath="C:/CCStudio_v3.3/bios_5_31_02/packages;" Configuration1.tcf

    [main.c] "C:\CCStudio_v3.3\C6000\cgtools\bin\cl6x" -g -fr"C:/CCStudio_v3.3/examples/sim64xx/xdais/proj1/Debug" -d"_DEBUG" -mv6400+ -@"Debug.lkf" "main.c"
    "main.c", line 33: warning: last line of file ends without a newline
    "main.c", line 12: warning: pragma can only be applied to a file level symbol, not 'img_buf1'
    "main.c", line 13: warning: pragma can only be applied to a file level symbol, not 'img_buf1'
    "main.c", line 15: warning: pragma can only be applied to a file level symbol, not 'img_buf2'
    "main.c", line 16: warning: pragma can only be applied to a file level symbol, not 'img_buf2'

    [Configuration1cfg.s62] "C:\CCStudio_v3.3\C6000\cgtools\bin\cl6x" -g -fr"C:/CCStudio_v3.3/examples/sim64xx/xdais/proj1/Debug" -d"_DEBUG" -mv6400+ -@"Debug.lkf" "Configuration1cfg.s62"

    [Configuration1cfg_c.c] "C:\CCStudio_v3.3\C6000\cgtools\bin\cl6x" -g -fr"C:/CCStudio_v3.3/examples/sim64xx/xdais/proj1/Debug" -d"_DEBUG" -mv6400+ -@"Debug.lkf" "Configuration1cfg_c.c"

    Warning: The project has no cmd file while the Text Linker is selected
    [Linking...] "C:\CCStudio_v3.3\C6000\cgtools\bin\cl6x" -@"Debug.lkf"
    <Linking>
    >> warning: creating output section .gblinit without SECTIONS specification
    >> warning: creating output section .mem without SECTIONS specification
    >> warning: creating output section .rtdx_data without SECTIONS specification
    >> warning: creating output section .sys without SECTIONS specification
    >> warning: creating output section .clk without SECTIONS specification
    >> warning: creating output section .hst1 without SECTIONS specification
    >> warning: creating output section .hst without SECTIONS specification
    >> warning: creating output section .pip without SECTIONS specification
    >> warning: creating output section .hst0 without SECTIONS specification
    >> warning: creating output section .hwi_vec without SECTIONS specification
    >> warning: creating output section .swi without SECTIONS specification
    >> warning: creating output section .printf without SECTIONS specification
    >> warning: creating output section .sts without SECTIONS specification
    >> warning: creating output section .tsk without SECTIONS specification
    >> warning: creating output section .TSK_idle$stk without SECTIONS specification
    >> warning: creating output section .idlcal without SECTIONS specification
    >> warning: creating output section .idl without SECTIONS specification
    >> warning: creating output section .LOG_system$buf without SECTIONS
                specification
    >> warning: creating output section .log without SECTIONS specification
    >> warning: creating output section .sysinit without SECTIONS specification
    >> warning: creating output section .vers without SECTIONS specification
    >> warning: entry point symbol _c_int00 undefined

    undefined                        first referenced
     symbol                              in file
    ---------                        ----------------
    SWI_D_rdytab                     C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _EXC_init                        C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _GBL_procId                      C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    __HOOK_knlId                     C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _KNL_exit                        C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    TSK_VCREATEFXN                   C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _UTL_doError                     C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    PIP_F_start                      C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    GBL_boot                         C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    TSK_VDELETEFXN                   C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    KNL_glue                         C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _UTL_doAbort                     C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _HSRTDX_xmt                      C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    IDL_F_loop                       C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _CLK_DFLTMICROSECS               C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _GBL_cacheInit64P                C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _EXC_dispatch                    C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _CLK_htimePerLtime               C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    GBL_stackbeg                     C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _CLK_D_tddr                      C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _UTL_doPutc                      C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _MEM                             C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    PRD_F_tick                       C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    __HOOK_NUMHOOKS                  C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _CLK_D_microseconds              C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    RTA_F_or                         C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    TRC_R_mask                       C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    GBL_stackend                     C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _c_int00                         C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _TSK_config                      C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _OBJ_table                       C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    HWI_A_VECS                       C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _FXN_F_nop                       C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _CLK_D_prd                       C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    IDL_D_calibrate                  C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _TSK                             C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _KNL_run                         C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    LNK_dspFrameRequestMask          C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    CLK_F_isr                        C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    PIP_D_tabbeg                     C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    TRC_cinit                        C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _UTL_halt                        C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _MEM_init                        C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    RTA_F_dispatch                   C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _TSK_startup                     C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _TSK_setup                       C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _KNL_queues                      C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    CLK_A_TABBEG                     C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    LNK_F_dataPump                   C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    TSK_VEXITFXN                     C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    HWI_F_dispatch                   C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _RTDX_Poll                       C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    DDR2$B                           C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _TSK_init                        C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    DDR2$L                           C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    IDL_D_busyObj                    C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _TSK_exit                        C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    SWI_F_enable                     C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    FXN_F_run                        C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _HSRTDX_rec                      C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _GBL_getVersion                  C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _CLK_inputClock                  C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    GBL_initdone                     C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    _HWI_dispatchTab                 C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    LNK_dspFrameReadyMask            C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    IDL_F_busy                       C:\\CCStudio_v3.3\\examples\\sim64xx\\xdais\\proj1\\Debug\\Configuration1cfg.obj
    >>   error: symbol referencing errors - './Debug/proj1.out' not built

    >> Compilation failure

    Build Complete,
      2 Errors, 28 Warnings, 0 Remarks.

    Thanks