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.

Migrating a DSP/BIOS 5 Application to SYS/BIOS

Other Parts Discussed in Thread: TMS320F28335, SYSBIOS

I have some CCSV3 projects that currently use the DSP/BIOS 5 rtos. I'm in the process of migrating one of those projects to CCSV5 for a new program, but I also want to migrate to the newer rtos SYS/BIOS 6. I want to leverage as much (of the DSP/BIOS APIs) as possible and not have to start from scratch. The projects are all using the TMS320F28335 ds controller of the C2000 platform. 

I did a brute-force migration to CCSV5 (SYS/BIOS 6) and managed to compile successfully, but the linking failed miserably. So I stepped back a bit and performed the steps in the app note: Bios_Legacy_App_Note.pdf (Migrating a DSP/BIOS 5 Application to SYS/BIOS) section 7 "Porting the Mailbox Example to SYS/BIOS 6 Using Legacy Support". I successfully built the mailbox project with no linking errors or warnings for the C6000 device platform, but when I tried the same example for a C2000 device (ezdsp28335), I got a number of linker errors. Most of those errors are the same as those I encountered in my brute-force migration. Please see the log below. Thanks in advance for any help.


**** Build of configuration Debug for project mailbox ****

"C:\\ti\\ccsv5\\utils\\bin\\gmake" -k all
'Building file: ../mailbox.cfg'
'Invoking: XDCtools'
"C:/ti/xdctools_3_24_05_48/xs" --xdcpath="C:/ti/bios_6_34_02_18/packages;C:/ti/ipc_1_25_00_04/packages;C:/ti/xdais_7_21_01_07/packages;C:/ti/xdais_7_21_01_07/examples;C:/misc/myRepos;C:/ti/ccsv5/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.C28_large -p mbx_ezdsp28335 -r release -c "C:/ti/ccsv5/tools/compiler/c2000_6.1.1" --compileOptions "-g --optimize_with_debug" "../mailbox.cfg"
making package.mak (because of package.bld) ...
generating interfaces for package configPkg (because package/package.xdc.inc is older than package.xdc) ...
configuring mailbox.x28L from package/cfg/mailbox_p28L.cfg ...
bios.enableRealTimeAnalysis is not supported
bios.enableRtdx is not supported
warning: ti.bios.PIE: "C:/ti/bios_6_34_02_18/packages/ti/bios/PIE.xs", line 197: ti.bios.PIE : 'VMAPMODE' not supported.  SYS/BIOS uses the default value of VMAP.
warning: ti.bios.PIE: "C:/ti/bios_6_34_02_18/packages/ti/bios/PIE.xs", line 202: ti.bios.PIE : 'PIESELECT' not supported.  The PIE is always enabled for the C2000 in SYS/BIOS.
cl28L package/cfg/mailbox_p28L.c ...
'Finished building: ../mailbox.cfg'
' '
'Building file: ../mailbox.c'
'Invoking: C2000 Compiler'
"C:/ti/ccsv5/tools/compiler/c2000_6.1.1/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --include_path="C:/ti/ccsv5/tools/compiler/c2000_6.1.1/include" --include_path="C:/ti/bios_6_34_02_18/packages/ti/bios/include" --diag_warning=225 --display_error_number --diag_wrap=off --preproc_with_compile --preproc_dependency="mailbox.pp" --cmd_file="./configPkg/compiler.opt"  "../mailbox.c"
'Finished building: ../mailbox.c'
' '
'Building target: mailbox.out'
'Invoking: C2000 Linker'
"C:/ti/ccsv5/tools/compiler/c2000_6.1.1/bin/cl2000" -v28 -ml -mt --float_support=fpu32 -g --diag_warning=225 --display_error_number --diag_wrap=off -z --stack_size=0x300 -m"mailbox.map" --warn_sections -i"C:/ti/ccsv5/tools/compiler/c2000_6.1.1/lib" -i"C:/ti/ccsv5/tools/compiler/c2000_6.1.1/include" --reread_libs --display_error_number --diag_wrap=off --rom_model -o "mailbox.out" -l"./configPkg/linker.cmd"  "./mailbox.obj" -l"libc.a"
<Linking>
error #16008-D: file "./mailbox.obj" specifies ISA revision "C28FPU32", which is not compatible with ISA revision "C2800" specified in a previous file or on the command line
error #16008-D: file "C:\ti\bios_6_34_02_18\packages\ti\bios\lib\release\ti.bios.a28L<log.o28L>" specifies ISA revision "C2800", which is not compatible with ISA revision "C2700" specified in a previous file or on the command line

warning #10247-D: creating output section ".reset" without a SECTIONS specification
"./configPkg/linker.cmd", line 251: error #10099-D: program will not fit into available memory.  placement with alignment/blocking fails for section ".econst" size 0x1db5 page 0.  Available memory ranges:
>> Compilation failure
   L03SARAM     size: 0x4000       unused: 0x571        max hole: 0x571     
"./configPkg/linker.cmd", line 248: error #10099-D: program will not fit into available memory.  placement with alignment/blocking fails for section ".cinit" size 0x57f page 0.  Available memory ranges:
   L03SARAM     size: 0x4000       unused: 0x539        max hole: 0x538     
"./configPkg/linker.cmd", line 253: error #10099-D: program will not fit into available memory.  run placement with alignment/blocking fails for section ".stack" size 0x400 page 0.  Available memory ranges:
   MSARAM       size: 0x800        unused: 0x300        max hole: 0x300     
error #10010: errors encountered during linking; "mailbox.out" not built
gmake: *** [mailbox.out] Error 1
gmake: Target `all' not remade because of errors.

**** Build Finished ****


  • Kens Alexandre,
    linker is complaining because it's encountering object files that are built with the floating point flag and object files that are not built with that flag. I am guessing you want to build for a floating point device. In that case, you need to go to Properties->CCS General->RTSC->Target, and select ti.targets.C28_float. Currently, that field is set to ti.targets.C28_large, which causes the floating point flag not to be added to the compiler command line for C files that are automatically generated based on your CFG script.
    Once we fix that problem, we can proceed further.

  • Sasha,

    Thank you for your help. I followed your suggestion and got rid of a couple of the errors.The following are the errors that remain. Could these be a result of a bad linker cmd file?

    <Linking>
    warning #10247-D: creating output section ".reset" without a SECTIONS specification
    "./configPkg/linker.cmd", line 251: error #10099-D: program will not fit into available memory.  placement with alignment/blocking fails for section ".econst" size 0x1db5 page 0.  Available memory ranges:

    >> Compilation failure
       L03SARAM     size: 0x4000       unused: 0x24c        max hole: 0x24b     
    "./configPkg/linker.cmd", line 248: error #10099-D: program will not fit into available memory.  placement with alignment/blocking fails for section ".cinit" size 0x57f page 0.  Available memory ranges:
       L03SARAM     size: 0x4000       unused: 0x214        max hole: 0x212     
    "./configPkg/linker.cmd", line 253: error #10099-D: program will not fit into available memory.  run placement with alignment/blocking fails for section ".stack" size 0x400 page 0.  Available memory ranges:
       MSARAM       size: 0x800        unused: 0x300        max hole: 0x300     
    error #10010: errors encountered during linking; "mailbox.out" not built
    gmake: *** [mailbox.out] Error 1
    gmake: Target `all' not remade because of errors.

  • The error messages indicate that you are out of space for your code, but I am guessing we just need to allocate sections differently. Can you post your linker command file, Debug/configPkg/linker.cmd? There is 512KB of FLASH on 28335. Are you allocating anything to FLASH, is there space for more?

    If you have saved a MAP file from your original DSP/BIOS 5 build, it would help if you post that too. We can look at that file as a guide what the allocations should be.

  • Sasha,

    This is the linker.cmd file from the DSP/BIOS 5 mailbox example (C:\...\bios_5_41_03_17\packages\ti\bios\examples\basic\mailbox). Please see the mailbox.map file below the linker.cmd file. Thanks.

    /*
     * Do not modify this file; it is automatically generated from the template
     * linkcmd.xdt in the ti.targets package and will be overwritten.
     */

    /*
     * put '"'s around paths because, without this, the linker
     * considers '-' as minus operator, not a file name character.
     */


    -l"C:\misc\mailbox\Debug\configPkg\package\cfg\mailbox_p28FP.o28FP"
    -l"C:\ti\bios_6_34_02_18\packages\ti\bios\lib\release\ti.bios.a28FP"
    -l"C:\ti\xdctools_3_24_05_48\packages\ti\catalog\c2800\init\lib\Boot.a28FP"
    -l"C:\ti\bios_6_34_02_18\packages\ti\bios\support\lib\sysbios\debug\ti.bios.support.a28FP"
    -l"C:\ti\bios_6_34_02_18\packages\ti\sysbios\lib\sysbios\instrumented\sysbios.a28FP"
    -l"C:\ti\xdctools_3_24_05_48\packages\ti\targets\rts2800\lib\ti.targets.rts2800.a28FP"
    -l"C:\ti\xdctools_3_24_05_48\packages\ti\targets\rts2800\lib\boot.a28FP"


    /* function aliases */

    --symbol_map _xdc_runtime_System_flush__E=_xdc_runtime_System_flush__F
    --symbol_map _xdc_runtime_Memory_query__E=_xdc_runtime_Memory_query__F
    --symbol_map _ti_sysbios_family_c28_Timer_getPrescaleCount__E=_ti_sysbios_family_c28_Timer_getPrescaleCount__F
    --symbol_map _xdc_runtime_System_putch__E=_xdc_runtime_System_putch__F
    --symbol_map _xdc_runtime_Registry_getMask__E=_xdc_runtime_Registry_getMask__F
    --symbol_map _xdc_runtime_LoggerBuf_write4__E=_xdc_runtime_LoggerBuf_write4__F
    --symbol_map _xdc_runtime_LoggerBuf_reset__E=_xdc_runtime_LoggerBuf_reset__F
    --symbol_map _xdc_runtime_System_avsprintf__E=_xdc_runtime_System_avsprintf__F
    --symbol_map _xdc_runtime_Startup_exec__E=_xdc_runtime_Startup_exec__F
    --symbol_map _ti_sysbios_heaps_HeapBuf_free__E=_ti_sysbios_heaps_HeapBuf_free__F
    --symbol_map _xdc_runtime_System_abort__E=_xdc_runtime_System_abort__F
    --symbol_map _xdc_runtime_Text_matchRope__E=_xdc_runtime_Text_matchRope__F
    --symbol_map _xdc_runtime_LoggerBuf_write8__E=_xdc_runtime_LoggerBuf_write8__F
    --symbol_map _ti_sysbios_family_c28_TimestampProvider_getFreq__E=_ti_sysbios_family_c28_TimestampProvider_getFreq__F
    --symbol_map _xdc_runtime_System_sprintf_va__E=_xdc_runtime_System_sprintf_va__F
    --symbol_map _xdc_runtime_LoggerBuf_flushAll__E=_xdc_runtime_LoggerBuf_flushAll__F
    --symbol_map _ti_sysbios_family_c28_TimestampProvider_get64__E=_ti_sysbios_family_c28_TimestampProvider_get64__F
    --symbol_map _ti_bios_support_Sys_exit__E=_ti_bios_support_Sys_exit__F
    --symbol_map _xdc_runtime_LoggerBuf_getFilterLevel__E=_xdc_runtime_LoggerBuf_getFilterLevel__F
    --symbol_map _xdc_runtime_Error_getData__E=_xdc_runtime_Error_getData__F
    --symbol_map _xdc_runtime_Timestamp_get64__E=_xdc_runtime_Timestamp_get64__F
    --symbol_map _xdc_runtime_Memory_alloc__E=_xdc_runtime_Memory_alloc__F
    --symbol_map _xdc_runtime_Error_raiseX__E=_xdc_runtime_Error_raiseX__F
    --symbol_map _xdc_runtime_LoggerBuf_setFilterLevel__E=_xdc_runtime_LoggerBuf_setFilterLevel__F
    --symbol_map _xdc_runtime_LoggerBuf_enable__E=_xdc_runtime_LoggerBuf_enable__F
    --symbol_map _xdc_runtime_LoggerBuf_getNextEntry__E=_xdc_runtime_LoggerBuf_getNextEntry__F
    --symbol_map _xdc_runtime_Memory_getStats__E=_xdc_runtime_Memory_getStats__F
    --symbol_map _xdc_runtime_Error_init__E=_xdc_runtime_Error_init__F
    --symbol_map _xdc_runtime_Registry_findByName__E=_xdc_runtime_Registry_findByName__F
    --symbol_map _xdc_runtime_Log_doPrint__E=_xdc_runtime_Log_doPrint__F
    --symbol_map _xdc_runtime_Memory_getMaxDefaultTypeAlign__E=_xdc_runtime_Memory_getMaxDefaultTypeAlign__F
    --symbol_map _xdc_runtime_Text_putLab__E=_xdc_runtime_Text_putLab__F
    --symbol_map _xdc_runtime_Registry_getModuleId__E=_xdc_runtime_Registry_getModuleId__F
    --symbol_map _xdc_runtime_Registry_findById__E=_xdc_runtime_Registry_findById__F
    --symbol_map _xdc_runtime_Gate_enterSystem__E=_xdc_runtime_Gate_enterSystem__F
    --symbol_map _xdc_runtime_Registry_getNextModule__E=_xdc_runtime_Registry_getNextModule__F
    --symbol_map _ti_sysbios_family_c28_Hwi_getStackInfo__E=_ti_sysbios_family_c28_Hwi_getStackInfo__F
    --symbol_map _xdc_runtime_System_printf_va__E=_xdc_runtime_System_printf_va__F
    --symbol_map _ti_sysbios_family_c28_TimestampProvider_startTimer__E=_ti_sysbios_family_c28_TimestampProvider_startTimer__F
    --symbol_map _xdc_runtime_Text_cordText__E=_xdc_runtime_Text_cordText__F
    --symbol_map _ti_sysbios_family_c28_TimestampProvider_rolloverFunc__E=_ti_sysbios_family_c28_TimestampProvider_rolloverFunc__F
    --symbol_map _xdc_runtime_LoggerBuf_disable__E=_xdc_runtime_LoggerBuf_disable__F
    --symbol_map _xdc_runtime_Registry_getModuleName__E=_xdc_runtime_Registry_getModuleName__F
    --symbol_map _ti_sysbios_hal_Hwi_getStackInfo__E=_ti_sysbios_hal_Hwi_getStackInfo__F
    --symbol_map _xdc_runtime_LoggerBuf_flush__E=_xdc_runtime_LoggerBuf_flush__F
    --symbol_map _xdc_runtime_Registry_findByNamePattern__E=_xdc_runtime_Registry_findByNamePattern__F
    --symbol_map _ti_sysbios_gates_GateHwi_query__E=_ti_sysbios_gates_GateHwi_query__F
    --symbol_map _xdc_runtime_LoggerBuf_flushAllInternal__E=_xdc_runtime_LoggerBuf_flushAllInternal__F
    --symbol_map _xdc_runtime_Error_check__E=_xdc_runtime_Error_check__F
    --symbol_map _ti_sysbios_heaps_HeapBuf_getStats__E=_ti_sysbios_heaps_HeapBuf_getStats__F
    --symbol_map _xdc_runtime_System_vsprintf__E=_xdc_runtime_System_vsprintf__F
    --symbol_map _ti_sysbios_family_c28_Timer_setPrescale__E=_ti_sysbios_family_c28_Timer_setPrescale__F
    --symbol_map _xdc_runtime_Text_putSite__E=_xdc_runtime_Text_putSite__F
    --symbol_map _xdc_runtime_System_exit__E=_xdc_runtime_System_exit__F
    --symbol_map _xdc_runtime_Error_print__E=_xdc_runtime_Error_print__F
    --symbol_map _xdc_runtime_System_asprintf_va__E=_xdc_runtime_System_asprintf_va__F
    --symbol_map _xdc_runtime_Registry_addModule__E=_xdc_runtime_Registry_addModule__F
    --symbol_map _xdc_runtime_Timestamp_getFreq__E=_xdc_runtime_Timestamp_getFreq__F
    --symbol_map _xdc_runtime_Registry_isMember__E=_xdc_runtime_Registry_isMember__F
    --symbol_map _xdc_runtime_Error_getCode__E=_xdc_runtime_Error_getCode__F
    --symbol_map _xdc_runtime_SysMin_putch__E=_xdc_runtime_SysMin_putch__F
    --symbol_map _ti_sysbios_family_c28_Timer_getPrescale__E=_ti_sysbios_family_c28_Timer_getPrescale__F
    --symbol_map _ti_sysbios_family_c28_TimestampProvider_get32__E=_ti_sysbios_family_c28_TimestampProvider_get32__F
    --symbol_map _xdc_runtime_SysMin_exit__E=_xdc_runtime_SysMin_exit__F
    --symbol_map _xdc_runtime_Memory_free__E=_xdc_runtime_Memory_free__F
    --symbol_map _xdc_runtime_Startup_rtsDone__E=_xdc_runtime_Startup_rtsDone__F
    --symbol_map _xdc_runtime_Timestamp_get32__E=_xdc_runtime_Timestamp_get32__F
    --symbol_map _ti_sysbios_gates_GateMutex_query__E=_ti_sysbios_gates_GateMutex_query__F
    --symbol_map _xdc_runtime_System_aprintf_va__E=_xdc_runtime_System_aprintf_va__F
    --symbol_map _ti_bios_support_Lck_pend__E=_ti_bios_support_Lck_pend__F
    --symbol_map _xdc_runtime_SysMin_flush__E=_xdc_runtime_SysMin_flush__F
    --symbol_map _xdc_runtime_Gate_leaveSystem__E=_xdc_runtime_Gate_leaveSystem__F
    --symbol_map _ti_bios_support_Sys_error__E=_ti_bios_support_Sys_error__F
    --symbol_map _ti_bios_support_Lck_post__E=_ti_bios_support_Lck_post__F
    --symbol_map _ti_bios_support_Sys_abort__E=_ti_bios_support_Sys_abort__F
    --symbol_map _xdc_runtime_Error_getMsg__E=_xdc_runtime_Error_getMsg__F
    --symbol_map _xdc_runtime_Memory_valloc__E=_xdc_runtime_Memory_valloc__F
    --symbol_map _xdc_runtime_SysMin_ready__E=_xdc_runtime_SysMin_ready__F
    --symbol_map _xdc_runtime_Diags_setMask__E=_xdc_runtime_Diags_setMask__F
    --symbol_map _xdc_runtime_SysMin_abort__E=_xdc_runtime_SysMin_abort__F
    --symbol_map _xdc_runtime_LoggerBuf_write0__E=_xdc_runtime_LoggerBuf_write0__F
    --symbol_map _xdc_runtime_Text_ropeText__E=_xdc_runtime_Text_ropeText__F
    --symbol_map _xdc_runtime_System_avprintf__E=_xdc_runtime_System_avprintf__F
    --symbol_map _xdc_runtime_LoggerBuf_write1__E=_xdc_runtime_LoggerBuf_write1__F
    --symbol_map _xdc_runtime_Error_getId__E=_xdc_runtime_Error_getId__F
    --symbol_map _xdc_runtime_Error_getSite__E=_xdc_runtime_Error_getSite__F
    --symbol_map _xdc_runtime_Memory_calloc__E=_xdc_runtime_Memory_calloc__F
    --symbol_map _xdc_runtime_System_vprintf__E=_xdc_runtime_System_vprintf__F
    --symbol_map _xdc_runtime_LoggerBuf_write2__E=_xdc_runtime_LoggerBuf_write2__F
    --symbol_map _xdc_runtime_Text_putMod__E=_xdc_runtime_Text_putMod__F
    --symbol_map _xdc_runtime_System_atexit__E=_xdc_runtime_System_atexit__F


    /* Elf symbols */
    --symbol_map ___TI_STACK_BASE=__stack
    --symbol_map ___TI_STACK_SIZE=__STACK_SIZE
    --symbol_map ___TI_STATIC_BASE=___bss__
    --symbol_map __c_int00=_c_int00




    --args 0x8
    -heap  0x0
    -stack 0x400

    MEMORY
    {
        PAGE 0: BOOTROM : org = 0x3fe000, len = 0x1fc0
        PAGE 0: SRAM : org = 0x200000, len = 0x20000
        PAGE 0: FLASH : org = 0x300000, len = 0x40000
        PAGE 0: MSARAM : org = 0x0, len = 0x800
        PAGE 0: L47SARAM : org = 0xc000, len = 0x4000
        PAGE 0: L03SARAM : org = 0x8000, len = 0x4000
        PAGE 0: OTP : org = 0x380400, len = 0x400
        PAGE 1: PIEVECT : org = 0xd00, len = 0x100
    }

    /*
     * Linker command file contributions from all loaded packages:
     */

    /* Content from xdc.services.global (null): */

    /* Content from xdc (null): */

    /* Content from xdc.corevers (null): */

    /* Content from xdc.shelf (null): */

    /* Content from xdc.services.spec (null): */

    /* Content from xdc.services.intern.xsr (null): */

    /* Content from xdc.services.intern.gen (null): */

    /* Content from xdc.services.intern.cmd (null): */

    /* Content from xdc.bld (null): */

    /* Content from ti.targets (null): */

    /* Content from xdc.rov (null): */

    /* Content from xdc.runtime (null): */

    /* Content from ti.targets.rts2800 (null): */

    /* Content from ti.sysbios.interfaces (null): */

    /* Content from ti.sysbios.family (null): */

    /* Content from ti.sysbios.hal (null): */

    /* Content from ti.sysbios.misc (null): */

    /* Content from ti.sysbios (null): */

    /* Content from ti.sysbios.knl (null): */

    /* Content from ti.sysbios.family.c28 (null): */

    /* Content from ti.bios.support (undefined): */

    /* Content from xdc.services.getset (null): */

    /* Content from ti.catalog.c2800.init (ti/catalog/c2800/init/linkcmd.xdt): */

    /* Content from ti.sysbios.gates (null): */

    /* Content from ti.sysbios.heaps (null): */

    /* Content from ti.bios (ti/bios/linkcmd.xdt): */
    -u _xdc_runtime_LoggerBuf_Object__table__V
    -u _xdc_runtime_LoggerBuf_Object__table__V
    -u _ti_sysbios_knl_Task_Object__table__V
    -u _ti_sysbios_knl_Task_Object__table__V
    -u _ti_sysbios_knl_Task_Object__table__V
    -u _ti_sysbios_knl_Task_Object__table__V
    -u _ti_sysbios_knl_Mailbox_Object__table__V
    -u _ti_sysbios_knl_Task_Object__table__V


    /* Content from ti.bios.tconf (null): */

    /* Content from xdc.runtime.knl (null): */

    /* Content from ti.sysbios.xdcruntime (null): */

    /* Content from ti.sysbios.utils (null): */

    /* Content from ti.catalog.c2800 (null): */

    /* Content from ti.catalog (null): */

    /* Content from xdc.platform (null): */

    /* Content from xdc.cfg (null): */

    /* Content from ti.platforms.generic (null): */

    /* Content from mbx_ezdsp28335 (null): */

    /* Content from configPkg (null): */


    /*
     * symbolic aliases for numeric constants or static instance objects
     */
    _LOG_system = _xdc_runtime_LoggerBuf_Object__table__V + 0;
    _trace = _xdc_runtime_LoggerBuf_Object__table__V + 18;
    _reader0 = _ti_sysbios_knl_Task_Object__table__V + 0;
    _writer0 = _ti_sysbios_knl_Task_Object__table__V + 36;
    _writer1 = _ti_sysbios_knl_Task_Object__table__V + 72;
    _writer2 = _ti_sysbios_knl_Task_Object__table__V + 108;
    _mbx = _ti_sysbios_knl_Mailbox_Object__table__V + 0;
    _xdc_runtime_Startup__EXECFXN__C = 1;
    _xdc_runtime_Startup__RESETFXN__C = 1;
    _TSK_idle = _ti_sysbios_knl_Task_Object__table__V + 144;

    SECTIONS
    {
        .text: load >> L03SARAM PAGE 0
        .switch: load >> L03SARAM PAGE 0
        .data: load >> L47SARAM PAGE 0
        .cinit: load > L03SARAM PAGE 0
        .bss: load > L47SARAM PAGE 0
        .ebss: load >> L47SARAM PAGE 0
        .econst: load >> L03SARAM PAGE 0
        .const: load >> L03SARAM PAGE 0
        .stack: load > MSARAM PAGE 0
        .sysmem: load > L47SARAM PAGE 0
        .esysmem: load > L47SARAM PAGE 0
        .pinit: load > L03SARAM PAGE 0
        .args: load > L47SARAM PAGE 0 align = 0x4, fill = 0 {_argsize = 0x8; }
        .cio: load >> L47SARAM PAGE 0
        _SRAM$heap: load >> SRAM PAGE 0
        _L47SARAM$heap: load >> L47SARAM PAGE 0
        .ebss:taskStackSection: load >> MSARAM PAGE 0
        xdc.meta: load >> L03SARAM PAGE 0, type = COPY

    }

    ////////////////// mailbox.map

    ******************************************************************************
                 TMS320C2000 Linker PC v6.1.1                      
    ******************************************************************************
    >> Linked Wed Feb 06 15:44:15 2013

    OUTPUT FILE NAME:   <mailbox.out>
    ENTRY POINT SYMBOL: "_c_int00"  address: 0000a0c4


    MEMORY CONFIGURATION

             name            origin    length      used     unused   attr    fill
    ----------------------  --------  ---------  --------  --------  ----  --------
    PAGE 0:
      MSARAM                00000000   00000800  00000502  000002fe  RWIX
      L03SARAM              00008000   00004000  00003dec  00000214  RWIX
      L47SARAM              0000c000   00004000  000011e3  00002e1d  RWIX
      SRAM                  00200000   00020000  00004003  0001bffd  RWIX
      FLASH                 00300000   00040000  00000000  00040000  RWIX
      OTP                   00380400   00000400  00000000  00000400  RWIX
      BOOTROM               003fe000   00001fc0  00000000  00001fc0  RWIX

    PAGE 1:
      PIEVECT               00000d00   00000100  00000000  00000100  RWIX


    SECTION ALLOCATION MAP

     output                                  attributes/
    section   page    origin      length       input sections
    --------  ----  ----------  ----------   ----------------
    .cinit     0    00000000    0000057f     FAILED TO ALLOCATE
    .stack     0    00000000    00000400     FAILED TO ALLOCATE
    .pinit     0    00008000    00000000     UNINITIALIZED

    .econst.1
    *          0    00000000    000014bb     FAILED TO ALLOCATE
    .ebss:taskStackSection
    *          0    00000000    00000500     UNINITIALIZED
                      00000000    00000500     mailbox_p28FP.o28FP (.ebss:taskStackSection)

    .reset     0    00000500    00000002     
                      00000500    00000002     ti.bios.support.a28FP : boot.o28FP (.reset)

    xdc.meta   0    00008000    000000c4     COPY SECTION
                      00008000    000000c4     mailbox_p28FP.o28FP (xdc.meta)

    .text      0    00008000    0000355f     
                      00008000    00000236     ti.targets.rts2800.a28FP : System.o28FP (.text:_xdc_runtime_System_doPrint__I)
                      00008236    00000201     rts2800_fpu32.lib : trgdrv.obj (.text)
                      00008437    000001e2     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_heaps_HeapMem_free__E)
                      00008619    000001d1                   : BIOS.obj (.text:_ti_sysbios_heaps_HeapMem_alloc__E)
                      000087ea    0000013a                   : BIOS.obj (.text:_ti_sysbios_knl_Semaphore_pend__E)
                      00008924    00000116                   : BIOS.obj (.text:_ti_sysbios_heaps_HeapMem_Instance_init__F)
                      00008a3a    00000107     rts2800_fpu32.lib : ll_div.obj (.text)
                      00008b41    000000fb     ti.targets.rts2800.a28FP : Core-mem.o28FP (.text:_xdc_runtime_Core_createObject__I)
                      00008c3c    000000e0     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_Hwi_clearInterrupt__E)
                      00008d1c    000000df     ti.targets.rts2800.a28FP : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_write8__F)
                      00008dfb    000000d8     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_Hwi_disablePIEIER__E)
                      00008ed3    000000d6     rts2800_fpu32.lib : qsort.obj (.text)
                      00008fa9    000000d4     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_Hwi_enablePIEIER__E)
                      0000907d    000000cf                   : BIOS.obj (.text:_ti_sysbios_family_c28_Hwi_dispatchC__I)
                      0000914c    000000c9                   : BIOS.obj (.text:_ti_sysbios_knl_Clock_workFunc__E)
                      00009215    000000c8                   : c28_Hwi_disp.obj (.text:_ti_sysbios_family_c28_Hwi_dispatch)
                      000092dd    000000c0     mailbox_p28FP.o28FP (.text:_xdc_runtime_System_printfExtend__I)
                      0000939d    000000bb     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Clock_Instance_init__F)
                      00009458    000000bb                   : BIOS.obj (.text:_ti_sysbios_knl_Semaphore_post__E)
                      00009513    000000bb     ti.targets.rts2800.a28FP : Error.o28FP (.text:_xdc_runtime_Error_raiseX__F)
                      000095ce    000000b1     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_Hwi_post__E)
                      0000967f    000000af                   : BIOS.obj (.text:_ti_sysbios_knl_Swi_run__I)
                      0000972e    00000095     ti.targets.rts2800.a28FP : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_write4__F)
                      000097c3    0000008e     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Task_schedule__I)
                      00009851    0000008c                   : BIOS.obj (.text:_ti_sysbios_knl_Task_exit__E)
                      000098dd    0000008b                   : BIOS.obj (.text:_ti_sysbios_knl_Task_startCore__E)
                      00009968    00000088                   : BIOS.obj (.text:_ti_sysbios_family_c28_Hwi_enableInterrupt__E)
                      000099f0    00000083                   : BIOS.obj (.text:_ti_sysbios_family_c28_Hwi_disableInterrupt__E)
                      00009a73    00000001                   : BIOS.obj (.text:_nullFunc$0)
                      00009a74    00000083     rts2800_fpu32.lib : ankmsg.obj (.text)
                      00009af7    0000007f     sysbios.a28FP : BIOS.obj (.text:_stopAndClear$49)
                      00009b76    0000007f     ti.targets.rts2800.a28FP : Startup.o28FP (.text:_xdc_runtime_Startup_startMods__I)
                      00009bf5    00000078     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_gates_GateMutex_enter__E)
                      00009c6d    00000078                   : BIOS.obj (.text:_ti_sysbios_knl_Semaphore_Instance_init__F)
                      00009ce5    00000076     mailbox.obj (.text)
                      00009d5b    00000072     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Task_checkStacks__E)
                      00009dcd    00000072                   : BIOS.obj (.text:_ti_sysbios_knl_Task_postInit__I)
                      00009e3f    00000070                   : BIOS.obj (.text:_ti_sysbios_knl_Task_blockI__E)
                      00009eaf    00000070                   : BIOS.obj (.text:_ti_sysbios_knl_Task_unblockI__E)
                      00009f1f    0000006d     ti.targets.rts2800.a28FP : Text.o28FP (.text:_xdc_runtime_Text_putSite__F)
                      00009f8c    0000006c     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Clock_Instance_finalize__F)
                      00009ff8    0000006c                   : BIOS.obj (.text:_ti_sysbios_knl_Swi_schedule__I)
                      0000a064    00000060                   : BIOS.obj (.text:_ti_sysbios_knl_Swi_post__E)
                      0000a0c4    00000058     ti.bios.support.a28FP : boot.o28FP (.text)
                      0000a11c    00000051     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Task_Module_startup__F)
                      0000a16d    00000051     ti.targets.rts2800.a28FP : Core-mem.o28FP (.text:_xdc_runtime_Core_deleteObject__I)
                      0000a1be    00000050     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Mailbox_post__E)
                      0000a20e    0000004e     ti.targets.rts2800.a28FP : Memory.o28FP (.text:_xdc_runtime_Memory_alloc__F)
                      0000a25c    0000004b     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_TimestampProvider_get64__F)
                      0000a2a7    00000049                   : BIOS.obj (.text:_postInit$49)
                      0000a2f0    00000048                   : BIOS.obj (.text:_ti_sysbios_family_c28_Hwi_Module_startup__F)
                      0000a338    00000044                   : BIOS.obj (.text:_ti_sysbios_family_c28_TimestampProvider_Module_startup__F)
                      0000a37c    00000043     ti.targets.rts2800.a28FP : Text.o28FP (.text:_xdc_runtime_Text_putLab__F)
                      0000a3bf    00000042                              : Core-params.o28FP (.text:_xdc_runtime_Core_assignParams__I)
                      0000a401    00000041     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I)
                      0000a442    00000041                   : BIOS.obj (.text:_ti_sysbios_knl_Clock_start__E)
                      0000a483    00000040                   : BIOS.obj (.text:_rtsUnlock$0)
                      0000a4c3    00000040     ti.targets.rts2800.a28FP : System.o28FP (.text:_xdc_runtime_System_formatNum__I)
                      0000a503    0000003f     mailbox_p28FP.o28FP (.text:_xdc_runtime_LoggerBuf_Object__create__S)
                      0000a542    0000003f     ti.targets.rts2800.a28FP : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_setFilterLevel__F)
                      0000a581    0000003e     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_TaskSupport_start__E)
                      0000a5bf    0000003e                   : BIOS.obj (.text:_ti_sysbios_knl_Mailbox_pend__E)
                      0000a5fd    0000003c     ti.targets.rts2800.a28FP : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_getFilterLevel__F)
                      0000a639    0000003a     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Swi_restoreHwi__E)
                      0000a673    00000039                   : BIOS.obj (.text:_ti_sysbios_knl_Mailbox_Module_startup__F)
                      0000a6ac    00000039     ti.targets.rts2800.a28FP : Text.o28FP (.text:_xdc_runtime_Text_visitRope2__I)
                      0000a6e5    00000036     ti.bios.a28FP : log.o28FP (.text:_LOG_printf)
                      0000a71b    00000036     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Clock_logTick__E)
                      0000a751    00000036     ti.targets.rts2800.a28FP : Error.o28FP (.text:_xdc_runtime_Error_print__F)
                      0000a787    00000035                              : Startup.o28FP (.text:_xdc_runtime_Startup_exec__F)
                      0000a7bc    00000034     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_Timer_start__E)
                      0000a7f0    00000034     ti.targets.rts2800.a28FP : Text.o28FP (.text:_xdc_runtime_Text_putMod__F)
                      0000a824    00000033     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_heaps_HeapMem_init__I)
                      0000a857    00000032                   : BIOS.obj (.text:_ti_sysbios_knl_Clock_startI__E)
                      0000a889    00000032     ti.targets.rts2800.a28FP : Assert.o28FP (.text:_xdc_runtime_Assert_raise__I)
                      0000a8bb    00000032                              : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_Instance_init__F)
                      0000a8ed    00000031     mailbox_p28FP.o28FP (.text:__TSK_staticGlue)
                      0000a91e    00000030     mailbox_p28FP.o28FP (.text:_MEM_init)
                      0000a94e    00000030     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_heaps_HeapBuf_Module_startup__F)
                      0000a97e    0000002e     ti.bios.a28FP : sem.o28FP (.text:_SEM_create)
                      0000a9ac    0000002d     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_heaps_HeapMem_getStats__E)
                      0000a9d9    0000002b                   : BIOS.obj (.text:_ti_sysbios_family_c28_Timer_getExpiredCounts64__E)
                      0000aa04    0000002b                   : BIOS.obj (.text:_ti_sysbios_knl_Clock_getTicks__E)
                      0000aa2f    00000028     ti.targets.rts2800.a28FP : SysMin.o28FP (.text:_xdc_runtime_SysMin_flush__F)
                      0000aa57    00000027     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_Timer_getExpiredCounts__E)
                      0000aa7e    00000027     rts2800_fpu32.lib : sinit.obj (.text)
                      0000aaa5    00000026     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_Timer_setPrescale__F)
                      0000aacb    00000026     rts2800_fpu32.lib : atexit.obj (.text)
                      0000aaf1    00000025     sysbios.a28FP : BIOS.obj (.text:_postInit$12)
                      0000ab16    00000025                   : c28_TaskSupport_asm.obj (.text:_ti_sysbios_family_c28_TaskSupport_buildTaskStack)
                      0000ab3b    00000024     mailbox_p28FP.o28FP (.text:_ti_sysbios_knl_Clock_Object__create__S)
                      0000ab5f    00000024     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Idle_run__E)
                      0000ab83    00000022                   : BIOS.obj (.text:_ti_sysbios_knl_Task_allBlockedFunction__I)
                      0000aba5    00000022     ti.targets.rts2800.a28FP : System.o28FP (.text:_xdc_runtime_System_rtsExit__I)
                      0000abc7    00000022     rts2800_fpu32.lib : i_div.obj (.text)
                      0000abe9    00000021     mailbox_p28FP.o28FP (.text:_ti_sysbios_knl_Semaphore_Object__create__S)
                      0000ac0a    00000021     ti.targets.rts2800.a28FP : System.o28FP (.text:_xdc_runtime_System_atexit__F)
                      0000ac2b    00000021     rts2800_fpu32.lib : memcpy_ff.obj (.text)
                      0000ac4c    00000021     sysbios.a28FP : BIOS.obj (.text:ti_sysbios_hal_Hwi_checkStack:_ti_sysbios_hal_Hwi_checkStack)
                      0000ac6d    00000020                   : BIOS.obj (.text:_ti_sysbios_BIOS_errorRaiseHook__I)
                      0000ac8d    00000020     ti.targets.rts2800.a28FP : Text.o28FP (.text:_xdc_runtime_Text_xprintf__I)
                      0000acad    0000001e     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_Hwi_getInterruptFlag__E)
                      0000accb    0000001e     ti.targets.rts2800.a28FP : SysMin.o28FP (.text:_xdc_runtime_SysMin_putch__F)
                      0000ace9    0000001d     sysbios.a28FP : c28_TaskSupport_asm.obj (.text:_ti_sysbios_family_c28_TaskSupport_swap__E)
                      0000ad06    0000001d     mailbox_p28FP.o28FP (.text:_ti_sysbios_gates_GateHwi_Object__create__S)
                      0000ad23    0000001d     mailbox_p28FP.o28FP (.text:_ti_sysbios_gates_GateMutex_Object__create__S)
                      0000ad40    0000001d     mailbox_p28FP.o28FP (.text:_ti_sysbios_heaps_HeapMem_Object__create__S)
                      0000ad5d    0000001d     mailbox_p28FP.o28FP (.text:_ti_sysbios_knl_Queue_Object__create__S)
                      0000ad7a    0000001d     ti.targets.rts2800.a28FP : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_filterOutEvent__I)
                      0000ad97    0000001d     mailbox_p28FP.o28FP (.text:_xdc_runtime_LoggerBuf_write8__E)
                      0000adb4    0000001a     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_gates_GateMutex_Instance_init__F)
                      0000adce    0000001a     ti.targets.rts2800.a28FP : Core-label.o28FP (.text:_xdc_runtime_Core_assignLabel__I)
                      0000ade8    0000001a                              : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_Module_startup__F)
                      0000ae02    0000001a     mailbox_p28FP.o28FP (.text:_xdc_runtime_SysMin_output__I)
                      0000ae1c    0000001a     sysbios.a28FP : BIOS.obj (.text:ti_sysbios_hal_Hwi_initStack:_ti_sysbios_hal_Hwi_initStack)
                      0000ae36    00000019                   : BIOS.obj (.text:_ti_sysbios_BIOS_exit__E)
                      0000ae4f    00000019                   : BIOS.obj (.text:_ti_sysbios_knl_Mailbox_postInit__I)
                      0000ae68    00000019                   : BIOS.obj (.text:_ti_sysbios_knl_Swi_restore__E)
                      0000ae81    00000019     ti.targets.rts2800.a28FP : Memory.o28FP (.text:_xdc_runtime_Memory_valloc__F)
                      0000ae9a    00000019     rts2800_fpu32.lib : args_main.obj (.text)
                      0000aeb3    00000019                       : exit.obj (.text)
                      0000aecc    00000018     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Semaphore_pendTimeout__I)
                      0000aee4    00000018                   : BIOS.obj (.text:_ti_sysbios_knl_Swi_Module_startup__F)
                      0000aefc    00000018     ti.targets.rts2800.a28FP : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_reset__F)
                      0000af14    00000017     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Clock_Module_startup__F)
                      0000af2b    00000017     mailbox_p28FP.o28FP (.text:_ti_sysbios_knl_Clock_doTick__I)
                      0000af42    00000017     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Clock_setupTimerToSkipTicks__E)
                      0000af59    00000017     ti.targets.rts2800.a28FP : SysMin.o28FP (.text:_xdc_runtime_SysMin_abort__F)
                      0000af70    00000017                              : Text.o28FP (.text:_xdc_runtime_Text_printVisFxn__I)
                      0000af87    00000017     rts2800_fpu32.lib : strncmp.obj (.text)
                      0000af9e    00000016     sysbios.a28FP : BIOS.obj (.text:_processVitalTaskFlag$6)
                      0000afb4    00000016     mailbox_p28FP.o28FP (.text:_ti_sysbios_BIOS_exitFunc__I)
                      0000afca    00000016     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_Timer_Module_startup__F)
                      0000afe0    00000016                   : BIOS.obj (.text:_ti_sysbios_family_c28_Timer_startup__E)
                      0000aff6    00000016                   : BIOS.obj (.text:_ti_sysbios_knl_Task_restore__E)
                      0000b00c    00000016     ti.targets.rts2800.a28FP : System.o28FP (.text:_xdc_runtime_System_avprintf__F)
                      0000b022    00000016                              : System.o28FP (.text:_xdc_runtime_System_vprintf__F)
                      0000b038    00000015                              : Text.o28FP (.text:_xdc_runtime_Text_cordText__F)
                      0000b04d    00000014                              : System.o28FP (.text:_xdc_runtime_System_putchar__I)
                      0000b061    00000013     mailbox_p28FP.o28FP (.text:_ti_sysbios_gates_GateMutex_Object__delete__S)
                      0000b074    00000013     mailbox_p28FP.o28FP (.text:_ti_sysbios_knl_Semaphore_Object__delete__S)
                      0000b087    00000012     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_Timer_stop__E)
                      0000b099    00000012     mailbox_p28FP.o28FP (.text:_ti_sysbios_gates_GateHwi_Object__delete__S)
                      0000b0ab    00000012     mailbox_p28FP.o28FP (.text:_ti_sysbios_heaps_HeapMem_Object__delete__S)
                      0000b0bd    00000012     mailbox_p28FP.o28FP (.text:_xdc_runtime_LoggerBuf_Object__delete__S)
                      0000b0cf    00000011     ti.bios.support.a28FP : Sys.o28FP (.text:_ti_bios_support_Sys_abort__F)
                      0000b0e0    00000011     mailbox_p28FP.o28FP (.text:_ti_sysbios_family_c28_Hwi_Object__get__S)
                      0000b0f1    00000010     sysbios.a28FP : BIOS.obj (.text:_rtsLock$0)
                      0000b101    00000010                   : BIOS.obj (.text:_ti_sysbios_knl_Task_restoreHwi__E)
                      0000b111    0000000f     mailbox_p28FP.o28FP (.text:_ti_sysbios_BIOS_startFunc__I)
                      0000b120    0000000f     ti.targets.rts2800.a28FP : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_write2__F)
                      0000b12f    0000000f     mailbox_p28FP.o28FP (.text:_xdc_runtime_LoggerBuf_write4__E)
                      0000b13e    0000000e     mailbox_p28FP.o28FP (.text:_ti_sysbios_knl_Clock_Object__destruct__S)
                      0000b14c    0000000e     mailbox_p28FP.o28FP (.text:_ti_sysbios_knl_Semaphore_Object__destruct__S)
                      0000b15a    0000000e     ti.targets.rts2800.a28FP : Registry.o28FP (.text:_xdc_runtime_Registry_findById__F)
                      0000b168    0000000e                              : SysMin.o28FP (.text:_xdc_runtime_SysMin_Module_startup__F)
                      0000b176    0000000e     rts2800_fpu32.lib : strpbrk.obj (.text)
                      0000b184    0000000d     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_BIOS_registerRTSLock__I)
                      0000b191    0000000d                   : c28_Hwi_asm.obj (.text:_ti_sysbios_family_xxx_Hwi_switchToIsrStack)
                      0000b19e    0000000d     mailbox_p28FP.o28FP (.text:_ti_sysbios_gates_GateHwi_Handle__label__S)
                      0000b1ab    0000000d     mailbox_p28FP.o28FP (.text:_ti_sysbios_gates_GateMutex_Handle__label__S)
                      0000b1b8    0000000d     mailbox_p28FP.o28FP (.text:_ti_sysbios_heaps_HeapMem_Handle__label__S)
                      0000b1c5    0000000d     mailbox_p28FP.o28FP (.text:_ti_sysbios_knl_Clock_Params__init__S)
                      0000b1d2    0000000d     mailbox_p28FP.o28FP (.text:_ti_sysbios_knl_Queue_Object__destruct__S)
                      0000b1df    0000000d     mailbox_p28FP.o28FP (.text:_ti_sysbios_knl_Semaphore_Params__init__S)
                      0000b1ec    0000000d     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Task_enter__I)
                      0000b1f9    0000000d     ti.targets.rts2800.a28FP : Error.o28FP (.text:_xdc_runtime_Error_check__F)
                      0000b206    0000000d     mailbox_p28FP.o28FP (.text:_xdc_runtime_LoggerBuf_Handle__label__S)
                      0000b213    0000000d     ti.targets.rts2800.a28FP : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_write1__F)
                      0000b220    0000000c     mailbox_p28FP.o28FP (.text:_ti_sysbios_family_c28_Hwi_disableIER__E)
                      0000b22c    0000000c     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_gates_GateMutex_leave__E)
                      0000b238    0000000c     mailbox_p28FP.o28FP (.text:_ti_sysbios_heaps_HeapMem_Object__get__S)
                      0000b244    0000000c     mailbox_p28FP.o28FP (.text:_ti_sysbios_knl_Mailbox_Object__get__S)
                      0000b250    0000000c     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Queue_get__E)
                      0000b25c    0000000c                   : BIOS.obj (.text:_ti_sysbios_knl_Queue_put__E)
                      0000b268    0000000c     mailbox_p28FP.o28FP (.text:_ti_sysbios_knl_Swi_Object__get__S)
                      0000b274    0000000c     mailbox_p28FP.o28FP (.text:_ti_sysbios_knl_Task_Object__first__S)
                      0000b280    0000000c     mailbox_p28FP.o28FP (.text:_ti_sysbios_knl_Task_Object__get__S)
                      0000b28c    0000000c     mailbox_p28FP.o28FP (.text:_xdc_runtime_LoggerBuf_Object__get__S)
                      0000b298    0000000c     ti.targets.rts2800.a28FP : Memory.o28FP (.text:_xdc_runtime_Memory_free__F)
                      0000b2a4    0000000c                              : Text.o28FP (.text:_xdc_runtime_Text_ropeText__F)
                      0000b2b0    0000000b     mailbox_p28FP.o28FP (.text:_ti_sysbios_family_c28_Hwi_Module__startupDone__F)
                      0000b2bb    0000000b     mailbox_p28FP.o28FP (.text:_ti_sysbios_family_c28_Hwi_enableIER__E)
                      0000b2c6    0000000b     mailbox_p28FP.o28FP (.text:_ti_sysbios_family_c28_Timer_Module__startupDone__F)
                      0000b2d1    0000000b     mailbox_p28FP.o28FP (.text:_ti_sysbios_hal_Timer_Module__startupDone__F)
                      0000b2dc    0000000b     mailbox_p28FP.o28FP (.text:_ti_sysbios_knl_Queue_Object__get__S)
                      0000b2e7    0000000b     mailbox_p28FP.o28FP (.text:_ti_sysbios_knl_Task_Object__next__S)
                      0000b2f2    0000000b     mailbox_p28FP.o28FP (.text:_ti_sysbios_knl_Task_SupportProxy_start__E)
                      0000b2fd    0000000b     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Task_unblock__E)
                      0000b308    0000000b     ti.targets.rts2800.a28FP : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_Instance_finalize__F)
                      0000b313    0000000b                              : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_write0__F)
                      0000b31e    0000000b     mailbox_p28FP.o28FP (.text:_xdc_runtime_LoggerBuf_write2__E)
                      0000b329    0000000b     ti.targets.rts2800.a28FP : SysMin.o28FP (.text:_xdc_runtime_SysMin_exit__F)
                      0000b334    0000000b                              : System.o28FP (.text:_xdc_runtime_System_abort__F)
                      0000b33f    0000000a     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_family_c28_TaskSupport_checkStack__E)
                      0000b349    0000000a                   : c28_Hwi_asm.obj (.text:_ti_sysbios_family_xxx_Hwi_switchToTaskStack)
                      0000b353    0000000a     rts2800_fpu32.lib : strcmp.obj (.text)
                      0000b35d    0000000a                       : strlen.obj (.text)
                      0000b367    00000009     mailbox_p28FP.o28FP (.text:_ti_sysbios_family_c28_Hwi_restoreIER__E)
                      0000b370    00000009     sysbios.a28FP : c28_TaskSupport_asm.obj (.text:_ti_sysbios_family_c28_TaskSupport_glue)
                      0000b379    00000009                   : BIOS.obj (.text:_ti_sysbios_family_c28_Timer_getPeriod__E)
                      0000b382    00000009                   : BIOS.obj (.text:_ti_sysbios_hal_Hwi_Module_startup__F)
                      0000b38b    00000009                   : BIOS.obj (.text:_ti_sysbios_hal_Timer_Module_startup__F)
                      0000b394    00000009     mailbox_p28FP.o28FP (.text:_ti_sysbios_heaps_HeapBuf_Object__get__S)
                      0000b39d    00000009     ti.targets.rts2800.a28FP : System.o28FP (.text:_xdc_runtime_System_vsprintf__F)
                      0000b3a6    00000009     rts2800_fpu32.lib : _lock.obj (.text)
                      0000b3af    00000009                       : strcpy.obj (.text)
                      0000b3b8    00000008     mailbox_p28FP.o28FP (.text:_SEM_delete)
                      0000b3c0    00000008     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_gates_GateMutex_Instance_finalize__F)
                      0000b3c8    00000008                   : BIOS.obj (.text:_ti_sysbios_knl_Queue_empty__E)
                      0000b3d0    00000008                   : BIOS.obj (.text:_ti_sysbios_knl_Semaphore_Instance_finalize__F)
                      0000b3d8    00000008     mailbox_p28FP.o28FP (.text:_xdc_runtime_IHeap_alloc)
                      0000b3e0    00000008     ti.targets.rts2800.a28FP : Memory.o28FP (.text:_xdc_runtime_Memory_calloc__F)
                      0000b3e8    00000008     mailbox_p28FP.o28FP (.text:_xdc_runtime_Startup_exec__I)
                      0000b3f0    00000008     ti.targets.rts2800.a28FP : SysMin.o28FP (.text:_xdc_runtime_SysMin_ready__F)
                      0000b3f8    00000008     mailbox_p28FP.o28FP (.text:_xdc_runtime_Text_visitRope__I)
                      0000b400    00000007     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_BIOS_setThreadType__E)
                      0000b407    00000007     mailbox_p28FP.o28FP (.text:_ti_sysbios_hal_Timer_TimerProxy_setNextTick__E)
                      0000b40e    00000007     ti.targets.rts2800.a28FP : Error.o28FP (.text:_xdc_runtime_Error_init__F)
                      0000b415    00000007     mailbox_p28FP.o28FP (.text:_xdc_runtime_LoggerBuf_write1__E)
                      0000b41c    00000007     rts2800_fpu32.lib : memset.obj (.text)
                      0000b423    00000006     ti.bios.a28FP : sys_abort.o28FP (.text:_SYS_abort)
                      0000b429    00000006     sysbios.a28FP : c28_IntrinsicsSupport_asm.obj (.text:_ti_sysbios_family_c28_IntrinsicsSupport_maxbit__E)
                      0000b42f    00000006                   : BIOS.obj (.text:_ti_sysbios_family_c28_TimestampProvider_rolloverFunc__F)
                      0000b435    00000006                   : BIOS.obj (.text:_ti_sysbios_family_c28_TimestampProvider_startTimer__F)
                      0000b43b    00000006                   : BIOS.obj (.text:_ti_sysbios_knl_Swi_disable__E)
                      0000b441    00000006                   : BIOS.obj (.text:_ti_sysbios_knl_Task_disable__E)
                      0000b447    00000006     ti.targets.rts2800.a28FP : Gate.o28FP (.text:_xdc_runtime_Gate_enterSystem__F)
                      0000b44d    00000006                              : Gate.o28FP (.text:_xdc_runtime_Gate_leaveSystem__F)
                      0000b453    00000006     mailbox_p28FP.o28FP (.text:_xdc_runtime_System_aprintf__E)
                      0000b459    00000006     ti.targets.rts2800.a28FP : System.o28FP (.text:_xdc_runtime_System_exit__F)
                      0000b45f    00000006     mailbox_p28FP.o28FP (.text:_xdc_runtime_System_printf__E)
                      0000b465    00000005     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_BIOS_start__E)
                      0000b46a    00000005                   : BIOS.obj (.text:_ti_sysbios_family_c28_Hwi_switchFromBootStack__E)
                      0000b46f    00000005                   : BIOS.obj (.text:_ti_sysbios_gates_GateHwi_enter__E)
                      0000b474    00000005     ti.targets.rts2800.a28FP : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_enable__F)
                      0000b479    00000005                              : System.o28FP (.text:_xdc_runtime_System_lastFxn__I)
                      0000b47e    00000004     mailbox_p28FP.o28FP (.text:_ti_sysbios_family_c28_Hwi_disable__E)
                      0000b482    00000004     mailbox_p28FP.o28FP (.text:_ti_sysbios_family_c28_Hwi_enable__E)
                      0000b486    00000004     mailbox_p28FP.o28FP (.text:_ti_sysbios_family_c28_Hwi_startup__E)
                      0000b48a    00000004     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_heaps_HeapMem_isBlocking__E)
                      0000b48e    00000004                   : BIOS.obj (.text:_ti_sysbios_knl_Swi_startup__E)
                      0000b492    00000004                   : BIOS.obj (.text:_ti_sysbios_knl_Task_self__E)
                      0000b496    00000004     mailbox_p28FP.o28FP (.text:_xdc_runtime_IHeap_free)
                      0000b49a    00000004     ti.targets.rts2800.a28FP : LoggerBuf.o28FP (.text:_xdc_runtime_LoggerBuf_disable__F)
                      0000b49e    00000004                              : Memory.o28FP (.text:_xdc_runtime_Memory_getMaxDefaultTypeAlign__F)
                      0000b4a2    00000003     mailbox_p28FP.o28FP (.text:_SEM_pend)
                      0000b4a5    00000003     mailbox_p28FP.o28FP (.text:_SEM_post)
                      0000b4a8    00000003     ti.targets.rts2800.a28FP : xdc_noinit.o28FP (.text:___xdc__init)
                      0000b4ab    00000003     mailbox_p28FP.o28FP (.text:_ti_sysbios_BIOS_RtsGateProxy_enter__E)
                      0000b4ae    00000003     mailbox_p28FP.o28FP (.text:_ti_sysbios_BIOS_RtsGateProxy_leave__E)
                      0000b4b1    00000003     mailbox_p28FP.o28FP (.text:_ti_sysbios_family_c28_Hwi_Module_startup__E)
                      0000b4b4    00000003     sysbios.a28FP : c28_Hwi_asm.obj (.text:_ti_sysbios_family_c28_Hwi_getIFR__I)
                      0000b4b7    00000003     mailbox_p28FP.o28FP (.text:_ti_sysbios_family_c28_Timer_Module_startup__E)
                      0000b4ba    00000003     mailbox_p28FP.o28FP (.text:_ti_sysbios_family_c28_TimestampProvider_Module_startup__E)
                      0000b4bd    00000003     mailbox_p28FP.o28FP (.text:_ti_sysbios_family_c28_TimestampProvider_get64__E)
                      0000b4c0    00000003     mailbox_p28FP.o28FP (.text:_ti_sysbios_family_c28_TimestampProvider_rolloverFunc__E)
                      0000b4c3    00000003     mailbox_p28FP.o28FP (.text:_ti_sysbios_family_c28_TimestampProvider_startTimer__E)
                      0000b4c6    00000003     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_gates_GateHwi_leave__E)
                      0000b4c9    00000003     mailbox_p28FP.o28FP (.text:_ti_sysbios_gates_GateHwi_query__E)
                      0000b4cc    00000003     mailbox_p28FP.o28FP (.text:_ti_sysbios_gates_GateMutex_query__E)
                      0000b4cf    00000003     mailbox_p28FP.o28FP (.text:_ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E)
                      0000b4d2    00000003     mailbox_p28FP.o28FP (.text:_ti_sysbios_hal_Hwi_Module_startup__E)
                      0000b4d5    00000003     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_hal_Hwi_startup__E)
                      0000b4d8    00000003     mailbox_p28FP.o28FP (.text:_ti_sysbios_hal_Timer_Module_startup__E)
                      0000b4db    00000003     mailbox_p28FP.o28FP (.text:_ti_sysbios_hal_Timer_TimerProxy_getExpiredCounts__E)
                      0000b4de    00000003     mailbox_p28FP.o28FP (.text:_ti_sysbios_hal_Timer_TimerProxy_getPeriod__E)
                      0000b4e1    00000003     mailbox_p28FP.o28FP (.text:_ti_sysbios_hal_Timer_TimerProxy_startup__E)
                      0000b4e4    00000003     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_hal_Timer_startup__E)
                      0000b4e7    00000003     mailbox_p28FP.o28FP (.text:_ti_sysbios_heaps_HeapBuf_Module_startup__E)
                      0000b4ea    00000003     mailbox_p28FP.o28FP (.text:_ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E)
                      0000b4ed    00000003     mailbox_p28FP.o28FP (.text:_ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E)
                      0000b4f0    00000003     mailbox_p28FP.o28FP (.text:_ti_sysbios_knl_Clock_Module_startup__E)
                      0000b4f3    00000003     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Idle_loop__E)
                      0000b4f6    00000003     mailbox_p28FP.o28FP (.text:_ti_sysbios_knl_Mailbox_Module_startup__E)
                      0000b4f9    00000003     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Queue_Instance_init__F)
                      0000b4fc    00000003     mailbox_p28FP.o28FP (.text:_ti_sysbios_knl_Swi_Module_startup__E)
                      0000b4ff    00000003     mailbox_p28FP.o28FP (.text:_ti_sysbios_knl_Task_Module_startup__E)
                      0000b502    00000003     mailbox_p28FP.o28FP (.text:_ti_sysbios_knl_Task_SupportProxy_checkStack__E)
                      0000b505    00000003     mailbox_p28FP.o28FP (.text:_ti_sysbios_knl_Task_SupportProxy_swap__E)
                      0000b508    00000003     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_knl_Task_setArg0__E)
                      0000b50b    00000003                   : BIOS.obj (.text:_ti_sysbios_knl_Task_setArg1__E)
                      0000b50e    00000003                   : BIOS.obj (.text:_ti_sysbios_knl_Task_startup__E)
                      0000b511    00000003     mailbox_p28FP.o28FP (.text:_xdc_runtime_Error_check__E)
                      0000b514    00000003     mailbox_p28FP.o28FP (.text:_xdc_runtime_Error_print__E)
                      0000b517    00000003     mailbox_p28FP.o28FP (.text:_xdc_runtime_LoggerBuf_Module_GateProxy_enter__E)
                      0000b51a    00000003     mailbox_p28FP.o28FP (.text:_xdc_runtime_LoggerBuf_Module_GateProxy_leave__E)
                      0000b51d    00000003     mailbox_p28FP.o28FP (.text:_xdc_runtime_LoggerBuf_Module_startup__E)
                      0000b520    00000003     mailbox_p28FP.o28FP (.text:_xdc_runtime_LoggerBuf_disable__E)
                      0000b523    00000003     mailbox_p28FP.o28FP (.text:_xdc_runtime_LoggerBuf_enable__E)
                      0000b526    00000003     mailbox_p28FP.o28FP (.text:_xdc_runtime_LoggerBuf_getFilterLevel__E)
                      0000b529    00000003     mailbox_p28FP.o28FP (.text:_xdc_runtime_LoggerBuf_setFilterLevel__E)
                      0000b52c    00000003     mailbox_p28FP.o28FP (.text:_xdc_runtime_LoggerBuf_write0__E)
                      0000b52f    00000003     mailbox_p28FP.o28FP (.text:_xdc_runtime_SysMin_Module_startup__E)
                      0000b532    00000003     mailbox_p28FP.o28FP (.text:_xdc_runtime_SysMin_abort__E)
                      0000b535    00000003     mailbox_p28FP.o28FP (.text:_xdc_runtime_SysMin_exit__E)
                      0000b538    00000003     mailbox_p28FP.o28FP (.text:_xdc_runtime_SysMin_putch__E)
                      0000b53b    00000003     mailbox_p28FP.o28FP (.text:_xdc_runtime_SysMin_ready__E)
                      0000b53e    00000003     mailbox_p28FP.o28FP (.text:_xdc_runtime_System_Module_GateProxy_enter__E)
                      0000b541    00000003     mailbox_p28FP.o28FP (.text:_xdc_runtime_System_Module_GateProxy_leave__E)
                      0000b544    00000003     mailbox_p28FP.o28FP (.text:_xdc_runtime_System_Module_startup__E)
                      0000b547    00000003     ti.targets.rts2800.a28FP : System.o28FP (.text:_xdc_runtime_System_Module_startup__F)
                      0000b54a    00000003     mailbox_p28FP.o28FP (.text:_xdc_runtime_System_atexit__E)
                      0000b54d    00000003     mailbox_p28FP.o28FP (.text:_xdc_runtime_Text_putLab__E)
                      0000b550    00000003     mailbox_p28FP.o28FP (.text:_xdc_runtime_Text_putSite__E)
                      0000b553    00000002     mailbox_p28FP.o28FP (.text:_ti_sysbios_family_c28_TaskSupport_Module__startupDone__S)
                      0000b555    00000002     sysbios.a28FP : BIOS.obj (.text:_ti_sysbios_gates_GateHwi_query__F)
                      0000b557    00000002                   : BIOS.obj (.text:_ti_sysbios_gates_GateMutex_query__F)
                      0000b559    00000002     ti.targets.rts2800.a28FP : Error.o28FP (.text:_xdc_runtime_Error_getSite__F)
                      0000b55b    00000001     sysbios.a28FP : c28_Hwi_asm.obj (.text:_ti_sysbios_family_c28_Hwi_interruptReturn__I)
                      0000b55c    00000001                   : BIOS.obj (.text:_ti_sysbios_family_c28_Timer_setNextTick__E)
                      0000b55d    00000001                   : BIOS.obj (.text:_ti_sysbios_gates_GateHwi_Instance_init__F)
                      0000b55e    00000001     mailbox_p28FP.o28FP (.text:_xdc_runtime_Startup_reset__I)

    .econst.2
    *          0    0000b560    00000855     
                      0000b560    00000136     sysbios.a28FP : BIOS.obj (.econst:.string)
                      0000b696    00000100     mailbox_p28FP.o28FP (.econst:_ti_sysbios_family_c28_Hwi_vectors)
                      0000b796    000000ca     ti.bios.a28FP : sys_abort.o28FP (.econst:.string)
                      0000b860    0000008a     mailbox_p28FP.o28FP (.econst:.string)
                      0000b8ea    0000006c     mailbox.obj (.econst:.string)
                      0000b956    00000064     mailbox_p28FP.o28FP (.econst:xdc_runtime_Text_nodeTab__A)
                      0000b9ba    00000058     ti.targets.rts2800.a28FP : Error.o28FP (.econst:.string)
                      0000ba12    0000004b                              : Log.o28FP (.econst:.string)
                      0000ba5d    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_BIOS_Module__id__C)
                      0000ba5e    00000045     ti.targets.rts2800.a28FP : Text.o28FP (.econst:.string)
                      0000baa3    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_Module__id__C)
                      0000baa4    0000002a     ti.targets.rts2800.a28FP : Startup.o28FP (.econst:.string)
                      0000bace    0000001f                              : Core-mem.o28FP (.econst:.string)
                      0000baed    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_Module__loggerDefined__C)
                      0000baee    0000001e     mailbox_p28FP.o28FP (.econst:xdc_runtime_LoggerBuf_Module__FXNS__C)
                      0000bb0c    0000001a     mailbox_p28FP.o28FP (.econst:xdc_runtime_Startup_sfxnTab__A)
                      0000bb26    00000014     mailbox_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_Module__FXNS__C)
                      0000bb3a    00000012     mailbox_p28FP.o28FP (.econst:ti_sysbios_gates_GateHwi_Module__FXNS__C)
                      0000bb4c    00000012     mailbox_p28FP.o28FP (.econst:ti_sysbios_gates_GateMutex_Module__FXNS__C)
                      0000bb5e    00000012     mailbox_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_Object__PARAMS__C)
                      0000bb70    00000012     mailbox_p28FP.o28FP (.econst:xdc_runtime_LoggerBuf_Object__PARAMS__C)
                      0000bb82    00000011     ti.targets.rts2800.a28FP : System.o28FP (.econst:_digtohex)
                      0000bb93    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_Object__count__C)
                      0000bb94    00000010     mailbox_p28FP.o28FP (.econst:ti_sysbios_gates_GateHwi_Object__DESC__C)
                      0000bba4    00000010     mailbox_p28FP.o28FP (.econst:ti_sysbios_gates_GateMutex_Object__DESC__C)
                      0000bbb4    00000010     mailbox_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_Object__DESC__C)
                      0000bbc4    00000010     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_Object__DESC__C)
                      0000bbd4    00000010     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_Object__PARAMS__C)
                      0000bbe4    00000010     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Queue_Object__DESC__C)
                      0000bbf4    00000010     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_Object__DESC__C)
                      0000bc04    00000010     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_Object__PARAMS__C)
                      0000bc14    00000010     mailbox_p28FP.o28FP (.econst:xdc_runtime_LoggerBuf_Object__DESC__C)
                      0000bc24    0000000d     mailbox_p28FP.o28FP (.econst:xdc_runtime_Startup_sfxnRts__A)
                      0000bc31    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_zeroLatencyIERMask__C)
                      0000bc32    0000000c     mailbox_p28FP.o28FP (.econst:ti_sysbios_gates_GateHwi_Object__PARAMS__C)
                      0000bc3e    0000000c     mailbox_p28FP.o28FP (.econst:ti_sysbios_gates_GateMutex_Object__PARAMS__C)
                      0000bc4a    0000000c     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Queue_Object__PARAMS__C)
                      0000bc56    0000000c     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Task_hooks__A)
                      0000bc62    00000007     ti.targets.rts2800.a28FP : System.o28FP (.econst:.string)
                      0000bc69    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_family_c28_TaskSupport_Module__id__C)
                      0000bc6a    00000006     mailbox_p28FP.o28FP (.econst:xdc_runtime_Startup_firstFxns__A)
                      0000bc70    00000005     ti.targets.rts2800.a28FP : Assert.o28FP (.econst:.string)
                      0000bc75    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_family_c28_Timer_startupNeeded__C)
                      0000bc76    00000004     ti.targets.rts2800.a28FP : Diags.o28FP (.econst:.string)
                      0000bc7a    00000004     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Idle_coreList__C)
                      0000bc7e    00000004     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Idle_funcList__C)
                      0000bc82    00000004     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Task_hooks__C)
                      0000bc86    00000004     mailbox_p28FP.o28FP (.econst:xdc_runtime_Startup_firstFxns__C)
                      0000bc8a    00000004     mailbox_p28FP.o28FP (.econst:xdc_runtime_Startup_lastFxns__A)
                      0000bc8e    00000004     mailbox_p28FP.o28FP (.econst:xdc_runtime_Startup_lastFxns__C)
                      0000bc92    00000002     mailbox_p28FP.o28FP (.econst:ti_bios_support_Sys_abortFxn__C)
                      0000bc94    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_BIOS_Module__diagsEnabled__C)
                      0000bc96    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_BIOS_Module__diagsIncluded__C)
                      0000bc98    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_BIOS_Module__diagsMask__C)
                      0000bc9a    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_BIOS_installedErrorHook__C)
                      0000bc9c    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_A_badIntNum__C)
                      0000bc9e    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_A_invalidArg__C)
                      0000bca0    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_E_unpluggedInterrupt__C)
                      0000bca2    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_LD_end__C)
                      0000bca4    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_LM_begin__C)
                      0000bca6    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_Module__diagsEnabled__C)
                      0000bca8    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_Module__diagsIncluded__C)
                      0000bcaa    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_Module__diagsMask__C)
                      0000bcac    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_Module__loggerFxn1__C)
                      0000bcae    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_Module__loggerFxn8__C)
                      0000bcb0    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_family_c28_Hwi_Module__loggerObj__C)
                      0000bcb2    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_family_c28_TaskSupport_E_invalidStack__C)
                      0000bcb4    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_family_c28_TimestampProvider_Module__diagsEnabled__C)
                      0000bcb6    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_family_c28_TimestampProvider_Module__diagsIncluded__C)
                      0000bcb8    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_family_c28_TimestampProvider_Module__diagsMask__C)
                      0000bcba    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_gates_GateMutex_A_badContext__C)
                      0000bcbc    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_gates_GateMutex_Instance_State_sem__O)
                      0000bcbe    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_gates_GateMutex_Module__diagsEnabled__C)
                      0000bcc0    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_gates_GateMutex_Module__diagsIncluded__C)
                      0000bcc2    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_gates_GateMutex_Module__diagsMask__C)
                      0000bcc4    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_hal_Hwi_E_stackOverflow__C)
                      0000bcc6    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapBuf_Instance_State_freeList__O)
                      0000bcc8    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_A_align__C)
                      0000bcca    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_A_heapSize__C)
                      0000bccc    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_A_invalidFree__C)
                      0000bcce    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_A_zeroBlock__C)
                      0000bcd0    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_E_memory__C)
                      0000bcd2    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C)
                      0000bcd4    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C)
                      0000bcd6    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_Module__diagsMask__C)
                      0000bcd8    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_Module__gateObj__C)
                      0000bcda    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_A_badThreadType__C)
                      0000bcdc    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_LM_begin__C)
                      0000bcde    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_LM_tick__C)
                      0000bce0    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_LW_delayed__C)
                      0000bce2    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_Module_State_clockQ__O)
                      0000bce4    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_Module__diagsEnabled__C)
                      0000bce6    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_Module__diagsIncluded__C)
                      0000bce8    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_Module__diagsMask__C)
                      0000bcea    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_Module__loggerFxn1__C)
                      0000bcec    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_Module__loggerFxn2__C)
                      0000bcee    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_Module__loggerObj__C)
                      0000bcf0    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Idle_funcList__A)
                      0000bcf2    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Mailbox_Instance_State_dataQue__O)
                      0000bcf4    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Mailbox_Instance_State_dataSem__O)
                      0000bcf6    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Mailbox_Instance_State_freeQue__O)
                      0000bcf8    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Mailbox_Instance_State_freeSem__O)
                      0000bcfa    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_A_badContext__C)
                      0000bcfc    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_A_noEvents__C)
                      0000bcfe    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_A_overflow__C)
                      0000bd00    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_Instance_State_pendQ__O)
                      0000bd02    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_LM_pend__C)
                      0000bd04    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_LM_post__C)
                      0000bd06    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_Module__diagsEnabled__C)
                      0000bd08    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_Module__diagsIncluded__C)
                      0000bd0a    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_Module__diagsMask__C)
                      0000bd0c    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_Module__loggerFxn2__C)
                      0000bd0e    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_Module__loggerFxn4__C)
                      0000bd10    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_Module__loggerObj__C)
                      0000bd12    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Swi_LD_end__C)
                      0000bd14    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Swi_LM_begin__C)
                      0000bd16    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Swi_LM_post__C)
                      0000bd18    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Swi_Module__diagsEnabled__C)
                      0000bd1a    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Swi_Module__diagsIncluded__C)
                      0000bd1c    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Swi_Module__diagsMask__C)
                      0000bd1e    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Swi_Module__loggerFxn1__C)
                      0000bd20    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Swi_Module__loggerFxn4__C)
                      0000bd22    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Swi_Module__loggerObj__C)
                      0000bd24    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Task_E_spOutOfBounds__C)
                      0000bd26    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Task_E_stackOverflow__C)
                      0000bd28    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Task_LD_block__C)
                      0000bd2a    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Task_LD_exit__C)
                      0000bd2c    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Task_LD_ready__C)
                      0000bd2e    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Task_LM_switch__C)
                      0000bd30    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Task_Module_State_inactiveQ__O)
                      0000bd32    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Task_Module_State_terminatedQ__O)
                      0000bd34    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Task_Module__diagsEnabled__C)
                      0000bd36    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Task_Module__diagsIncluded__C)
                      0000bd38    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Task_Module__diagsMask__C)
                      0000bd3a    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Task_Module__loggerFxn2__C)
                      0000bd3c    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Task_Module__loggerFxn4__C)
                      0000bd3e    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Task_Module__loggerObj__C)
                      0000bd40    00000002     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Task_allBlockedFunc__C)
                      0000bd42    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_Assert_E_assertFailed__C)
                      0000bd44    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_Core_A_initializedParams__C)
                      0000bd46    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_Core_Module__diagsEnabled__C)
                      0000bd48    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_Core_Module__diagsIncluded__C)
                      0000bd4a    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_Core_Module__diagsMask__C)
                      0000bd4c    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_Error_E_generic__C)
                      0000bd4e    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_Error_E_memory__C)
                      0000bd50    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_Error_Module__diagsEnabled__C)
                      0000bd52    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_Error_Module__diagsIncluded__C)
                      0000bd54    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_Error_Module__diagsMask__C)
                      0000bd56    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_Error_Module__loggerFxn8__C)
                      0000bd58    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_Error_Module__loggerObj__C)
                      0000bd5a    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_Error_raiseHook__C)
                      0000bd5c    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_IFilterLogger_Interface__BASE__C)
                      0000bd5e    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_IGateProvider_Interface__BASE__C)
                      0000bd60    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_IHeap_Interface__BASE__C)
                      0000bd62    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_ILogger_Interface__BASE__C)
                      0000bd64    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_IModule_Interface__BASE__C)
                      0000bd66    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_Log_L_error__C)
                      0000bd68    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_LoggerBuf_E_badLevel__C)
                      0000bd6a    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_LoggerBuf_Module__gateObj__C)
                      0000bd6c    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_LoggerBuf_statusLogger__C)
                      0000bd6e    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_Memory_defaultHeapInstance__C)
                      0000bd70    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_Startup_execImpl__C)
                      0000bd72    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_Startup_sfxnRts__C)
                      0000bd74    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_Startup_sfxnTab__C)
                      0000bd76    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_SysMin_bufSize__C)
                      0000bd78    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_SysMin_outputFunc__C)
                      0000bd7a    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_System_Module__gateObj__C)
                      0000bd7c    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_System_extendFxn__C)
                      0000bd7e    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_Text_charTab__C)
                      0000bd80    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_Text_nameEmpty__C)
                      0000bd82    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_Text_nameStatic__C)
                      0000bd84    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_Text_nameUnknown__C)
                      0000bd86    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_Text_nodeTab__C)
                      0000bd88    00000002     mailbox_p28FP.o28FP (.econst:xdc_runtime_Text_visitRopeFxn__C)
                      0000bd8a    00000001     ti.bios.a28FP : sem.o28FP (.econst:.string)
                      0000bd8b    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_family_c28_TimestampProvider_Module__id__C)
                      0000bd8c    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_family_c28_TimestampProvider_useClockTimer__C)
                      0000bd8d    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_gates_GateMutex_Module__id__C)
                      0000bd8e    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_hal_Hwi_Module__id__C)
                      0000bd8f    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapBuf_Object__count__C)
                      0000bd90    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapBuf_numConstructedHeaps__C)
                      0000bd91    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_Module__id__C)
                      0000bd92    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_Object__count__C)
                      0000bd93    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_heaps_HeapMem_reqAlign__C)
                      0000bd94    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_Module__id__C)
                      0000bd95    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_Module__loggerDefined__C)
                      0000bd96    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_tickMode__C)
                      0000bd97    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Clock_tickSource__C)
                      0000bd98    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Idle_coreList__A)
                      0000bd99    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Mailbox_Object__count__C)
                      0000bd9a    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_Module__id__C)
                      0000bd9b    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Semaphore_Module__loggerDefined__C)
                      0000bd9c    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Swi_Module__id__C)
                      0000bd9d    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Swi_Module__loggerDefined__C)
                      0000bd9e    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Swi_Object__count__C)
                      0000bd9f    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Task_Module__id__C)
                      0000bda0    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Task_Module__loggerDefined__C)
                      0000bda1    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Task_Object__count__C)
                      0000bda2    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Task_deleteTerminatedTasks__C)
                      0000bda3    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Task_initStackFlag__C)
                      0000bda4    00000001     mailbox_p28FP.o28FP (.econst:ti_sysbios_knl_Task_numConstructedTasks__C)
                      0000bda5    00000001     mailbox_p28FP.o28FP (.econst:xdc_runtime_Core_Module__id__C)
                      0000bda6    00000001     mailbox_p28FP.o28FP (.econst:xdc_runtime_Error_Module__loggerDefined__C)
                      0000bda7    00000001     mailbox_p28FP.o28FP (.econst:xdc_runtime_Error_maxDepth__C)
                      0000bda8    00000001     mailbox_p28FP.o28FP (.econst:xdc_runtime_Error_policy__C)
                      0000bda9    00000001     mailbox_p28FP.o28FP (.econst:xdc_runtime_LoggerBuf_Module__id__C)
                      0000bdaa    00000001     mailbox_p28FP.o28FP (.econst:xdc_runtime_LoggerBuf_Object__count__C)
                      0000bdab    00000001     mailbox_p28FP.o28FP (.econst:xdc_runtime_LoggerBuf_filterByLevel__C)
                      0000bdac    00000001     mailbox_p28FP.o28FP (.econst:xdc_runtime_Main_Module__id__C)
                      0000bdad    00000001     mailbox_p28FP.o28FP (.econst:xdc_runtime_Memory_Module__id__C)
                      0000bdae    00000001     mailbox_p28FP.o28FP (.econst:xdc_runtime_Startup_maxPasses__C)
                      0000bdaf    00000001     mailbox_p28FP.o28FP (.econst:xdc_runtime_SysMin_flushAtExit__C)
                      0000bdb0    00000001     mailbox_p28FP.o28FP (.econst:xdc_runtime_System_maxAtexitHandlers__C)
                      0000bdb1    00000001     mailbox_p28FP.o28FP (.econst:xdc_runtime_Text_charCnt__C)
                      0000bdb2    00000001     mailbox_p28FP.o28FP (.econst:xdc_runtime_Text_isLoaded__C)
                      0000bdb3    00000001     mailbox_p28FP.o28FP (.econst:xdc_runtime_Text_registryModsLastId__C)
                      0000bdb4    00000001     mailbox_p28FP.o28FP (.econst:xdc_runtime_Text_unnamedModsLastId__C)

    .switch    0    0000bdb6    00000038     
                      0000bdb6    00000038     sysbios.a28FP : BIOS.obj (.switch)

    .data      0    0000c000    00000000     UNINITIALIZED

    .bss       0    0000c000    00000000     UNINITIALIZED

    .ebss      0    0000c000    00001078     UNINITIALIZED
                      0000c000    00000f40     mailbox_p28FP.o28FP (.ebss)
                      0000cf40    00000100     rts2800_fpu32.lib : atexit.obj (.ebss)
                      0000d040    0000001e     ti.bios.a28FP : sys_abort.o28FP (.ebss)
                      0000d05e    00000008     rts2800_fpu32.lib : trgdrv.obj (.ebss)
                      0000d066    00000004                       : _lock.obj (.ebss)
                      0000d06a    00000004                       : exit.obj (.ebss)
                      0000d06e    00000004     ti.bios.a28FP : sem.o28FP (.ebss)
                      0000d072    00000003     sysbios.a28FP : BIOS.obj (.ebss)
                      0000d075    00000001     --HOLE--
                      0000d076    00000002     rts2800_fpu32.lib : sinit.obj (.ebss)

    .args      0    0000d078    00000008     
                      0000d078    00000008     --HOLE-- [fill = 0]

    .cio       0    0000d080    00000120     UNINITIALIZED
                      0000d080    00000120     rts2800_fpu32.lib : ankmsg.obj (.cio)

    _L47SARAM$heap
    *          0    0000d1c0    00000043     UNINITIALIZED
                      0000d1c0    00000043     mailbox_p28FP.o28FP (_L47SARAM$heap)

    _SRAM$heap
    *          0    00200000    00004003     UNINITIALIZED
                      00200000    00004003     mailbox_p28FP.o28FP (_SRAM$heap)


    GLOBAL SYMBOLS: SORTED ALPHABETICALLY BY Name

    address    name
    --------   ----
    0000c000   .bss
    ffffffff   .data
    ffffffff   .text
    0000aeb3   C$$EXIT
    00009ac0   C$$IO$$
    0000abc7   I$$DIV
    0000abd8   I$$MOD
    00008a3a   LL$$DIV
    00008a76   LL$$MOD
    00008ab0   ULL$$DIV
    00008adf   ULL$$MOD
    0000c020   _GBL_clkIn
    0000c005   _GBL_procId
    0000c01c   _GIO
    0000c098   _GIO_config
    0000840b   _HOSTclock
    000083e4   _HOSTclose
    000083bc   _HOSTgetenv
    00008374   _HOSTlseek
    00008338   _HOSTopen
    000082fe   _HOSTread
    000082c1   _HOSTrename
    00008295   _HOSTtime
    00008270   _HOSTunlink
    00008236   _HOSTwrite
    0000a6e5   _LOG_printf
    0000c1c0   _LOG_system
    0000aefc   _LoggerBuf_instanceStartup
    0000a91e   _MEM_init
    0000c002   _MEM_tabSize
    0000c01e   _MEM_table
    0000c007   _PIP_tabbeg
    0000c004   _PIP_tablen
    0000c001   _SEG0
    0000c003   _SEG1
    0000d06e   _SEM_ATTRS
    0000a97e   _SEM_create
    0000b423   _SYS_abort
    0000d040   _SYS_errors
    0000c01a   _TRC_R_mask
    0000c0cc   _TSK_ATTRS
    0000c410   _TSK_idle
    0000c300   _TSK_staticGlueTab
    0000d080   __CIOBUF_
    0000c006   __DEV_numStaticDevs
    00000400   __STACK_END
    00000400   __STACK_SIZE
    00000001   __TI_args_main
    0000a8ed   __TSK_staticGlue
    0000807c   ___ASM__
    00008000   ___ISA__
    00008013   ___PLAT__
    00008031   ___TARG__
    00008055   ___TRDR__
    0000aa98   ___add_dtor
    0000cf41   ___atexit_func_id__
    ffffffff   ___binit__
    0000c000   ___bss__
    0000d078   ___c_args__
    00000000   ___cinit__
    ffffffff   ___data__
    ffffffff   ___edata__
    0000c000   ___end__
    ffffffff   ___etext__
    0000ac2b   ___memcpy_ff
    ffffffff   ___pinit__
    ffffffff   ___text__
    0000b4a8   ___xdc__init
    0000c00e   ___xdc__init__addr
    0000ae9a   __args_main
    0000d06a   __cleanup_ptr
    0000d06c   __dtors_ptr
    0000d068   __lock
    0000b3ae   __nop
    0000b3aa   __register_lock
    0000b3a6   __register_unlock
    00000000   __stack
    0000d066   __unlock
    0000aeb3   _abort
    00000008   _argsize
    0000aacb   _atexit
    0000a0c4   _c_int00
    0000aa7e   _call_dtors
    0000d076   _dtors
    0000aeb5   _exit
    00009cff   _main
    0000c200   _mbx
    0000b41c   _memset
    00008edc   _qsort
    00009d00   _reader
    0000c380   _reader0
    00009ac4   _readmsg
    0000b353   _strcmp
    0000b3af   _strcpy
    0000b35d   _strlen
    0000af87   _strncmp
    0000b176   _strpbrk
    0000c02e   _ti_bios_support_Lck_Module__root__V
    0000bc92   _ti_bios_support_Sys_abortFxn__C
    0000b0cf   _ti_bios_support_Sys_abort__F
    0000bc94   _ti_sysbios_BIOS_Module__diagsEnabled__C
    0000bc96   _ti_sysbios_BIOS_Module__diagsIncluded__C
    0000bc98   _ti_sysbios_BIOS_Module__diagsMask__C
    0000ba5d   _ti_sysbios_BIOS_Module__id__C
    0000c0ea   _ti_sysbios_BIOS_Module__state__V
    0000b1ab   _ti_sysbios_BIOS_RtsGateProxy_Handle__label__S
    0000b061   _ti_sysbios_BIOS_RtsGateProxy_Object__delete__S
    0000b4ab   _ti_sysbios_BIOS_RtsGateProxy_enter__E
    0000b4ae   _ti_sysbios_BIOS_RtsGateProxy_leave__E
    0000b4cc   _ti_sysbios_BIOS_RtsGateProxy_query__E
    0000ac6d   _ti_sysbios_BIOS_errorRaiseHook__I
    0000afb4   _ti_sysbios_BIOS_exitFunc__I
    0000ae36   _ti_sysbios_BIOS_exit__E
    0000bc9a   _ti_sysbios_BIOS_installedErrorHook__C
    0000b184   _ti_sysbios_BIOS_registerRTSLock__I
    0000b400   _ti_sysbios_BIOS_setThreadType__E
    0000b111   _ti_sysbios_BIOS_startFunc__I
    0000b465   _ti_sysbios_BIOS_start__E
    0000bc9c   _ti_sysbios_family_c28_Hwi_A_badIntNum__C
    0000bc9e   _ti_sysbios_family_c28_Hwi_A_invalidArg__C
    0000bca0   _ti_sysbios_family_c28_Hwi_E_unpluggedInterrupt__C
    0000bca2   _ti_sysbios_family_c28_Hwi_LD_end__C
    0000bca4   _ti_sysbios_family_c28_Hwi_LM_begin__C
    0000c440   _ti_sysbios_family_c28_Hwi_Module_State_0_dispatchTable__A
    0000bca6   _ti_sysbios_family_c28_Hwi_Module__diagsEnabled__C
    0000bca8   _ti_sysbios_family_c28_Hwi_Module__diagsIncluded__C
    0000bcaa   _ti_sysbios_family_c28_Hwi_Module__diagsMask__C
    0000baa3   _ti_sysbios_family_c28_Hwi_Module__id__C
    0000baed   _ti_sysbios_family_c28_Hwi_Module__loggerDefined__C
    0000bcac   _ti_sysbios_family_c28_Hwi_Module__loggerFxn1__C
    0000bcae   _ti_sysbios_family_c28_Hwi_Module__loggerFxn8__C
    0000bcb0   _ti_sysbios_family_c28_Hwi_Module__loggerObj__C
    0000c02a   _ti_sysbios_family_c28_Hwi_Module__root__V
    0000b2b0   _ti_sysbios_family_c28_Hwi_Module__startupDone__F
    0000b2b0   _ti_sysbios_family_c28_Hwi_Module__startupDone__S
    0000c0a0   _ti_sysbios_family_c28_Hwi_Module__state__V
    0000b4b1   _ti_sysbios_family_c28_Hwi_Module_startup__E
    0000a2f0   _ti_sysbios_family_c28_Hwi_Module_startup__F
    0000bb93   _ti_sysbios_family_c28_Hwi_Object__count__C
    0000b0e0   _ti_sysbios_family_c28_Hwi_Object__get__S
    0000c180   _ti_sysbios_family_c28_Hwi_Object__table__V
    00008c3c   _ti_sysbios_family_c28_Hwi_clearInterrupt__E
    0000b220   _ti_sysbios_family_c28_Hwi_disableIER__E
    000099f0   _ti_sysbios_family_c28_Hwi_disableInterrupt__E
    00008dfb   _ti_sysbios_family_c28_Hwi_disablePIEIER__E
    0000b47e   _ti_sysbios_family_c28_Hwi_disable__E
    0000907d   _ti_sysbios_family_c28_Hwi_dispatchC__I
    0000921d   _ti_sysbios_family_c28_Hwi_dispatchPie
    0000926e   _ti_sysbios_family_c28_Hwi_dispatchTable
    0000b2bb   _ti_sysbios_family_c28_Hwi_enableIER__E
    00009968   _ti_sysbios_family_c28_Hwi_enableInterrupt__E
    00008fa9   _ti_sysbios_family_c28_Hwi_enablePIEIER__E
    0000b482   _ti_sysbios_family_c28_Hwi_enable__E
    0000b4b4   _ti_sysbios_family_c28_Hwi_getIFR__I
    0000acad   _ti_sysbios_family_c28_Hwi_getInterruptFlag__E
    0000b55b   _ti_sysbios_family_c28_Hwi_interruptReturn__I
    000095ce   _ti_sysbios_family_c28_Hwi_post__E
    0000b367   _ti_sysbios_family_c28_Hwi_restoreIER__E
    0000b486   _ti_sysbios_family_c28_Hwi_startup__E
    0000b46a   _ti_sysbios_family_c28_Hwi_switchFromBootStack__E
    0000a401   _ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I
    0000b696   _ti_sysbios_family_c28_Hwi_vectors
    0000bc31   _ti_sysbios_family_c28_Hwi_zeroLatencyIERMask__C
    0000b429   _ti_sysbios_family_c28_IntrinsicsSupport_maxbit__E
    0000bcb2   _ti_sysbios_family_c28_TaskSupport_E_invalidStack__C
    0000bc69   _ti_sysbios_family_c28_TaskSupport_Module__id__C
    0000b553   _ti_sysbios_family_c28_TaskSupport_Module__startupDone__S
    0000ab16   _ti_sysbios_family_c28_TaskSupport_buildTaskStack
    0000b33f   _ti_sysbios_family_c28_TaskSupport_checkStack__E
    0000b370   _ti_sysbios_family_c28_TaskSupport_glue
    0000a581   _ti_sysbios_family_c28_TaskSupport_start__E
    0000ace9   _ti_sysbios_family_c28_TaskSupport_swap__E
    0000c080   _ti_sysbios_family_c28_Timer_Module__root__V
    0000b2c6   _ti_sysbios_family_c28_Timer_Module__startupDone__F
    0000b2c6   _ti_sysbios_family_c28_Timer_Module__startupDone__S
    0000c090   _ti_sysbios_family_c28_Timer_Module__state__V
    0000b4b7   _ti_sysbios_family_c28_Timer_Module_startup__E
    0000afca   _ti_sysbios_family_c28_Timer_Module_startup__F
    0000c240   _ti_sysbios_family_c28_Timer_Object__table__V
    0000a9d9   _ti_sysbios_family_c28_Timer_getExpiredCounts64__E
    0000aa57   _ti_sysbios_family_c28_Timer_getExpiredCounts__E
    0000b379   _ti_sysbios_family_c28_Timer_getPeriod__E
    0000b55c   _ti_sysbios_family_c28_Timer_setNextTick__E
    0000aaa5   _ti_sysbios_family_c28_Timer_setPrescale__F
    0000a7bc   _ti_sysbios_family_c28_Timer_start__E
    0000bc75   _ti_sysbios_family_c28_Timer_startupNeeded__C
    0000afe0   _ti_sysbios_family_c28_Timer_startup__E
    0000b087   _ti_sysbios_family_c28_Timer_stop__E
    0000bcb4   _ti_sysbios_family_c28_TimestampProvider_Module__diagsEnabled__C
    0000bcb6   _ti_sysbios_family_c28_TimestampProvider_Module__diagsIncluded__C
    0000bcb8   _ti_sysbios_family_c28_TimestampProvider_Module__diagsMask__C
    0000bd8b   _ti_sysbios_family_c28_TimestampProvider_Module__id__C
    0000c048   _ti_sysbios_family_c28_TimestampProvider_Module__state__V
    0000b4ba   _ti_sysbios_family_c28_TimestampProvider_Module_startup__E
    0000a338   _ti_sysbios_family_c28_TimestampProvider_Module_startup__F
    0000b4bd   _ti_sysbios_family_c28_TimestampProvider_get64__E
    0000a25c   _ti_sysbios_family_c28_TimestampProvider_get64__F
    0000b4c0   _ti_sysbios_family_c28_TimestampProvider_rolloverFunc__E
    0000b42f   _ti_sysbios_family_c28_TimestampProvider_rolloverFunc__F
    0000b4c3   _ti_sysbios_family_c28_TimestampProvider_startTimer__E
    0000b435   _ti_sysbios_family_c28_TimestampProvider_startTimer__F
    0000bd8c   _ti_sysbios_family_c28_TimestampProvider_useClockTimer__C
    0000b191   _ti_sysbios_family_xxx_Hwi_switchToIsrStack
    0000b349   _ti_sysbios_family_xxx_Hwi_switchToTaskStack
    0000b19e   _ti_sysbios_gates_GateHwi_Handle__label__S
    0000b55d   _ti_sysbios_gates_GateHwi_Instance_init__F
    0000bb3a   _ti_sysbios_gates_GateHwi_Module__FXNS__C
    0000c058   _ti_sysbios_gates_GateHwi_Module__root__V
    0000bb94   _ti_sysbios_gates_GateHwi_Object__DESC__C
    0000bc32   _ti_sysbios_gates_GateHwi_Object__PARAMS__C
    0000ad06   _ti_sysbios_gates_GateHwi_Object__create__S
    0000b099   _ti_sysbios_gates_GateHwi_Object__delete__S
    0000c022   _ti_sysbios_gates_GateHwi_Object__table__V
    0000b46f   _ti_sysbios_gates_GateHwi_enter__E
    0000b4c6   _ti_sysbios_gates_GateHwi_leave__E
    0000b4c9   _ti_sysbios_gates_GateHwi_query__E
    0000b555   _ti_sysbios_gates_GateHwi_query__F
    0000bcba   _ti_sysbios_gates_GateMutex_A_badContext__C
    0000b1ab   _ti_sysbios_gates_GateMutex_Handle__label__S
    0000bcbc   _ti_sysbios_gates_GateMutex_Instance_State_sem__O
    0000b3c0   _ti_sysbios_gates_GateMutex_Instance_finalize__F
    0000adb4   _ti_sysbios_gates_GateMutex_Instance_init__F
    0000bb4c   _ti_sysbios_gates_GateMutex_Module__FXNS__C
    0000bcbe   _ti_sysbios_gates_GateMutex_Module__diagsEnabled__C
    0000bcc0   _ti_sysbios_gates_GateMutex_Module__diagsIncluded__C
    0000bcc2   _ti_sysbios_gates_GateMutex_Module__diagsMask__C
    0000bd8d   _ti_sysbios_gates_GateMutex_Module__id__C
    0000c044   _ti_sysbios_gates_GateMutex_Module__root__V
    0000bba4   _ti_sysbios_gates_GateMutex_Object__DESC__C
    0000bc3e   _ti_sysbios_gates_GateMutex_Object__PARAMS__C
    0000ad23   _ti_sysbios_gates_GateMutex_Object__create__S
    0000b061   _ti_sysbios_gates_GateMutex_Object__delete__S
    0000c140   _ti_sysbios_gates_GateMutex_Object__table__V
    00009bf5   _ti_sysbios_gates_GateMutex_enter__E
    0000b22c   _ti_sysbios_gates_GateMutex_leave__E
    0000b4cc   _ti_sysbios_gates_GateMutex_query__E
    0000b557   _ti_sysbios_gates_GateMutex_query__F
    0000bcc4   _ti_sysbios_hal_Hwi_E_stackOverflow__C
    0000b2b0   _ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S
    0000b47e   _ti_sysbios_hal_Hwi_HwiProxy_disable__E
    0000b482   _ti_sysbios_hal_Hwi_HwiProxy_enable__E
    0000b486   _ti_sysbios_hal_Hwi_HwiProxy_startup__E
    0000b4cf   _ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E
    0000bd8e   _ti_sysbios_hal_Hwi_Module__id__C
    0000c088   _ti_sysbios_hal_Hwi_Module__root__V
    0000b4d2   _ti_sysbios_hal_Hwi_Module_startup__E
    0000b382   _ti_sysbios_hal_Hwi_Module_startup__F
    0000ac4c   _ti_sysbios_hal_Hwi_checkStack
    0000ae1c   _ti_sysbios_hal_Hwi_initStack
    0000b4d5   _ti_sysbios_hal_Hwi_startup__E
    0000c074   _ti_sysbios_hal_Timer_Module__root__V
    0000b2d1   _ti_sysbios_hal_Timer_Module__startupDone__F
    0000b2d1   _ti_sysbios_hal_Timer_Module__startupDone__S
    0000b4d8   _ti_sysbios_hal_Timer_Module_startup__E
    0000b38b   _ti_sysbios_hal_Timer_Module_startup__F
    0000c078   _ti_sysbios_hal_Timer_Object__table__V
    0000b2c6   _ti_sysbios_hal_Timer_TimerProxy_Module__startupDone__S
    0000b4db   _ti_sysbios_hal_Timer_TimerProxy_getExpiredCounts__E
    0000b4de   _ti_sysbios_hal_Timer_TimerProxy_getPeriod__E
    0000b407   _ti_sysbios_hal_Timer_TimerProxy_setNextTick__E
    0000b4e1   _ti_sysbios_hal_Timer_TimerProxy_startup__E
    0000b4e4   _ti_sysbios_hal_Timer_startup__E
    0000bcc6   _ti_sysbios_heaps_HeapBuf_Instance_State_freeList__O
    0000c032   _ti_sysbios_heaps_HeapBuf_Module__root__V
    0000c024   _ti_sysbios_heaps_HeapBuf_Module__state__V
    0000b4e7   _ti_sysbios_heaps_HeapBuf_Module_startup__E
    0000a94e   _ti_sysbios_heaps_HeapBuf_Module_startup__F
    0000bd8f   _ti_sysbios_heaps_HeapBuf_Object__count__C
    0000b394   _ti_sysbios_heaps_HeapBuf_Object__get__S
    0000bd90   _ti_sysbios_heaps_HeapBuf_numConstructedHeaps__C
    0000bcc8   _ti_sysbios_heaps_HeapMem_A_align__C
    0000bcca   _ti_sysbios_heaps_HeapMem_A_heapSize__C
    0000bccc   _ti_sysbios_heaps_HeapMem_A_invalidFree__C
    0000bcce   _ti_sysbios_heaps_HeapMem_A_zeroBlock__C
    0000bcd0   _ti_sysbios_heaps_HeapMem_E_memory__C
    0000b1b8   _ti_sysbios_heaps_HeapMem_Handle__label__S
    00200000   _ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A
    0000d1c0   _ti_sysbios_heaps_HeapMem_Instance_State_1_buf__A
    00008924   _ti_sysbios_heaps_HeapMem_Instance_init__F
    0000b1ab   _ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S
    0000b061   _ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__delete__S
    0000b4ea   _ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E
    0000b4ed   _ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E
    0000b4cc   _ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E
    0000bb26   _ti_sysbios_heaps_HeapMem_Module__FXNS__C
    0000bcd2   _ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C
    0000bcd4   _ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C
    0000bcd6   _ti_sysbios_heaps_HeapMem_Module__diagsMask__C
    0000bcd8   _ti_sysbios_heaps_HeapMem_Module__gateObj__C
    0000bd91   _ti_sysbios_heaps_HeapMem_Module__id__C
    0000c054   _ti_sysbios_heaps_HeapMem_Module__root__V
    0000bbb4   _ti_sysbios_heaps_HeapMem_Object__DESC__C
    0000bb5e   _ti_sysbios_heaps_HeapMem_Object__PARAMS__C
    0000bd92   _ti_sysbios_heaps_HeapMem_Object__count__C
    0000ad40   _ti_sysbios_heaps_HeapMem_Object__create__S
    0000b0ab   _ti_sysbios_heaps_HeapMem_Object__delete__S
    0000b238   _ti_sysbios_heaps_HeapMem_Object__get__S
    0000c128   _ti_sysbios_heaps_HeapMem_Object__table__V
    00008619   _ti_sysbios_heaps_HeapMem_alloc__E
    00008437   _ti_sysbios_heaps_HeapMem_free__E
    0000a9ac   _ti_sysbios_heaps_HeapMem_getStats__E
    0000a824   _ti_sysbios_heaps_HeapMem_init__I
    0000b48a   _ti_sysbios_heaps_HeapMem_isBlocking__E
    0000bd93   _ti_sysbios_heaps_HeapMem_reqAlign__C
    0000bcda   _ti_sysbios_knl_Clock_A_badThreadType__C
    00009f8c   _ti_sysbios_knl_Clock_Instance_finalize__F
    0000939d   _ti_sysbios_knl_Clock_Instance_init__F
    0000bcdc   _ti_sysbios_knl_Clock_LM_begin__C
    0000bcde   _ti_sysbios_knl_Clock_LM_tick__C
    0000bce0   _ti_sysbios_knl_Clock_LW_delayed__C
    0000bce2   _ti_sysbios_knl_Clock_Module_State_clockQ__O
    0000bce4   _ti_sysbios_knl_Clock_Module__diagsEnabled__C
    0000bce6   _ti_sysbios_knl_Clock_Module__diagsIncluded__C
    0000bce8   _ti_sysbios_knl_Clock_Module__diagsMask__C
    0000bd94   _ti_sysbios_knl_Clock_Module__id__C
    0000bd95   _ti_sysbios_knl_Clock_Module__loggerDefined__C
    0000bcea   _ti_sysbios_knl_Clock_Module__loggerFxn1__C
    0000bcec   _ti_sysbios_knl_Clock_Module__loggerFxn2__C
    0000bcee   _ti_sysbios_knl_Clock_Module__loggerObj__C
    0000c068   _ti_sysbios_knl_Clock_Module__root__V
    0000c100   _ti_sysbios_knl_Clock_Module__state__V
    0000b4f0   _ti_sysbios_knl_Clock_Module_startup__E
    0000af14   _ti_sysbios_knl_Clock_Module_startup__F
    0000bbc4   _ti_sysbios_knl_Clock_Object__DESC__C
    0000bbd4   _ti_sysbios_knl_Clock_Object__PARAMS__C
    0000ab3b   _ti_sysbios_knl_Clock_Object__create__S
    0000b13e   _ti_sysbios_knl_Clock_Object__destruct__S
    0000b1c5   _ti_sysbios_knl_Clock_Params__init__S
    0000af2b   _ti_sysbios_knl_Clock_doTick__I
    0000aa04   _ti_sysbios_knl_Clock_getTicks__E
    0000a71b   _ti_sysbios_knl_Clock_logTick__E
    0000af42   _ti_sysbios_knl_Clock_setupTimerToSkipTicks__E
    0000a857   _ti_sysbios_knl_Clock_startI__E
    0000a442   _ti_sysbios_knl_Clock_start__E
    0000bd96   _ti_sysbios_knl_Clock_tickMode__C
    0000bd97   _ti_sysbios_knl_Clock_tickSource__C
    0000914c   _ti_sysbios_knl_Clock_workFunc__E
    0000c060   _ti_sysbios_knl_Event_Module__root__V
    0000bd98   _ti_sysbios_knl_Idle_coreList__A
    0000bc7a   _ti_sysbios_knl_Idle_coreList__C
    0000bcf0   _ti_sysbios_knl_Idle_funcList__A
    0000bc7e   _ti_sysbios_knl_Idle_funcList__C
    0000b4f3   _ti_sysbios_knl_Idle_loop__E
    0000ab5f   _ti_sysbios_knl_Idle_run__E
    0000c0c0   _ti_sysbios_knl_Mailbox_Instance_State_0_allocBuf__A
    0000bcf2   _ti_sysbios_knl_Mailbox_Instance_State_dataQue__O
    0000bcf4   _ti_sysbios_knl_Mailbox_Instance_State_dataSem__O
    0000bcf6   _ti_sysbios_knl_Mailbox_Instance_State_freeQue__O
    0000bcf8   _ti_sysbios_knl_Mailbox_Instance_State_freeSem__O
    0000c084   _ti_sysbios_knl_Mailbox_Module__root__V
    0000b4f6   _ti_sysbios_knl_Mailbox_Module_startup__E
    0000a673   _ti_sysbios_knl_Mailbox_Module_startup__F
    0000bd99   _ti_sysbios_knl_Mailbox_Object__count__C
    0000b244   _ti_sysbios_knl_Mailbox_Object__get__S
    0000c200   _ti_sysbios_knl_Mailbox_Object__table__V
    0000a5bf   _ti_sysbios_knl_Mailbox_pend__E
    0000ae4f   _ti_sysbios_knl_Mailbox_postInit__I
    0000a1be   _ti_sysbios_knl_Mailbox_post__E
    0000b4f9   _ti_sysbios_knl_Queue_Instance_init__F
    0000c070   _ti_sysbios_knl_Queue_Module__root__V
    0000bbe4   _ti_sysbios_knl_Queue_Object__DESC__C
    0000bc4a   _ti_sysbios_knl_Queue_Object__PARAMS__C
    0000ad5d   _ti_sysbios_knl_Queue_Object__create__S
    0000b1d2   _ti_sysbios_knl_Queue_Object__destruct__S
    0000b2dc   _ti_sysbios_knl_Queue_Object__get__S
    0000b3c8   _ti_sysbios_knl_Queue_empty__E
    0000b250   _ti_sysbios_knl_Queue_get__E
    0000b25c   _ti_sysbios_knl_Queue_put__E
    0000bcfa   _ti_sysbios_knl_Semaphore_A_badContext__C
    0000bcfc   _ti_sysbios_knl_Semaphore_A_noEvents__C
    0000bcfe   _ti_sysbios_knl_Semaphore_A_overflow__C
    0000bd00   _ti_sysbios_knl_Semaphore_Instance_State_pendQ__O
    0000b3d0   _ti_sysbios_knl_Semaphore_Instance_finalize__F
    00009c6d   _ti_sysbios_knl_Semaphore_Instance_init__F
    0000bd02   _ti_sysbios_knl_Semaphore_LM_pend__C
    0000bd04   _ti_sysbios_knl_Semaphore_LM_post__C
    0000bd06   _ti_sysbios_knl_Semaphore_Module__diagsEnabled__C
    0000bd08   _ti_sysbios_knl_Semaphore_Module__diagsIncluded__C
    0000bd0a   _ti_sysbios_knl_Semaphore_Module__diagsMask__C
    0000bd9a   _ti_sysbios_knl_Semaphore_Module__id__C
    0000bd9b   _ti_sysbios_knl_Semaphore_Module__loggerDefined__C
    0000bd0c   _ti_sysbios_knl_Semaphore_Module__loggerFxn2__C
    0000bd0e   _ti_sysbios_knl_Semaphore_Module__loggerFxn4__C
    0000bd10   _ti_sysbios_knl_Semaphore_Module__loggerObj__C
    0000c06c   _ti_sysbios_knl_Semaphore_Module__root__V
    0000bbf4   _ti_sysbios_knl_Semaphore_Object__DESC__C
    0000bc04   _ti_sysbios_knl_Semaphore_Object__PARAMS__C
    0000abe9   _ti_sysbios_knl_Semaphore_Object__create__S
    0000b074   _ti_sysbios_knl_Semaphore_Object__delete__S
    0000b14c   _ti_sysbios_knl_Semaphore_Object__destruct__S
    0000b1df   _ti_sysbios_knl_Semaphore_Params__init__S
    0000aecc   _ti_sysbios_knl_Semaphore_pendTimeout__I
    000087ea   _ti_sysbios_knl_Semaphore_pend__E
    00009458   _ti_sysbios_knl_Semaphore_post__E
    0000bd12   _ti_sysbios_knl_Swi_LD_end__C
    0000bd14   _ti_sysbios_knl_Swi_LM_begin__C
    0000bd16   _ti_sysbios_knl_Swi_LM_post__C
    0000c280   _ti_sysbios_knl_Swi_Module_State_0_readyQ__A
    0000bd18   _ti_sysbios_knl_Swi_Module__diagsEnabled__C
    0000bd1a   _ti_sysbios_knl_Swi_Module__diagsIncluded__C
    0000bd1c   _ti_sysbios_knl_Swi_Module__diagsMask__C
    0000bd9c   _ti_sysbios_knl_Swi_Module__id__C
    0000bd9d   _ti_sysbios_knl_Swi_Module__loggerDefined__C
    0000bd1e   _ti_sysbios_knl_Swi_Module__loggerFxn1__C
    0000bd20   _ti_sysbios_knl_Swi_Module__loggerFxn4__C
    0000bd22   _ti_sysbios_knl_Swi_Module__loggerObj__C
    0000c050   _ti_sysbios_knl_Swi_Module__root__V
    0000c0ac   _ti_sysbios_knl_Swi_Module__state__V
    0000b4fc   _ti_sysbios_knl_Swi_Module_startup__E
    0000aee4   _ti_sysbios_knl_Swi_Module_startup__F
    0000bd9e   _ti_sysbios_knl_Swi_Object__count__C
    0000b268   _ti_sysbios_knl_Swi_Object__get__S
    0000c114   _ti_sysbios_knl_Swi_Object__table__V
    0000b43b   _ti_sysbios_knl_Swi_disable__E
    0000a064   _ti_sysbios_knl_Swi_post__E
    0000a639   _ti_sysbios_knl_Swi_restoreHwi__E
    0000ae68   _ti_sysbios_knl_Swi_restore__E
    0000967f   _ti_sysbios_knl_Swi_run__I
    00009ff8   _ti_sysbios_knl_Swi_schedule__I
    0000b48e   _ti_sysbios_knl_Swi_startup__E
    0000bd24   _ti_sysbios_knl_Task_E_spOutOfBounds__C
    0000bd26   _ti_sysbios_knl_Task_E_stackOverflow__C
    0000c014   _ti_sysbios_knl_Task_Instance_State_0_hookEnv__A
    00000100   _ti_sysbios_knl_Task_Instance_State_0_stack__A
    0000c016   _ti_sysbios_knl_Task_Instance_State_1_hookEnv__A
    00000000   _ti_sysbios_knl_Task_Instance_State_1_stack__A
    0000c010   _ti_sysbios_knl_Task_Instance_State_2_hookEnv__A
    00000200   _ti_sysbios_knl_Task_Instance_State_2_stack__A
    0000c012   _ti_sysbios_knl_Task_Instance_State_3_hookEnv__A
    00000400   _ti_sysbios_knl_Task_Instance_State_3_stack__A
    0000c018   _ti_sysbios_knl_Task_Instance_State_4_hookEnv__A
    00000300   _ti_sysbios_knl_Task_Instance_State_4_stack__A
    0000bd28   _ti_sysbios_knl_Task_LD_block__C
    0000bd2a   _ti_sysbios_knl_Task_LD_exit__C
    0000bd2c   _ti_sysbios_knl_Task_LD_ready__C
    0000bd2e   _ti_sysbios_knl_Task_LM_switch__C
    0000c00a   _ti_sysbios_knl_Task_Module_State_0_idleTask__A
    0000c2c0   _ti_sysbios_knl_Task_Module_State_0_readyQ__A
    0000bd30   _ti_sysbios_knl_Task_Module_State_inactiveQ__O
    0000bd32   _ti_sysbios_knl_Task_Module_State_terminatedQ__O
    0000bd34   _ti_sysbios_knl_Task_Module__diagsEnabled__C
    0000bd36   _ti_sysbios_knl_Task_Module__diagsIncluded__C
    0000bd38   _ti_sysbios_knl_Task_Module__diagsMask__C
    0000bd9f   _ti_sysbios_knl_Task_Module__id__C
    0000bda0   _ti_sysbios_knl_Task_Module__loggerDefined__C
    0000bd3a   _ti_sysbios_knl_Task_Module__loggerFxn2__C
    0000bd3c   _ti_sysbios_knl_Task_Module__loggerFxn4__C
    0000bd3e   _ti_sysbios_knl_Task_Module__loggerObj__C
    0000c04c   _ti_sysbios_knl_Task_Module__root__V
    0000c15c   _ti_sysbios_knl_Task_Module__state__V
    0000b4ff   _ti_sysbios_knl_Task_Module_startup__E
    0000a11c   _ti_sysbios_knl_Task_Module_startup__F
    0000bda1   _ti_sysbios_knl_Task_Object__count__C
    0000b274   _ti_sysbios_knl_Task_Object__first__S
    0000b280   _ti_sysbios_knl_Task_Object__get__S
    0000b2e7   _ti_sysbios_knl_Task_Object__next__S
    0000c380   _ti_sysbios_knl_Task_Object__table__V
    0000b553   _ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S
    0000b502   _ti_sysbios_knl_Task_SupportProxy_checkStack__E
    0000b2f2   _ti_sysbios_knl_Task_SupportProxy_start__E
    0000b505   _ti_sysbios_knl_Task_SupportProxy_swap__E
    0000bd40   _ti_sysbios_knl_Task_allBlockedFunc__C
    0000ab83   _ti_sysbios_knl_Task_allBlockedFunction__I
    00009e3f   _ti_sysbios_knl_Task_blockI__E
    00009d5b   _ti_sysbios_knl_Task_checkStacks__E
    0000bda2   _ti_sysbios_knl_Task_deleteTerminatedTasks__C
    0000b441   _ti_sysbios_knl_Task_disable__E
    0000b1ec   _ti_sysbios_knl_Task_enter__I
    00009851   _ti_sysbios_knl_Task_exit__E
    0000bc56   _ti_sysbios_knl_Task_hooks__A
    0000bc82   _ti_sysbios_knl_Task_hooks__C
    0000bda3   _ti_sysbios_knl_Task_initStackFlag__C
    0000bda4   _ti_sysbios_knl_Task_numConstructedTasks__C
    00009dcd   _ti_sysbios_knl_Task_postInit__I
    0000b101   _ti_sysbios_knl_Task_restoreHwi__E
    0000aff6   _ti_sysbios_knl_Task_restore__E
    000097c3   _ti_sysbios_knl_Task_schedule__I
    0000b492   _ti_sysbios_knl_Task_self__E
    0000b508   _ti_sysbios_knl_Task_setArg0__E
    0000b50b   _ti_sysbios_knl_Task_setArg1__E
    000098dd   _ti_sysbios_knl_Task_startCore__E
    0000b50e   _ti_sysbios_knl_Task_startup__E
    00009eaf   _ti_sysbios_knl_Task_unblockI__E
    0000b2fd   _ti_sysbios_knl_Task_unblock__E
    0000c1d2   _trace
    00009a74   _writemsg
    00009d29   _writer
    0000c3a4   _writer0
    0000c3c8   _writer1
    0000c3ec   _writer2
    0000bd42   _xdc_runtime_Assert_E_assertFailed__C
    0000a889   _xdc_runtime_Assert_raise__I
    0000bd44   _xdc_runtime_Core_A_initializedParams__C
    0000bd46   _xdc_runtime_Core_Module__diagsEnabled__C
    0000bd48   _xdc_runtime_Core_Module__diagsIncluded__C
    0000bd4a   _xdc_runtime_Core_Module__diagsMask__C
    0000bda5   _xdc_runtime_Core_Module__id__C
    0000adce   _xdc_runtime_Core_assignLabel__I
    0000a3bf   _xdc_runtime_Core_assignParams__I
    00008b41   _xdc_runtime_Core_createObject__I
    0000a16d   _xdc_runtime_Core_deleteObject__I
    0000bd4c   _xdc_runtime_Error_E_generic__C
    0000bd4e   _xdc_runtime_Error_E_memory__C
    0000bd50   _xdc_runtime_Error_Module__diagsEnabled__C
    0000bd52   _xdc_runtime_Error_Module__diagsIncluded__C
    0000bd54   _xdc_runtime_Error_Module__diagsMask__C
    0000bda6   _xdc_runtime_Error_Module__loggerDefined__C
    0000bd56   _xdc_runtime_Error_Module__loggerFxn8__C
    0000bd58   _xdc_runtime_Error_Module__loggerObj__C
    0000c000   _xdc_runtime_Error_Module__state__V
    0000b511   _xdc_runtime_Error_check__E
    0000b1f9   _xdc_runtime_Error_check__F
    0000b559   _xdc_runtime_Error_getSite__F
    0000b40e   _xdc_runtime_Error_init__F
    0000bda7   _xdc_runtime_Error_maxDepth__C
    0000bda8   _xdc_runtime_Error_policy__C
    0000b514   _xdc_runtime_Error_print__E
    0000a751   _xdc_runtime_Error_print__F
    0000bd5a   _xdc_runtime_Error_raiseHook__C
    00009513   _xdc_runtime_Error_raiseX__F
    0000b447   _xdc_runtime_Gate_enterSystem__F
    0000b44d   _xdc_runtime_Gate_leaveSystem__F
    0000bd5c   _xdc_runtime_IFilterLogger_Interface__BASE__C
    0000bd5e   _xdc_runtime_IGateProvider_Interface__BASE__C
    0000bd60   _xdc_runtime_IHeap_Interface__BASE__C
    0000bd62   _xdc_runtime_ILogger_Interface__BASE__C
    0000bd64   _xdc_runtime_IModule_Interface__BASE__C
    0000bd66   _xdc_runtime_Log_L_error__C
    0000bd68   _xdc_runtime_LoggerBuf_E_badLevel__C
    0000b206   _xdc_runtime_LoggerBuf_Handle__label__S
    0000cb40   _xdc_runtime_LoggerBuf_Instance_State_0_entryArr__A
    0000c540   _xdc_runtime_LoggerBuf_Instance_State_1_entryArr__A
    0000b308   _xdc_runtime_LoggerBuf_Instance_finalize__F
    0000a8bb   _xdc_runtime_LoggerBuf_Instance_init__F
    0000b19e   _xdc_runtime_LoggerBuf_Module_GateProxy_Handle__label__S
    0000b099   _xdc_runtime_LoggerBuf_Module_GateProxy_Object__delete__S
    0000b517   _xdc_runtime_LoggerBuf_Module_GateProxy_enter__E
    0000b51a   _xdc_runtime_LoggerBuf_Module_GateProxy_leave__E
    0000b4c9   _xdc_runtime_LoggerBuf_Module_GateProxy_query__E
    0000baee   _xdc_runtime_LoggerBuf_Module__FXNS__C
    0000bd6a   _xdc_runtime_LoggerBuf_Module__gateObj__C
    0000bda9   _xdc_runtime_LoggerBuf_Module__id__C
    0000c05c   _xdc_runtime_LoggerBuf_Module__root__V
    0000c026   _xdc_runtime_LoggerBuf_Module__state__V
    0000b51d   _xdc_runtime_LoggerBuf_Module_startup__E
    0000ade8   _xdc_runtime_LoggerBuf_Module_startup__F
    0000bc14   _xdc_runtime_LoggerBuf_Object__DESC__C
    0000bb70   _xdc_runtime_LoggerBuf_Object__PARAMS__C
    0000bdaa   _xdc_runtime_LoggerBuf_Object__count__C
    0000a503   _xdc_runtime_LoggerBuf_Object__create__S
    0000b0bd   _xdc_runtime_LoggerBuf_Object__delete__S
    0000b28c   _xdc_runtime_LoggerBuf_Object__get__S
    0000c1c0   _xdc_runtime_LoggerBuf_Object__table__V
    0000b4bd   _xdc_runtime_LoggerBuf_TimestampProxy_get64__E
    0000b520   _xdc_runtime_LoggerBuf_disable__E
    0000b49a   _xdc_runtime_LoggerBuf_disable__F
    0000b523   _xdc_runtime_LoggerBuf_enable__E
    0000b474   _xdc_runtime_LoggerBuf_enable__F
    0000bdab   _xdc_runtime_LoggerBuf_filterByLevel__C
    0000ad7a   _xdc_runtime_LoggerBuf_filterOutEvent__I
    0000b526   _xdc_runtime_LoggerBuf_getFilterLevel__E
    0000a5fd   _xdc_runtime_LoggerBuf_getFilterLevel__F
    0000aefc   _xdc_runtime_LoggerBuf_reset__F
    0000b529   _xdc_runtime_LoggerBuf_setFilterLevel__E
    0000a542   _xdc_runtime_LoggerBuf_setFilterLevel__F
    0000bd6c   _xdc_runtime_LoggerBuf_statusLogger__C
    0000b52c   _xdc_runtime_LoggerBuf_write0__E
    0000b313   _xdc_runtime_LoggerBuf_write0__F
    0000b415   _xdc_runtime_LoggerBuf_write1__E
    0000b213   _xdc_runtime_LoggerBuf_write1__F
    0000b31e   _xdc_runtime_LoggerBuf_write2__E
    0000b120   _xdc_runtime_LoggerBuf_write2__F
    0000b12f   _xdc_runtime_LoggerBuf_write4__E
    0000972e   _xdc_runtime_LoggerBuf_write4__F
    0000ad97   _xdc_runtime_LoggerBuf_write8__E
    00008d1c   _xdc_runtime_LoggerBuf_write8__F
    0000b19e   _xdc_runtime_Main_Module_GateProxy_Handle__label__S
    0000b099   _xdc_runtime_Main_Module_GateProxy_Object__delete__S
    0000b4c9   _xdc_runtime_Main_Module_GateProxy_query__E
    0000bdac   _xdc_runtime_Main_Module__id__C
    0000b1b8   _xdc_runtime_Memory_HeapProxy_Handle__label__S
    0000b0ab   _xdc_runtime_Memory_HeapProxy_Object__delete__S
    0000b3d8   _xdc_runtime_Memory_HeapProxy_alloc__E
    0000b496   _xdc_runtime_Memory_HeapProxy_free__E
    0000bdad   _xdc_runtime_Memory_Module__id__C
    0000c00c   _xdc_runtime_Memory_Module__state__V
    0000a20e   _xdc_runtime_Memory_alloc__F
    0000b3e0   _xdc_runtime_Memory_calloc__F
    0000bd6e   _xdc_runtime_Memory_defaultHeapInstance__C
    0000b298   _xdc_runtime_Memory_free__F
    0000b49e   _xdc_runtime_Memory_getMaxDefaultTypeAlign__F
    0000ae81   _xdc_runtime_Memory_valloc__F
    0000c040   _xdc_runtime_Registry_Module__state__V
    0000b15a   _xdc_runtime_Registry_findById__F
    0000c08c   _xdc_runtime_Startup_Module__state__V
    00000001   _xdc_runtime_Startup__EXECFXN__C
    00000001   _xdc_runtime_Startup__RESETFXN__C
    0000bd70   _xdc_runtime_Startup_execImpl__C
    0000a787   _xdc_runtime_Startup_exec__F
    0000b3e8   _xdc_runtime_Startup_exec__I
    0000bc6a   _xdc_runtime_Startup_firstFxns__A
    0000bc86   _xdc_runtime_Startup_firstFxns__C
    0000bc8a   _xdc_runtime_Startup_lastFxns__A
    0000bc8e   _xdc_runtime_Startup_lastFxns__C
    0000bdae   _xdc_runtime_Startup_maxPasses__C
    0000b55e   _xdc_runtime_Startup_reset__I
    0000bc24   _xdc_runtime_Startup_sfxnRts__A
    0000bd72   _xdc_runtime_Startup_sfxnRts__C
    0000bb0c   _xdc_runtime_Startup_sfxnTab__A
    0000bd74   _xdc_runtime_Startup_sfxnTab__C
    00009b76   _xdc_runtime_Startup_startMods__I
    0000c740   _xdc_runtime_SysMin_Module_State_0_outbuf__A
    0000c07c   _xdc_runtime_SysMin_Module__state__V
    0000b52f   _xdc_runtime_SysMin_Module_startup__E
    0000b168   _xdc_runtime_SysMin_Module_startup__F
    0000b532   _xdc_runtime_SysMin_abort__E
    0000af59   _xdc_runtime_SysMin_abort__F
    0000bd76   _xdc_runtime_SysMin_bufSize__C
    0000b535   _xdc_runtime_SysMin_exit__E
    0000b329   _xdc_runtime_SysMin_exit__F
    0000bdaf   _xdc_runtime_SysMin_flushAtExit__C
    0000aa2f   _xdc_runtime_SysMin_flush__F
    0000bd78   _xdc_runtime_SysMin_outputFunc__C
    0000ae02   _xdc_runtime_SysMin_output__I
    0000b538   _xdc_runtime_SysMin_putch__E
    0000accb   _xdc_runtime_SysMin_putch__F
    0000b53b   _xdc_runtime_SysMin_ready__E
    0000b3f0   _xdc_runtime_SysMin_ready__F
    0000b19e   _xdc_runtime_System_Module_GateProxy_Handle__label__S
    0000b099   _xdc_runtime_System_Module_GateProxy_Object__delete__S
    0000b53e   _xdc_runtime_System_Module_GateProxy_enter__E
    0000b541   _xdc_runtime_System_Module_GateProxy_leave__E
    0000b4c9   _xdc_runtime_System_Module_GateProxy_query__E
    0000c0da   _xdc_runtime_System_Module_State_0_atexitHandlers__A
    0000bd7a   _xdc_runtime_System_Module__gateObj__C
    0000c036   _xdc_runtime_System_Module__state__V
    0000b544   _xdc_runtime_System_Module_startup__E
    0000b547   _xdc_runtime_System_Module_startup__F
    0000b532   _xdc_runtime_System_SupportProxy_abort__E
    0000b535   _xdc_runtime_System_SupportProxy_exit__E
    0000b538   _xdc_runtime_System_SupportProxy_putch__E
    0000b53b   _xdc_runtime_System_SupportProxy_ready__E
    0000b334   _xdc_runtime_System_abort__F
    0000b453   _xdc_runtime_System_aprintf__E
    0000b00c   _xdc_runtime_System_aprintf_va__F
    0000b54a   _xdc_runtime_System_atexit__E
    0000ac0a   _xdc_runtime_System_atexit__F
    0000b00c   _xdc_runtime_System_avprintf__F
    00008000   _xdc_runtime_System_doPrint__I
    0000b459   _xdc_runtime_System_exit__F
    0000bd7c   _xdc_runtime_System_extendFxn__C
    0000a4c3   _xdc_runtime_System_formatNum__I
    0000b479   _xdc_runtime_System_lastFxn__I
    0000bdb0   _xdc_runtime_System_maxAtexitHandlers__C
    000092dd   _xdc_runtime_System_printfExtend__I
    0000b45f   _xdc_runtime_System_printf__E
    0000b022   _xdc_runtime_System_printf_va__F
    0000b04d   _xdc_runtime_System_putchar__I
    0000aba5   _xdc_runtime_System_rtsExit__I
    0000b39d   _xdc_runtime_System_sprintf_va__F
    0000b022   _xdc_runtime_System_vprintf__F
    0000b39d   _xdc_runtime_System_vsprintf__F
    0000c064   _xdc_runtime_Text_Module__state__V
    0000bdb1   _xdc_runtime_Text_charCnt__C
    00000000   _xdc_runtime_Text_charTab__A
    0000bd7e   _xdc_runtime_Text_charTab__C
    0000b038   _xdc_runtime_Text_cordText__F
    0000bdb2   _xdc_runtime_Text_isLoaded__C
    0000bd80   _xdc_runtime_Text_nameEmpty__C
    0000bd82   _xdc_runtime_Text_nameStatic__C
    0000bd84   _xdc_runtime_Text_nameUnknown__C
    0000b956   _xdc_runtime_Text_nodeTab__A
    0000bd86   _xdc_runtime_Text_nodeTab__C
    0000af70   _xdc_runtime_Text_printVisFxn__I
    0000b54d   _xdc_runtime_Text_putLab__E
    0000a37c   _xdc_runtime_Text_putLab__F
    0000a7f0   _xdc_runtime_Text_putMod__F
    0000b550   _xdc_runtime_Text_putSite__E
    00009f1f   _xdc_runtime_Text_putSite__F
    0000bdb3   _xdc_runtime_Text_registryModsLastId__C
    0000b2a4   _xdc_runtime_Text_ropeText__F
    0000bdb4   _xdc_runtime_Text_unnamedModsLastId__C
    0000a6ac   _xdc_runtime_Text_visitRope2__I
    0000bd88   _xdc_runtime_Text_visitRopeFxn__C
    0000b3f8   _xdc_runtime_Text_visitRope__I
    0000ac8d   _xdc_runtime_Text_xprintf__I
    0000b4bd   _xdc_runtime_Timestamp_SupportProxy_get64__E
    ffffffff   binit
    00000000   cinit
    ffffffff   edata
    0000c000   end
    ffffffff   etext
    ffffffff   pinit


    GLOBAL SYMBOLS: SORTED BY Symbol Address

    address    name
    --------   ----
    00000000   ___cinit__
    00000000   __stack
    00000000   _ti_sysbios_knl_Task_Instance_State_1_stack__A
    00000000   _xdc_runtime_Text_charTab__A
    00000000   cinit
    00000001   __TI_args_main
    00000001   _xdc_runtime_Startup__EXECFXN__C
    00000001   _xdc_runtime_Startup__RESETFXN__C
    00000008   _argsize
    00000100   _ti_sysbios_knl_Task_Instance_State_0_stack__A
    00000200   _ti_sysbios_knl_Task_Instance_State_2_stack__A
    00000300   _ti_sysbios_knl_Task_Instance_State_4_stack__A
    00000400   __STACK_END
    00000400   __STACK_SIZE
    00000400   _ti_sysbios_knl_Task_Instance_State_3_stack__A
    00008000   ___ISA__
    00008000   _xdc_runtime_System_doPrint__I
    00008013   ___PLAT__
    00008031   ___TARG__
    00008055   ___TRDR__
    0000807c   ___ASM__
    00008236   _HOSTwrite
    00008270   _HOSTunlink
    00008295   _HOSTtime
    000082c1   _HOSTrename
    000082fe   _HOSTread
    00008338   _HOSTopen
    00008374   _HOSTlseek
    000083bc   _HOSTgetenv
    000083e4   _HOSTclose
    0000840b   _HOSTclock
    00008437   _ti_sysbios_heaps_HeapMem_free__E
    00008619   _ti_sysbios_heaps_HeapMem_alloc__E
    000087ea   _ti_sysbios_knl_Semaphore_pend__E
    00008924   _ti_sysbios_heaps_HeapMem_Instance_init__F
    00008a3a   LL$$DIV
    00008a76   LL$$MOD
    00008ab0   ULL$$DIV
    00008adf   ULL$$MOD
    00008b41   _xdc_runtime_Core_createObject__I
    00008c3c   _ti_sysbios_family_c28_Hwi_clearInterrupt__E
    00008d1c   _xdc_runtime_LoggerBuf_write8__F
    00008dfb   _ti_sysbios_family_c28_Hwi_disablePIEIER__E
    00008edc   _qsort
    00008fa9   _ti_sysbios_family_c28_Hwi_enablePIEIER__E
    0000907d   _ti_sysbios_family_c28_Hwi_dispatchC__I
    0000914c   _ti_sysbios_knl_Clock_workFunc__E
    0000921d   _ti_sysbios_family_c28_Hwi_dispatchPie
    0000926e   _ti_sysbios_family_c28_Hwi_dispatchTable
    000092dd   _xdc_runtime_System_printfExtend__I
    0000939d   _ti_sysbios_knl_Clock_Instance_init__F
    00009458   _ti_sysbios_knl_Semaphore_post__E
    00009513   _xdc_runtime_Error_raiseX__F
    000095ce   _ti_sysbios_family_c28_Hwi_post__E
    0000967f   _ti_sysbios_knl_Swi_run__I
    0000972e   _xdc_runtime_LoggerBuf_write4__F
    000097c3   _ti_sysbios_knl_Task_schedule__I
    00009851   _ti_sysbios_knl_Task_exit__E
    000098dd   _ti_sysbios_knl_Task_startCore__E
    00009968   _ti_sysbios_family_c28_Hwi_enableInterrupt__E
    000099f0   _ti_sysbios_family_c28_Hwi_disableInterrupt__E
    00009a74   _writemsg
    00009ac0   C$$IO$$
    00009ac4   _readmsg
    00009b76   _xdc_runtime_Startup_startMods__I
    00009bf5   _ti_sysbios_gates_GateMutex_enter__E
    00009c6d   _ti_sysbios_knl_Semaphore_Instance_init__F
    00009cff   _main
    00009d00   _reader
    00009d29   _writer
    00009d5b   _ti_sysbios_knl_Task_checkStacks__E
    00009dcd   _ti_sysbios_knl_Task_postInit__I
    00009e3f   _ti_sysbios_knl_Task_blockI__E
    00009eaf   _ti_sysbios_knl_Task_unblockI__E
    00009f1f   _xdc_runtime_Text_putSite__F
    00009f8c   _ti_sysbios_knl_Clock_Instance_finalize__F
    00009ff8   _ti_sysbios_knl_Swi_schedule__I
    0000a064   _ti_sysbios_knl_Swi_post__E
    0000a0c4   _c_int00
    0000a11c   _ti_sysbios_knl_Task_Module_startup__F
    0000a16d   _xdc_runtime_Core_deleteObject__I
    0000a1be   _ti_sysbios_knl_Mailbox_post__E
    0000a20e   _xdc_runtime_Memory_alloc__F
    0000a25c   _ti_sysbios_family_c28_TimestampProvider_get64__F
    0000a2f0   _ti_sysbios_family_c28_Hwi_Module_startup__F
    0000a338   _ti_sysbios_family_c28_TimestampProvider_Module_startup__F
    0000a37c   _xdc_runtime_Text_putLab__F
    0000a3bf   _xdc_runtime_Core_assignParams__I
    0000a401   _ti_sysbios_family_c28_Hwi_unPluggedInterrupt__I
    0000a442   _ti_sysbios_knl_Clock_start__E
    0000a4c3   _xdc_runtime_System_formatNum__I
    0000a503   _xdc_runtime_LoggerBuf_Object__create__S
    0000a542   _xdc_runtime_LoggerBuf_setFilterLevel__F
    0000a581   _ti_sysbios_family_c28_TaskSupport_start__E
    0000a5bf   _ti_sysbios_knl_Mailbox_pend__E
    0000a5fd   _xdc_runtime_LoggerBuf_getFilterLevel__F
    0000a639   _ti_sysbios_knl_Swi_restoreHwi__E
    0000a673   _ti_sysbios_knl_Mailbox_Module_startup__F
    0000a6ac   _xdc_runtime_Text_visitRope2__I
    0000a6e5   _LOG_printf
    0000a71b   _ti_sysbios_knl_Clock_logTick__E
    0000a751   _xdc_runtime_Error_print__F
    0000a787   _xdc_runtime_Startup_exec__F
    0000a7bc   _ti_sysbios_family_c28_Timer_start__E
    0000a7f0   _xdc_runtime_Text_putMod__F
    0000a824   _ti_sysbios_heaps_HeapMem_init__I
    0000a857   _ti_sysbios_knl_Clock_startI__E
    0000a889   _xdc_runtime_Assert_raise__I
    0000a8bb   _xdc_runtime_LoggerBuf_Instance_init__F
    0000a8ed   __TSK_staticGlue
    0000a91e   _MEM_init
    0000a94e   _ti_sysbios_heaps_HeapBuf_Module_startup__F
    0000a97e   _SEM_create
    0000a9ac   _ti_sysbios_heaps_HeapMem_getStats__E
    0000a9d9   _ti_sysbios_family_c28_Timer_getExpiredCounts64__E
    0000aa04   _ti_sysbios_knl_Clock_getTicks__E
    0000aa2f   _xdc_runtime_SysMin_flush__F
    0000aa57   _ti_sysbios_family_c28_Timer_getExpiredCounts__E
    0000aa7e   _call_dtors
    0000aa98   ___add_dtor
    0000aaa5   _ti_sysbios_family_c28_Timer_setPrescale__F
    0000aacb   _atexit
    0000ab16   _ti_sysbios_family_c28_TaskSupport_buildTaskStack
    0000ab3b   _ti_sysbios_knl_Clock_Object__create__S
    0000ab5f   _ti_sysbios_knl_Idle_run__E
    0000ab83   _ti_sysbios_knl_Task_allBlockedFunction__I
    0000aba5   _xdc_runtime_System_rtsExit__I
    0000abc7   I$$DIV
    0000abd8   I$$MOD
    0000abe9   _ti_sysbios_knl_Semaphore_Object__create__S
    0000ac0a   _xdc_runtime_System_atexit__F
    0000ac2b   ___memcpy_ff
    0000ac4c   _ti_sysbios_hal_Hwi_checkStack
    0000ac6d   _ti_sysbios_BIOS_errorRaiseHook__I
    0000ac8d   _xdc_runtime_Text_xprintf__I
    0000acad   _ti_sysbios_family_c28_Hwi_getInterruptFlag__E
    0000accb   _xdc_runtime_SysMin_putch__F
    0000ace9   _ti_sysbios_family_c28_TaskSupport_swap__E
    0000ad06   _ti_sysbios_gates_GateHwi_Object__create__S
    0000ad23   _ti_sysbios_gates_GateMutex_Object__create__S
    0000ad40   _ti_sysbios_heaps_HeapMem_Object__create__S
    0000ad5d   _ti_sysbios_knl_Queue_Object__create__S
    0000ad7a   _xdc_runtime_LoggerBuf_filterOutEvent__I
    0000ad97   _xdc_runtime_LoggerBuf_write8__E
    0000adb4   _ti_sysbios_gates_GateMutex_Instance_init__F
    0000adce   _xdc_runtime_Core_assignLabel__I
    0000ade8   _xdc_runtime_LoggerBuf_Module_startup__F
    0000ae02   _xdc_runtime_SysMin_output__I
    0000ae1c   _ti_sysbios_hal_Hwi_initStack
    0000ae36   _ti_sysbios_BIOS_exit__E
    0000ae4f   _ti_sysbios_knl_Mailbox_postInit__I
    0000ae68   _ti_sysbios_knl_Swi_restore__E
    0000ae81   _xdc_runtime_Memory_valloc__F
    0000ae9a   __args_main
    0000aeb3   C$$EXIT
    0000aeb3   _abort
    0000aeb5   _exit
    0000aecc   _ti_sysbios_knl_Semaphore_pendTimeout__I
    0000aee4   _ti_sysbios_knl_Swi_Module_startup__F
    0000aefc   _LoggerBuf_instanceStartup
    0000aefc   _xdc_runtime_LoggerBuf_reset__F
    0000af14   _ti_sysbios_knl_Clock_Module_startup__F
    0000af2b   _ti_sysbios_knl_Clock_doTick__I
    0000af42   _ti_sysbios_knl_Clock_setupTimerToSkipTicks__E
    0000af59   _xdc_runtime_SysMin_abort__F
    0000af70   _xdc_runtime_Text_printVisFxn__I
    0000af87   _strncmp
    0000afb4   _ti_sysbios_BIOS_exitFunc__I
    0000afca   _ti_sysbios_family_c28_Timer_Module_startup__F
    0000afe0   _ti_sysbios_family_c28_Timer_startup__E
    0000aff6   _ti_sysbios_knl_Task_restore__E
    0000b00c   _xdc_runtime_System_aprintf_va__F
    0000b00c   _xdc_runtime_System_avprintf__F
    0000b022   _xdc_runtime_System_printf_va__F
    0000b022   _xdc_runtime_System_vprintf__F
    0000b038   _xdc_runtime_Text_cordText__F
    0000b04d   _xdc_runtime_System_putchar__I
    0000b061   _ti_sysbios_BIOS_RtsGateProxy_Object__delete__S
    0000b061   _ti_sysbios_gates_GateMutex_Object__delete__S
    0000b061   _ti_sysbios_heaps_HeapMem_Module_GateProxy_Object__delete__S
    0000b074   _ti_sysbios_knl_Semaphore_Object__delete__S
    0000b087   _ti_sysbios_family_c28_Timer_stop__E
    0000b099   _ti_sysbios_gates_GateHwi_Object__delete__S
    0000b099   _xdc_runtime_LoggerBuf_Module_GateProxy_Object__delete__S
    0000b099   _xdc_runtime_Main_Module_GateProxy_Object__delete__S
    0000b099   _xdc_runtime_System_Module_GateProxy_Object__delete__S
    0000b0ab   _ti_sysbios_heaps_HeapMem_Object__delete__S
    0000b0ab   _xdc_runtime_Memory_HeapProxy_Object__delete__S
    0000b0bd   _xdc_runtime_LoggerBuf_Object__delete__S
    0000b0cf   _ti_bios_support_Sys_abort__F
    0000b0e0   _ti_sysbios_family_c28_Hwi_Object__get__S
    0000b101   _ti_sysbios_knl_Task_restoreHwi__E
    0000b111   _ti_sysbios_BIOS_startFunc__I
    0000b120   _xdc_runtime_LoggerBuf_write2__F
    0000b12f   _xdc_runtime_LoggerBuf_write4__E
    0000b13e   _ti_sysbios_knl_Clock_Object__destruct__S
    0000b14c   _ti_sysbios_knl_Semaphore_Object__destruct__S
    0000b15a   _xdc_runtime_Registry_findById__F
    0000b168   _xdc_runtime_SysMin_Module_startup__F
    0000b176   _strpbrk
    0000b184   _ti_sysbios_BIOS_registerRTSLock__I
    0000b191   _ti_sysbios_family_xxx_Hwi_switchToIsrStack
    0000b19e   _ti_sysbios_gates_GateHwi_Handle__label__S
    0000b19e   _xdc_runtime_LoggerBuf_Module_GateProxy_Handle__label__S
    0000b19e   _xdc_runtime_Main_Module_GateProxy_Handle__label__S
    0000b19e   _xdc_runtime_System_Module_GateProxy_Handle__label__S
    0000b1ab   _ti_sysbios_BIOS_RtsGateProxy_Handle__label__S
    0000b1ab   _ti_sysbios_gates_GateMutex_Handle__label__S
    0000b1ab   _ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S
    0000b1b8   _ti_sysbios_heaps_HeapMem_Handle__label__S
    0000b1b8   _xdc_runtime_Memory_HeapProxy_Handle__label__S
    0000b1c5   _ti_sysbios_knl_Clock_Params__init__S
    0000b1d2   _ti_sysbios_knl_Queue_Object__destruct__S
    0000b1df   _ti_sysbios_knl_Semaphore_Params__init__S
    0000b1ec   _ti_sysbios_knl_Task_enter__I
    0000b1f9   _xdc_runtime_Error_check__F
    0000b206   _xdc_runtime_LoggerBuf_Handle__label__S
    0000b213   _xdc_runtime_LoggerBuf_write1__F
    0000b220   _ti_sysbios_family_c28_Hwi_disableIER__E
    0000b22c   _ti_sysbios_gates_GateMutex_leave__E
    0000b238   _ti_sysbios_heaps_HeapMem_Object__get__S
    0000b244   _ti_sysbios_knl_Mailbox_Object__get__S
    0000b250   _ti_sysbios_knl_Queue_get__E
    0000b25c   _ti_sysbios_knl_Queue_put__E
    0000b268   _ti_sysbios_knl_Swi_Object__get__S
    0000b274   _ti_sysbios_knl_Task_Object__first__S
    0000b280   _ti_sysbios_knl_Task_Object__get__S
    0000b28c   _xdc_runtime_LoggerBuf_Object__get__S
    0000b298   _xdc_runtime_Memory_free__F
    0000b2a4   _xdc_runtime_Text_ropeText__F
    0000b2b0   _ti_sysbios_family_c28_Hwi_Module__startupDone__F
    0000b2b0   _ti_sysbios_family_c28_Hwi_Module__startupDone__S
    0000b2b0   _ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S
    0000b2bb   _ti_sysbios_family_c28_Hwi_enableIER__E
    0000b2c6   _ti_sysbios_family_c28_Timer_Module__startupDone__F
    0000b2c6   _ti_sysbios_family_c28_Timer_Module__startupDone__S
    0000b2c6   _ti_sysbios_hal_Timer_TimerProxy_Module__startupDone__S
    0000b2d1   _ti_sysbios_hal_Timer_Module__startupDone__F
    0000b2d1   _ti_sysbios_hal_Timer_Module__startupDone__S
    0000b2dc   _ti_sysbios_knl_Queue_Object__get__S
    0000b2e7   _ti_sysbios_knl_Task_Object__next__S
    0000b2f2   _ti_sysbios_knl_Task_SupportProxy_start__E
    0000b2fd   _ti_sysbios_knl_Task_unblock__E
    0000b308   _xdc_runtime_LoggerBuf_Instance_finalize__F
    0000b313   _xdc_runtime_LoggerBuf_write0__F
    0000b31e   _xdc_runtime_LoggerBuf_write2__E
    0000b329   _xdc_runtime_SysMin_exit__F
    0000b334   _xdc_runtime_System_abort__F
    0000b33f   _ti_sysbios_family_c28_TaskSupport_checkStack__E
    0000b349   _ti_sysbios_family_xxx_Hwi_switchToTaskStack
    0000b353   _strcmp
    0000b35d   _strlen
    0000b367   _ti_sysbios_family_c28_Hwi_restoreIER__E
    0000b370   _ti_sysbios_family_c28_TaskSupport_glue
    0000b379   _ti_sysbios_family_c28_Timer_getPeriod__E
    0000b382   _ti_sysbios_hal_Hwi_Module_startup__F
    0000b38b   _ti_sysbios_hal_Timer_Module_startup__F
    0000b394   _ti_sysbios_heaps_HeapBuf_Object__get__S
    0000b39d   _xdc_runtime_System_sprintf_va__F
    0000b39d   _xdc_runtime_System_vsprintf__F
    0000b3a6   __register_unlock
    0000b3aa   __register_lock
    0000b3ae   __nop
    0000b3af   _strcpy
    0000b3c0   _ti_sysbios_gates_GateMutex_Instance_finalize__F
    0000b3c8   _ti_sysbios_knl_Queue_empty__E
    0000b3d0   _ti_sysbios_knl_Semaphore_Instance_finalize__F
    0000b3d8   _xdc_runtime_Memory_HeapProxy_alloc__E
    0000b3e0   _xdc_runtime_Memory_calloc__F
    0000b3e8   _xdc_runtime_Startup_exec__I
    0000b3f0   _xdc_runtime_SysMin_ready__F
    0000b3f8   _xdc_runtime_Text_visitRope__I
    0000b400   _ti_sysbios_BIOS_setThreadType__E
    0000b407   _ti_sysbios_hal_Timer_TimerProxy_setNextTick__E
    0000b40e   _xdc_runtime_Error_init__F
    0000b415   _xdc_runtime_LoggerBuf_write1__E
    0000b41c   _memset
    0000b423   _SYS_abort
    0000b429   _ti_sysbios_family_c28_IntrinsicsSupport_maxbit__E
    0000b42f   _ti_sysbios_family_c28_TimestampProvider_rolloverFunc__F
    0000b435   _ti_sysbios_family_c28_TimestampProvider_startTimer__F
    0000b43b   _ti_sysbios_knl_Swi_disable__E
    0000b441   _ti_sysbios_knl_Task_disable__E
    0000b447   _xdc_runtime_Gate_enterSystem__F
    0000b44d   _xdc_runtime_Gate_leaveSystem__F
    0000b453   _xdc_runtime_System_aprintf__E
    0000b459   _xdc_runtime_System_exit__F
    0000b45f   _xdc_runtime_System_printf__E
    0000b465   _ti_sysbios_BIOS_start__E
    0000b46a   _ti_sysbios_family_c28_Hwi_switchFromBootStack__E
    0000b46f   _ti_sysbios_gates_GateHwi_enter__E
    0000b474   _xdc_runtime_LoggerBuf_enable__F
    0000b479   _xdc_runtime_System_lastFxn__I
    0000b47e   _ti_sysbios_family_c28_Hwi_disable__E
    0000b47e   _ti_sysbios_hal_Hwi_HwiProxy_disable__E
    0000b482   _ti_sysbios_family_c28_Hwi_enable__E
    0000b482   _ti_sysbios_hal_Hwi_HwiProxy_enable__E
    0000b486   _ti_sysbios_family_c28_Hwi_startup__E
    0000b486   _ti_sysbios_hal_Hwi_HwiProxy_startup__E
    0000b48a   _ti_sysbios_heaps_HeapMem_isBlocking__E
    0000b48e   _ti_sysbios_knl_Swi_startup__E
    0000b492   _ti_sysbios_knl_Task_self__E
    0000b496   _xdc_runtime_Memory_HeapProxy_free__E
    0000b49a   _xdc_runtime_LoggerBuf_disable__F
    0000b49e   _xdc_runtime_Memory_getMaxDefaultTypeAlign__F
    0000b4a8   ___xdc__init
    0000b4ab   _ti_sysbios_BIOS_RtsGateProxy_enter__E
    0000b4ae   _ti_sysbios_BIOS_RtsGateProxy_leave__E
    0000b4b1   _ti_sysbios_family_c28_Hwi_Module_startup__E
    0000b4b4   _ti_sysbios_family_c28_Hwi_getIFR__I
    0000b4b7   _ti_sysbios_family_c28_Timer_Module_startup__E
    0000b4ba   _ti_sysbios_family_c28_TimestampProvider_Module_startup__E
    0000b4bd   _ti_sysbios_family_c28_TimestampProvider_get64__E
    0000b4bd   _xdc_runtime_LoggerBuf_TimestampProxy_get64__E
    0000b4bd   _xdc_runtime_Timestamp_SupportProxy_get64__E
    0000b4c0   _ti_sysbios_family_c28_TimestampProvider_rolloverFunc__E
    0000b4c3   _ti_sysbios_family_c28_TimestampProvider_startTimer__E
    0000b4c6   _ti_sysbios_gates_GateHwi_leave__E
    0000b4c9   _ti_sysbios_gates_GateHwi_query__E
    0000b4c9   _xdc_runtime_LoggerBuf_Module_GateProxy_query__E
    0000b4c9   _xdc_runtime_Main_Module_GateProxy_query__E
    0000b4c9   _xdc_runtime_System_Module_GateProxy_query__E
    0000b4cc   _ti_sysbios_BIOS_RtsGateProxy_query__E
    0000b4cc   _ti_sysbios_gates_GateMutex_query__E
    0000b4cc   _ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E
    0000b4cf   _ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E
    0000b4d2   _ti_sysbios_hal_Hwi_Module_startup__E
    0000b4d5   _ti_sysbios_hal_Hwi_startup__E
    0000b4d8   _ti_sysbios_hal_Timer_Module_startup__E
    0000b4db   _ti_sysbios_hal_Timer_TimerProxy_getExpiredCounts__E
    0000b4de   _ti_sysbios_hal_Timer_TimerProxy_getPeriod__E
    0000b4e1   _ti_sysbios_hal_Timer_TimerProxy_startup__E
    0000b4e4   _ti_sysbios_hal_Timer_startup__E
    0000b4e7   _ti_sysbios_heaps_HeapBuf_Module_startup__E
    0000b4ea   _ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E
    0000b4ed   _ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E
    0000b4f0   _ti_sysbios_knl_Clock_Module_startup__E
    0000b4f3   _ti_sysbios_knl_Idle_loop__E
    0000b4f6   _ti_sysbios_knl_Mailbox_Module_startup__E
    0000b4f9   _ti_sysbios_knl_Queue_Instance_init__F
    0000b4fc   _ti_sysbios_knl_Swi_Module_startup__E
    0000b4ff   _ti_sysbios_knl_Task_Module_startup__E
    0000b502   _ti_sysbios_knl_Task_SupportProxy_checkStack__E
    0000b505   _ti_sysbios_knl_Task_SupportProxy_swap__E
    0000b508   _ti_sysbios_knl_Task_setArg0__E
    0000b50b   _ti_sysbios_knl_Task_setArg1__E
    0000b50e   _ti_sysbios_knl_Task_startup__E
    0000b511   _xdc_runtime_Error_check__E
    0000b514   _xdc_runtime_Error_print__E
    0000b517   _xdc_runtime_LoggerBuf_Module_GateProxy_enter__E
    0000b51a   _xdc_runtime_LoggerBuf_Module_GateProxy_leave__E
    0000b51d   _xdc_runtime_LoggerBuf_Module_startup__E
    0000b520   _xdc_runtime_LoggerBuf_disable__E
    0000b523   _xdc_runtime_LoggerBuf_enable__E
    0000b526   _xdc_runtime_LoggerBuf_getFilterLevel__E
    0000b529   _xdc_runtime_LoggerBuf_setFilterLevel__E
    0000b52c   _xdc_runtime_LoggerBuf_write0__E
    0000b52f   _xdc_runtime_SysMin_Module_startup__E
    0000b532   _xdc_runtime_SysMin_abort__E
    0000b532   _xdc_runtime_System_SupportProxy_abort__E
    0000b535   _xdc_runtime_SysMin_exit__E
    0000b535   _xdc_runtime_System_SupportProxy_exit__E
    0000b538   _xdc_runtime_SysMin_putch__E
    0000b538   _xdc_runtime_System_SupportProxy_putch__E
    0000b53b   _xdc_runtime_SysMin_ready__E
    0000b53b   _xdc_runtime_System_SupportProxy_ready__E
    0000b53e   _xdc_runtime_System_Module_GateProxy_enter__E
    0000b541   _xdc_runtime_System_Module_GateProxy_leave__E
    0000b544   _xdc_runtime_System_Module_startup__E
    0000b547   _xdc_runtime_System_Module_startup__F
    0000b54a   _xdc_runtime_System_atexit__E
    0000b54d   _xdc_runtime_Text_putLab__E
    0000b550   _xdc_runtime_Text_putSite__E
    0000b553   _ti_sysbios_family_c28_TaskSupport_Module__startupDone__S
    0000b553   _ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S
    0000b555   _ti_sysbios_gates_GateHwi_query__F
    0000b557   _ti_sysbios_gates_GateMutex_query__F
    0000b559   _xdc_runtime_Error_getSite__F
    0000b55b   _ti_sysbios_family_c28_Hwi_interruptReturn__I
    0000b55c   _ti_sysbios_family_c28_Timer_setNextTick__E
    0000b55d   _ti_sysbios_gates_GateHwi_Instance_init__F
    0000b55e   _xdc_runtime_Startup_reset__I
    0000b696   _ti_sysbios_family_c28_Hwi_vectors
    0000b956   _xdc_runtime_Text_nodeTab__A
    0000ba5d   _ti_sysbios_BIOS_Module__id__C
    0000baa3   _ti_sysbios_family_c28_Hwi_Module__id__C
    0000baed   _ti_sysbios_family_c28_Hwi_Module__loggerDefined__C
    0000baee   _xdc_runtime_LoggerBuf_Module__FXNS__C
    0000bb0c   _xdc_runtime_Startup_sfxnTab__A
    0000bb26   _ti_sysbios_heaps_HeapMem_Module__FXNS__C
    0000bb3a   _ti_sysbios_gates_GateHwi_Module__FXNS__C
    0000bb4c   _ti_sysbios_gates_GateMutex_Module__FXNS__C
    0000bb5e   _ti_sysbios_heaps_HeapMem_Object__PARAMS__C
    0000bb70   _xdc_runtime_LoggerBuf_Object__PARAMS__C
    0000bb93   _ti_sysbios_family_c28_Hwi_Object__count__C
    0000bb94   _ti_sysbios_gates_GateHwi_Object__DESC__C
    0000bba4   _ti_sysbios_gates_GateMutex_Object__DESC__C
    0000bbb4   _ti_sysbios_heaps_HeapMem_Object__DESC__C
    0000bbc4   _ti_sysbios_knl_Clock_Object__DESC__C
    0000bbd4   _ti_sysbios_knl_Clock_Object__PARAMS__C
    0000bbe4   _ti_sysbios_knl_Queue_Object__DESC__C
    0000bbf4   _ti_sysbios_knl_Semaphore_Object__DESC__C
    0000bc04   _ti_sysbios_knl_Semaphore_Object__PARAMS__C
    0000bc14   _xdc_runtime_LoggerBuf_Object__DESC__C
    0000bc24   _xdc_runtime_Startup_sfxnRts__A
    0000bc31   _ti_sysbios_family_c28_Hwi_zeroLatencyIERMask__C
    0000bc32   _ti_sysbios_gates_GateHwi_Object__PARAMS__C
    0000bc3e   _ti_sysbios_gates_GateMutex_Object__PARAMS__C
    0000bc4a   _ti_sysbios_knl_Queue_Object__PARAMS__C
    0000bc56   _ti_sysbios_knl_Task_hooks__A
    0000bc69   _ti_sysbios_family_c28_TaskSupport_Module__id__C
    0000bc6a   _xdc_runtime_Startup_firstFxns__A
    0000bc75   _ti_sysbios_family_c28_Timer_startupNeeded__C
    0000bc7a   _ti_sysbios_knl_Idle_coreList__C
    0000bc7e   _ti_sysbios_knl_Idle_funcList__C
    0000bc82   _ti_sysbios_knl_Task_hooks__C
    0000bc86   _xdc_runtime_Startup_firstFxns__C
    0000bc8a   _xdc_runtime_Startup_lastFxns__A
    0000bc8e   _xdc_runtime_Startup_lastFxns__C
    0000bc92   _ti_bios_support_Sys_abortFxn__C
    0000bc94   _ti_sysbios_BIOS_Module__diagsEnabled__C
    0000bc96   _ti_sysbios_BIOS_Module__diagsIncluded__C
    0000bc98   _ti_sysbios_BIOS_Module__diagsMask__C
    0000bc9a   _ti_sysbios_BIOS_installedErrorHook__C
    0000bc9c   _ti_sysbios_family_c28_Hwi_A_badIntNum__C
    0000bc9e   _ti_sysbios_family_c28_Hwi_A_invalidArg__C
    0000bca0   _ti_sysbios_family_c28_Hwi_E_unpluggedInterrupt__C
    0000bca2   _ti_sysbios_family_c28_Hwi_LD_end__C
    0000bca4   _ti_sysbios_family_c28_Hwi_LM_begin__C
    0000bca6   _ti_sysbios_family_c28_Hwi_Module__diagsEnabled__C
    0000bca8   _ti_sysbios_family_c28_Hwi_Module__diagsIncluded__C
    0000bcaa   _ti_sysbios_family_c28_Hwi_Module__diagsMask__C
    0000bcac   _ti_sysbios_family_c28_Hwi_Module__loggerFxn1__C
    0000bcae   _ti_sysbios_family_c28_Hwi_Module__loggerFxn8__C
    0000bcb0   _ti_sysbios_family_c28_Hwi_Module__loggerObj__C
    0000bcb2   _ti_sysbios_family_c28_TaskSupport_E_invalidStack__C
    0000bcb4   _ti_sysbios_family_c28_TimestampProvider_Module__diagsEnabled__C
    0000bcb6   _ti_sysbios_family_c28_TimestampProvider_Module__diagsIncluded__C
    0000bcb8   _ti_sysbios_family_c28_TimestampProvider_Module__diagsMask__C
    0000bcba   _ti_sysbios_gates_GateMutex_A_badContext__C
    0000bcbc   _ti_sysbios_gates_GateMutex_Instance_State_sem__O
    0000bcbe   _ti_sysbios_gates_GateMutex_Module__diagsEnabled__C
    0000bcc0   _ti_sysbios_gates_GateMutex_Module__diagsIncluded__C
    0000bcc2   _ti_sysbios_gates_GateMutex_Module__diagsMask__C
    0000bcc4   _ti_sysbios_hal_Hwi_E_stackOverflow__C
    0000bcc6   _ti_sysbios_heaps_HeapBuf_Instance_State_freeList__O
    0000bcc8   _ti_sysbios_heaps_HeapMem_A_align__C
    0000bcca   _ti_sysbios_heaps_HeapMem_A_heapSize__C
    0000bccc   _ti_sysbios_heaps_HeapMem_A_invalidFree__C
    0000bcce   _ti_sysbios_heaps_HeapMem_A_zeroBlock__C
    0000bcd0   _ti_sysbios_heaps_HeapMem_E_memory__C
    0000bcd2   _ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C
    0000bcd4   _ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C
    0000bcd6   _ti_sysbios_heaps_HeapMem_Module__diagsMask__C
    0000bcd8   _ti_sysbios_heaps_HeapMem_Module__gateObj__C
    0000bcda   _ti_sysbios_knl_Clock_A_badThreadType__C
    0000bcdc   _ti_sysbios_knl_Clock_LM_begin__C
    0000bcde   _ti_sysbios_knl_Clock_LM_tick__C
    0000bce0   _ti_sysbios_knl_Clock_LW_delayed__C
    0000bce2   _ti_sysbios_knl_Clock_Module_State_clockQ__O
    0000bce4   _ti_sysbios_knl_Clock_Module__diagsEnabled__C
    0000bce6   _ti_sysbios_knl_Clock_Module__diagsIncluded__C
    0000bce8   _ti_sysbios_knl_Clock_Module__diagsMask__C
    0000bcea   _ti_sysbios_knl_Clock_Module__loggerFxn1__C
    0000bcec   _ti_sysbios_knl_Clock_Module__loggerFxn2__C
    0000bcee   _ti_sysbios_knl_Clock_Module__loggerObj__C
    0000bcf0   _ti_sysbios_knl_Idle_funcList__A
    0000bcf2   _ti_sysbios_knl_Mailbox_Instance_State_dataQue__O
    0000bcf4   _ti_sysbios_knl_Mailbox_Instance_State_dataSem__O
    0000bcf6   _ti_sysbios_knl_Mailbox_Instance_State_freeQue__O
    0000bcf8   _ti_sysbios_knl_Mailbox_Instance_State_freeSem__O
    0000bcfa   _ti_sysbios_knl_Semaphore_A_badContext__C
    0000bcfc   _ti_sysbios_knl_Semaphore_A_noEvents__C
    0000bcfe   _ti_sysbios_knl_Semaphore_A_overflow__C
    0000bd00   _ti_sysbios_knl_Semaphore_Instance_State_pendQ__O
    0000bd02   _ti_sysbios_knl_Semaphore_LM_pend__C
    0000bd04   _ti_sysbios_knl_Semaphore_LM_post__C
    0000bd06   _ti_sysbios_knl_Semaphore_Module__diagsEnabled__C
    0000bd08   _ti_sysbios_knl_Semaphore_Module__diagsIncluded__C
    0000bd0a   _ti_sysbios_knl_Semaphore_Module__diagsMask__C
    0000bd0c   _ti_sysbios_knl_Semaphore_Module__loggerFxn2__C
    0000bd0e   _ti_sysbios_knl_Semaphore_Module__loggerFxn4__C
    0000bd10   _ti_sysbios_knl_Semaphore_Module__loggerObj__C
    0000bd12   _ti_sysbios_knl_Swi_LD_end__C
    0000bd14   _ti_sysbios_knl_Swi_LM_begin__C
    0000bd16   _ti_sysbios_knl_Swi_LM_post__C
    0000bd18   _ti_sysbios_knl_Swi_Module__diagsEnabled__C
    0000bd1a   _ti_sysbios_knl_Swi_Module__diagsIncluded__C
    0000bd1c   _ti_sysbios_knl_Swi_Module__diagsMask__C
    0000bd1e   _ti_sysbios_knl_Swi_Module__loggerFxn1__C
    0000bd20   _ti_sysbios_knl_Swi_Module__loggerFxn4__C
    0000bd22   _ti_sysbios_knl_Swi_Module__loggerObj__C
    0000bd24   _ti_sysbios_knl_Task_E_spOutOfBounds__C
    0000bd26   _ti_sysbios_knl_Task_E_stackOverflow__C
    0000bd28   _ti_sysbios_knl_Task_LD_block__C
    0000bd2a   _ti_sysbios_knl_Task_LD_exit__C
    0000bd2c   _ti_sysbios_knl_Task_LD_ready__C
    0000bd2e   _ti_sysbios_knl_Task_LM_switch__C
    0000bd30   _ti_sysbios_knl_Task_Module_State_inactiveQ__O
    0000bd32   _ti_sysbios_knl_Task_Module_State_terminatedQ__O
    0000bd34   _ti_sysbios_knl_Task_Module__diagsEnabled__C
    0000bd36   _ti_sysbios_knl_Task_Module__diagsIncluded__C
    0000bd38   _ti_sysbios_knl_Task_Module__diagsMask__C
    0000bd3a   _ti_sysbios_knl_Task_Module__loggerFxn2__C
    0000bd3c   _ti_sysbios_knl_Task_Module__loggerFxn4__C
    0000bd3e   _ti_sysbios_knl_Task_Module__loggerObj__C
    0000bd40   _ti_sysbios_knl_Task_allBlockedFunc__C
    0000bd42   _xdc_runtime_Assert_E_assertFailed__C
    0000bd44   _xdc_runtime_Core_A_initializedParams__C
    0000bd46   _xdc_runtime_Core_Module__diagsEnabled__C
    0000bd48   _xdc_runtime_Core_Module__diagsIncluded__C
    0000bd4a   _xdc_runtime_Core_Module__diagsMask__C
    0000bd4c   _xdc_runtime_Error_E_generic__C
    0000bd4e   _xdc_runtime_Error_E_memory__C
    0000bd50   _xdc_runtime_Error_Module__diagsEnabled__C
    0000bd52   _xdc_runtime_Error_Module__diagsIncluded__C
    0000bd54   _xdc_runtime_Error_Module__diagsMask__C
    0000bd56   _xdc_runtime_Error_Module__loggerFxn8__C
    0000bd58   _xdc_runtime_Error_Module__loggerObj__C
    0000bd5a   _xdc_runtime_Error_raiseHook__C
    0000bd5c   _xdc_runtime_IFilterLogger_Interface__BASE__C
    0000bd5e   _xdc_runtime_IGateProvider_Interface__BASE__C
    0000bd60   _xdc_runtime_IHeap_Interface__BASE__C
    0000bd62   _xdc_runtime_ILogger_Interface__BASE__C
    0000bd64   _xdc_runtime_IModule_Interface__BASE__C
    0000bd66   _xdc_runtime_Log_L_error__C
    0000bd68   _xdc_runtime_LoggerBuf_E_badLevel__C
    0000bd6a   _xdc_runtime_LoggerBuf_Module__gateObj__C
    0000bd6c   _xdc_runtime_LoggerBuf_statusLogger__C
    0000bd6e   _xdc_runtime_Memory_defaultHeapInstance__C
    0000bd70   _xdc_runtime_Startup_execImpl__C
    0000bd72   _xdc_runtime_Startup_sfxnRts__C
    0000bd74   _xdc_runtime_Startup_sfxnTab__C
    0000bd76   _xdc_runtime_SysMin_bufSize__C
    0000bd78   _xdc_runtime_SysMin_outputFunc__C
    0000bd7a   _xdc_runtime_System_Module__gateObj__C
    0000bd7c   _xdc_runtime_System_extendFxn__C
    0000bd7e   _xdc_runtime_Text_charTab__C
    0000bd80   _xdc_runtime_Text_nameEmpty__C
    0000bd82   _xdc_runtime_Text_nameStatic__C
    0000bd84   _xdc_runtime_Text_nameUnknown__C
    0000bd86   _xdc_runtime_Text_nodeTab__C
    0000bd88   _xdc_runtime_Text_visitRopeFxn__C
    0000bd8b   _ti_sysbios_family_c28_TimestampProvider_Module__id__C
    0000bd8c   _ti_sysbios_family_c28_TimestampProvider_useClockTimer__C
    0000bd8d   _ti_sysbios_gates_GateMutex_Module__id__C
    0000bd8e   _ti_sysbios_hal_Hwi_Module__id__C
    0000bd8f   _ti_sysbios_heaps_HeapBuf_Object__count__C
    0000bd90   _ti_sysbios_heaps_HeapBuf_numConstructedHeaps__C
    0000bd91   _ti_sysbios_heaps_HeapMem_Module__id__C
    0000bd92   _ti_sysbios_heaps_HeapMem_Object__count__C
    0000bd93   _ti_sysbios_heaps_HeapMem_reqAlign__C
    0000bd94   _ti_sysbios_knl_Clock_Module__id__C
    0000bd95   _ti_sysbios_knl_Clock_Module__loggerDefined__C
    0000bd96   _ti_sysbios_knl_Clock_tickMode__C
    0000bd97   _ti_sysbios_knl_Clock_tickSource__C
    0000bd98   _ti_sysbios_knl_Idle_coreList__A
    0000bd99   _ti_sysbios_knl_Mailbox_Object__count__C
    0000bd9a   _ti_sysbios_knl_Semaphore_Module__id__C
    0000bd9b   _ti_sysbios_knl_Semaphore_Module__loggerDefined__C
    0000bd9c   _ti_sysbios_knl_Swi_Module__id__C
    0000bd9d   _ti_sysbios_knl_Swi_Module__loggerDefined__C
    0000bd9e   _ti_sysbios_knl_Swi_Object__count__C
    0000bd9f   _ti_sysbios_knl_Task_Module__id__C
    0000bda0   _ti_sysbios_knl_Task_Module__loggerDefined__C
    0000bda1   _ti_sysbios_knl_Task_Object__count__C
    0000bda2   _ti_sysbios_knl_Task_deleteTerminatedTasks__C
    0000bda3   _ti_sysbios_knl_Task_initStackFlag__C
    0000bda4   _ti_sysbios_knl_Task_numConstructedTasks__C
    0000bda5   _xdc_runtime_Core_Module__id__C
    0000bda6   _xdc_runtime_Error_Module__loggerDefined__C
    0000bda7   _xdc_runtime_Error_maxDepth__C
    0000bda8   _xdc_runtime_Error_policy__C
    0000bda9   _xdc_runtime_LoggerBuf_Module__id__C
    0000bdaa   _xdc_runtime_LoggerBuf_Object__count__C
    0000bdab   _xdc_runtime_LoggerBuf_filterByLevel__C
    0000bdac   _xdc_runtime_Main_Module__id__C
    0000bdad   _xdc_runtime_Memory_Module__id__C
    0000bdae   _xdc_runtime_Startup_maxPasses__C
    0000bdaf   _xdc_runtime_SysMin_flushAtExit__C
    0000bdb0   _xdc_runtime_System_maxAtexitHandlers__C
    0000bdb1   _xdc_runtime_Text_charCnt__C
    0000bdb2   _xdc_runtime_Text_isLoaded__C
    0000bdb3   _xdc_runtime_Text_registryModsLastId__C
    0000bdb4   _xdc_runtime_Text_unnamedModsLastId__C
    0000c000   .bss
    0000c000   ___bss__
    0000c000   ___end__
    0000c000   _xdc_runtime_Error_Module__state__V
    0000c000   end
    0000c001   _SEG0
    0000c002   _MEM_tabSize
    0000c003   _SEG1
    0000c004   _PIP_tablen
    0000c005   _GBL_procId
    0000c006   __DEV_numStaticDevs
    0000c007   _PIP_tabbeg
    0000c00a   _ti_sysbios_knl_Task_Module_State_0_idleTask__A
    0000c00c   _xdc_runtime_Memory_Module__state__V
    0000c00e   ___xdc__init__addr
    0000c010   _ti_sysbios_knl_Task_Instance_State_2_hookEnv__A
    0000c012   _ti_sysbios_knl_Task_Instance_State_3_hookEnv__A
    0000c014   _ti_sysbios_knl_Task_Instance_State_0_hookEnv__A
    0000c016   _ti_sysbios_knl_Task_Instance_State_1_hookEnv__A
    0000c018   _ti_sysbios_knl_Task_Instance_State_4_hookEnv__A
    0000c01a   _TRC_R_mask
    0000c01c   _GIO
    0000c01e   _MEM_table
    0000c020   _GBL_clkIn
    0000c022   _ti_sysbios_gates_GateHwi_Object__table__V
    0000c024   _ti_sysbios_heaps_HeapBuf_Module__state__V
    0000c026   _xdc_runtime_LoggerBuf_Module__state__V
    0000c02a   _ti_sysbios_family_c28_Hwi_Module__root__V
    0000c02e   _ti_bios_support_Lck_Module__root__V
    0000c032   _ti_sysbios_heaps_HeapBuf_Module__root__V
    0000c036   _xdc_runtime_System_Module__state__V
    0000c040   _xdc_runtime_Registry_Module__state__V
    0000c044   _ti_sysbios_gates_GateMutex_Module__root__V
    0000c048   _ti_sysbios_family_c28_TimestampProvider_Module__state__V
    0000c04c   _ti_sysbios_knl_Task_Module__root__V
    0000c050   _ti_sysbios_knl_Swi_Module__root__V
    0000c054   _ti_sysbios_heaps_HeapMem_Module__root__V
    0000c058   _ti_sysbios_gates_GateHwi_Module__root__V
    0000c05c   _xdc_runtime_LoggerBuf_Module__root__V
    0000c060   _ti_sysbios_knl_Event_Module__root__V
    0000c064   _xdc_runtime_Text_Module__state__V
    0000c068   _ti_sysbios_knl_Clock_Module__root__V
    0000c06c   _ti_sysbios_knl_Semaphore_Module__root__V
    0000c070   _ti_sysbios_knl_Queue_Module__root__V
    0000c074   _ti_sysbios_hal_Timer_Module__root__V
    0000c078   _ti_sysbios_hal_Timer_Object__table__V
    0000c07c   _xdc_runtime_SysMin_Module__state__V
    0000c080   _ti_sysbios_family_c28_Timer_Module__root__V
    0000c084   _ti_sysbios_knl_Mailbox_Module__root__V
    0000c088   _ti_sysbios_hal_Hwi_Module__root__V
    0000c08c   _xdc_runtime_Startup_Module__state__V
    0000c090   _ti_sysbios_family_c28_Timer_Module__state__V
    0000c098   _GIO_config
    0000c0a0   _ti_sysbios_family_c28_Hwi_Module__state__V
    0000c0ac   _ti_sysbios_knl_Swi_Module__state__V
    0000c0c0   _ti_sysbios_knl_Mailbox_Instance_State_0_allocBuf__A
    0000c0cc   _TSK_ATTRS
    0000c0da   _xdc_runtime_System_Module_State_0_atexitHandlers__A
    0000c0ea   _ti_sysbios_BIOS_Module__state__V
    0000c100   _ti_sysbios_knl_Clock_Module__state__V
    0000c114   _ti_sysbios_knl_Swi_Object__table__V
    0000c128   _ti_sysbios_heaps_HeapMem_Object__table__V
    0000c140   _ti_sysbios_gates_GateMutex_Object__table__V
    0000c15c   _ti_sysbios_knl_Task_Module__state__V
    0000c180   _ti_sysbios_family_c28_Hwi_Object__table__V
    0000c1c0   _LOG_system
    0000c1c0   _xdc_runtime_LoggerBuf_Object__table__V
    0000c1d2   _trace
    0000c200   _mbx
    0000c200   _ti_sysbios_knl_Mailbox_Object__table__V
    0000c240   _ti_sysbios_family_c28_Timer_Object__table__V
    0000c280   _ti_sysbios_knl_Swi_Module_State_0_readyQ__A
    0000c2c0   _ti_sysbios_knl_Task_Module_State_0_readyQ__A
    0000c300   _TSK_staticGlueTab
    0000c380   _reader0
    0000c380   _ti_sysbios_knl_Task_Object__table__V
    0000c3a4   _writer0
    0000c3c8   _writer1
    0000c3ec   _writer2
    0000c410   _TSK_idle
    0000c440   _ti_sysbios_family_c28_Hwi_Module_State_0_dispatchTable__A
    0000c540   _xdc_runtime_LoggerBuf_Instance_State_1_entryArr__A
    0000c740   _xdc_runtime_SysMin_Module_State_0_outbuf__A
    0000cb40   _xdc_runtime_LoggerBuf_Instance_State_0_entryArr__A
    0000cf41   ___atexit_func_id__
    0000d040   _SYS_errors
    0000d066   __unlock
    0000d068   __lock
    0000d06a   __cleanup_ptr
    0000d06c   __dtors_ptr
    0000d06e   _SEM_ATTRS
    0000d076   _dtors
    0000d078   ___c_args__
    0000d080   __CIOBUF_
    0000d1c0   _ti_sysbios_heaps_HeapMem_Instance_State_1_buf__A
    00200000   _ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A
    ffffffff   .data
    ffffffff   .text
    ffffffff   ___binit__
    ffffffff   ___data__
    ffffffff   ___edata__
    ffffffff   ___etext__
    ffffffff   ___pinit__
    ffffffff   ___text__
    ffffffff   binit
    ffffffff   edata
    ffffffff   etext
    ffffffff   pinit

    [693 symbols]

  • There is too much content allocated to L03SARAM. You should try allocating more sections to L47SARAM. I don't know if you already have some examples of Program.sectMap usage in your CFG script, but that's how you allocate sections to memory object in SYS/BIOS configurations. This is how you allocate .cinit to L47SARAM:
    Program.sectMap[".cinit"] = new Program.SectionSpec();
    Program.sectMap[".cinit"].loadSegment = "L47SARAM";

    If you already have statements in your CFG script that allocate .cinit, then you just have to edit them to use L47SARAM instead of L03SARAM. Same goes for .stack and .econst.
    I see that you are not using FLASH at all. Is that intentional?

  • Sasha,

    The config file did not have Program.sectMap. I added it for .cinit, .stack and .econst. The build succeeded with no linker errors, except for a few warnings.  I appreciate  the help. Thanks a lot.