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.

RTOS/TMS320C6678: Multi Core debugging issue with Ipc notify module

Part Number: TMS320C6678
Other Parts Discussed in Thread: SYSBIOS

Tool/software: TI-RTOS

Hi, 

I'm having a hard time running 2 cores with different programs in debug on the c6678 evm, i can run both programs on single core with no issue, one of the programs need to be running on core 0.

both cores used to run together with no issues up until i added shared memory and notify module, i followed one of your examples and i have no idea why does this happen.

core 0 runs but i cant halt it, i can't add any break points and i get : 

C66xx_0: Trouble Setting Breakpoint with the Action "Remain Halted" at 0xc230016: (Error -1202 @ 0xC23001C) Device core is hung. The debugger will attempt to force the device to a ready state to recover debug control. Your application's state will be corrupt. You should have limited access to memory and registers, but you may need to reset the device to debug further. (Emulation package 7.0.48.0)
C66xx_0: Breakpoint Manager: Retrying with a AET breakpoint
C66xx_0: Breakpoint Manager: Error enabling this function: Claim hardware resource ownership failed.
C66xx_0: Trouble Halting Target CPU: (Error -1060 @ 0x0) Device is not responding to the request. Reset the device, and retry the operation. If error persists, confirm configuration, power-cycle the board, and/or try more reliable JTAG settings (e.g. lower TCLK). (Emulation package 7.0.48.0)

no amount of restarts helps, 

this is my cfg file for core 0:

/* Load all required BIOS/XDC runtime packages */
var Memory = xdc.useModule('xdc.runtime.Memory');
var BIOS = xdc.useModule('ti.sysbios.BIOS');
var HeapMem = xdc.useModule('ti.sysbios.heaps.HeapMem');
var HeapBuf = xdc.useModule('ti.sysbios.heaps.HeapBuf');
var Log = xdc.useModule('xdc.runtime.Log');
var Task = xdc.useModule('ti.sysbios.knl.Task');
var Hwi = xdc.useModule('ti.sysbios.family.c64p.Hwi');
var ECM = xdc.useModule('ti.sysbios.family.c64p.EventCombiner');
var Swi = xdc.useModule('ti.sysbios.knl.Swi');
var Clock = xdc.useModule('ti.sysbios.knl.Clock');
var Timer = xdc.useModule('ti.sysbios.timers.timer64.Timer');

/* Modules explicitly used in the application */
var HeapBufMP = xdc.useModule('ti.sdo.ipc.heaps.HeapBufMP');
var MultiProc = xdc.useModule('ti.sdo.utils.MultiProc');
var Notify = xdc.module('ti.sdo.ipc.Notify');
var Ipc = xdc.useModule('ti.sdo.ipc.Ipc');


Ipc.procSync = Ipc.ProcSync_PAIR;


/*
* Get the list of names that the build device supports.
* I.e. ["CORE0", "CORE1", "CORE2" ... ]
*/
var coreNameList = MultiProc.getDeviceProcNames();

/*
* Since this is a single-image example, we don't (at build-time) which
* processor we're building for. We therefore supply 'null'
* as the local procName and allow IPC to set the local procId at runtime.
*/
MultiProc.setConfig(null, coreNameList);


var SHAREDMEM = 0x0C000000;
var SHAREDMEMSIZE = 0x00200000;
var SharedRegion = xdc.useModule('ti.sdo.ipc.SharedRegion');
SharedRegion.setEntryMeta(0,
{ base: SHAREDMEM,
len: SHAREDMEMSIZE,
ownerProcId: 0,
isValid: true,
name: "DDR2 RAM",
});

var timerParams = new Timer.Params();
timerParams.period = 2000; //2ms
timerParams.arg = 1;
timerParams.startMode = Timer.StartMode_AUTO;
timerParams.controlInit.invout = 1;
timerParams.emuMgtInit.free = false;
Program.global.loopTimer = Timer.create(0, "&loopTimerTick", timerParams);

var timerParams = new Timer.Params();
timerParams.period = 100000; //100ms
timerParams.arg = 1;
timerParams.startMode = Timer.StartMode_AUTO;
timerParams.controlInit.invout = 1;
timerParams.emuMgtInit.free = false;
Program.global.myTimer = Timer.create(12, "&insertDataToPipe", timerParams);

/* Load and use the CSL, CPPI and QMSS packages */
var devType = "c6678"
var Csl = xdc.useModule('ti.csl.Settings');
Csl.deviceType = devType;


/* Load the CPPI package */
//var Cppi = xdc.loadPackage('ti.drv.cppi');
/* Load the QMSS package */
//var Qmss = xdc.loadPackage('ti.drv.qmss');

/* Load the PA package */
//var Pa = xdc.useModule('ti.drv.pa.Settings');
//Pa.deviceType = devType;

/* Load the RM package */
//var Rm = xdc.loadPackage('ti.drv.rm');

var System = xdc.useModule('xdc.runtime.System');
SysMin = xdc.useModule('xdc.runtime.SysMin');
System.SupportProxy = SysMin;

/* Create a default system heap using ti.bios.HeapMem. */
var heapMemParams1 = new HeapMem.Params;
heapMemParams1.size = 8192 * 15;
heapMemParams1.sectionName = "systemHeap";
Program.global.heap0 = HeapMem.create(heapMemParams1);

/* This is the default memory heap. */
Memory.defaultHeapInstance = Program.global.heap0;

Program.sectMap["systemHeap"] = Program.platform.stackMemory;

/* Enable BIOS Task Scheduler */
BIOS.taskEnabled = true;

/*
* Enable Event Groups here and registering of ISR for specific GEM INTC is done
* using EventCombiner_dispatchPlug() and Hwi_eventMap() APIs
*/

ECM.eventGroupHwiNum[0] = 7;
ECM.eventGroupHwiNum[1] = 8;
ECM.eventGroupHwiNum[2] = 9;
ECM.eventGroupHwiNum[3] = 10;

/* Tasks creation */

var instti_sysbios_knl_PEngineTaskParams = new Task.Params();
instti_sysbios_knl_PEngineTaskParams.instance.name = "InitTaskFxn";
instti_sysbios_knl_PEngineTaskParams.priority = 12;
instti_sysbios_knl_PEngineTaskParams.stackSize = 4096;
Program.global.TSK_ETHERNET_ProcessingTask = Task.create("&InitTaskFxn", instti_sysbios_knl_PEngineTaskParams);


var swiParams = new Swi.Params();

swiParams.arg0 = 1;
swiParams.arg1 = 0;
swiParams.priority = 14;
swiParams.trigger = 0;
Program.global.PEngineReadSWI = Swi.create('&PEngineReadSWIFxn', swiParams);

swiParams.arg0 = 2;
swiParams.priority = 5;
swiParams.trigger = 3;
Program.global.SWINotifyReader = Swi.create('&SWINotifyReaderFxn', swiParams);

swiParams.arg0 = 2;
swiParams.priority = 5;
swiParams.trigger = 3;
Program.global.SWIPipeDataInsert = Swi.create('&SWIPipeDataInsertFXN', swiParams);

swiParams.arg0 = 2;
swiParams.priority = 5;
swiParams.trigger = 3;
Program.global.PEngineWriteSWI = Swi.create('&PEngineWriteSWIFxn', swiParams);

swiParams.arg0 = 2;
swiParams.priority = 14;
swiParams.trigger = 3;
Program.global.ADCPotSWI = Swi.create('&ADCPotSWIFxn', swiParams);


swiParams.arg0 = 2;
swiParams.priority = 14;
swiParams.trigger = 3;
Program.global.swiRunPIDControl = Swi.create('&swiRunPIDControlFxn', swiParams);

var Semaphore = xdc.useModule('ti.sysbios.knl.Semaphore');
Program.global.semHandle = Semaphore.create(0);


/* Memory map */
Program.sectMap[".text"] = "MSMCSRAM";
Program.sectMap[".const"] = "L2SRAM";
Program.sectMap[".qmss"] = "L2SRAM";
Program.sectMap[".cppi"] = "L2SRAM";
Program.sectMap[".ethsect"] = "DDR3";
Program.sectMap[".L2"] = "L2SRAM";

and this is for core7 :

/* Load all required BIOS/XDC runtime packages */
var Memory = xdc.useModule('xdc.runtime.Memory');
var BIOS = xdc.useModule('ti.sysbios.BIOS');
var HeapMem = xdc.useModule('ti.sysbios.heaps.HeapMem');
var HeapBuf = xdc.useModule('ti.sysbios.heaps.HeapBuf');
var Log = xdc.useModule('xdc.runtime.Log');
var Task = xdc.useModule('ti.sysbios.knl.Task');
var Hwi = xdc.useModule('ti.sysbios.family.c64p.Hwi');
var ECM = xdc.useModule('ti.sysbios.family.c64p.EventCombiner');

/* Modules explicitly used in the application */

var Notify = xdc.useModule('ti.sdo.ipc.Notify');
var Ipc = xdc.useModule('ti.sdo.ipc.Ipc');
var HeapBufMP = xdc.useModule('ti.sdo.ipc.heaps.HeapBufMP');
var MultiProc = xdc.useModule('ti.sdo.utils.MultiProc');

Ipc.procSync = Ipc.ProcSync_PAIR;

var coreNameList = MultiProc.getDeviceProcNames();

/*
* Since this is a single-image example, we don't (at build-time) which
* processor we're building for. We therefore supply 'null'
* as the local procName and allow IPC to set the local procId at runtime.
*/

MultiProc.setConfig(null, coreNameList);

var SHAREDMEM = 0x0C000000;
var SHAREDMEMSIZE = 0x00200000;
var SharedRegion = xdc.useModule('ti.sdo.ipc.SharedRegion');
SharedRegion.setEntryMeta(0,
{ base: SHAREDMEM,
len: SHAREDMEMSIZE,
ownerProcId: 0,
isValid: true,
name: "DDR2 RAM",
});

/* Load and use the CSL, CPPI and QMSS packages */
var devType = "c6678"
var Csl = xdc.useModule('ti.csl.Settings');
Csl.deviceType = devType;
/* Load the CPPI package */
var Cppi = xdc.loadPackage('ti.drv.cppi');
/* Load the QMSS package */
var Qmss = xdc.loadPackage('ti.drv.qmss');

/* Load the PA package */
var Pa = xdc.useModule('ti.drv.pa.Settings');
Pa.deviceType = devType;

/* Load the RM package */
var Rm = xdc.loadPackage('ti.drv.rm');

var System = xdc.useModule('xdc.runtime.System');
SysMin = xdc.useModule('xdc.runtime.SysMin');
System.SupportProxy = SysMin;

/* Create a default system heap using ti.bios.HeapMem. */
var heapMemParams1 = new HeapMem.Params;
heapMemParams1.size = 8192 * 10; //J.M 8192 * 30 Originaly
heapMemParams1.sectionName = "systemHeap";
Program.global.heap0 = HeapMem.create(heapMemParams1);

/* This is the default memory heap. */
Memory.defaultHeapInstance = Program.global.heap0;

Program.sectMap["systemHeap"] = Program.platform.stackMemory;

/* Enable BIOS Task Scheduler */
BIOS.taskEnabled = true;

/*
* Enable Event Groups here and registering of ISR for specific GEM INTC is done
* using EventCombiner_dispatchPlug() and Hwi_eventMap() APIs
*/

ECM.eventGroupHwiNum[0] = 7;
ECM.eventGroupHwiNum[1] = 8;
ECM.eventGroupHwiNum[2] = 9;
ECM.eventGroupHwiNum[3] = 10;

/* Tasks creation */

var instti_sysbios_knl_ethernetProcessingTaskParams = new Task.Params();
instti_sysbios_knl_ethernetProcessingTaskParams.instance.name = "ETHERNET_TSK_Processing";
instti_sysbios_knl_ethernetProcessingTaskParams.priority = 12;
instti_sysbios_knl_ethernetProcessingTaskParams.stackSize = 4096;
Program.global.TSK_ETHERNET_ProcessingTask = Task.create("&ETHERNET_TSK_Processing", instti_sysbios_knl_ethernetProcessingTaskParams);


/* Memory map */
Program.sectMap[".text"] = "MSMCSRAM";
Program.sectMap[".const"] = "L2SRAM";
Program.sectMap[".qmss"] = "L2SRAM";
Program.sectMap[".cppi"] = "L2SRAM";
Program.sectMap[".ethsect"] = "DDR3"

both projects are based on the Ethernet single core example project 

thanks,

Jameel

  • Hi Jameel,

    When you load the code does it halt at main?

    Can you check ROV for any errors? (Tools > ROV Classic > BIOS > Scan for Errors)

    Also, which version of Processor SDK are you using?
  • Hi Sahin,
    The code does halt at main for both projects
    ti-processor-sdk-rtos-c667x-evm-04.03.00.05
    as for the ROV, it is taking forever to load ROV recap file

    edit:

    All ROV views have been run and no errors were encountered.

    edit 2:

    I have done some tests, and i found out that core 0, no matter which program is loaded on it, will does not start task after the bios_start() call. and if i try to halt it i get 

    C66xx_0: Trouble Halting Target CPU: (Error -1060 @ 0x0) Device is not responding to the request. Reset the device, and retry the operation. If error persists, confirm configuration, power-cycle the board, and/or try more reliable JTAG settings (e.g. lower TCLK). (Emulation package 7.0.48.0)

    Again, both programs run perfectly if loaded on a single core, the only problem is when i run multiple cores with different programs using Notify module of the IPC.

    Appreciate any help,

    Jameel

  • Jameel,

    Are you calling Ipc_start() before BIOS_start? Can you check its return value?

    Since you are using "Ipc.ProcSync_PAIR" you will need to call Ipc_attach, can you confirm you are doing this? Alternatively, you can use "Ipc.ProcSync_ALL" and add only the cores you are using to the list:

    var procNameAry = [ "CORE0", "CORE1", "CORE2", "CORE3", "CORE4", "CORE5", "CORE6", "CORE7" ];

    and Ipc_start() will automatically attach and synchronize the remote cores. More information can be found here: processors.wiki.ti.com/.../Ipc_Module
  • Hi Sahin,

    I changed the Ipc.ProcSync_PAIR to ALL, as well as the procNameArray to ["CORE0","CORE1"], tried to run again and now i am getting stuck when calling Ipc_start() in main, if i try to halt it, i get no symbols defined. and it's happening in both cores.

    I am not sure if this is relevant but i get this output when running both cores, Gel file 

    C66xx_1: GEL Output: DSP core #1
    C66xx_1: GEL Output: C6678L GEL file Ver is 2.0
    C66xx_1: GEL Output: Global Default Setup...
    C66xx_1: GEL Output: Setup Cache...
    C66xx_1: GEL Output: L1P = 32K
    C66xx_1: GEL Output: L1D = 32K
    C66xx_1: GEL Output: L2 = ALL SRAM
    C66xx_1: GEL Output: Setup Cache... Done.
    C66xx_1: GEL Output: Global Default Setup... Done.
    C66xx_1: GEL Output: Invalidate All Cache...
    C66xx_1: GEL Output: Invalidate All Cache... Done.
    C66xx_1: GEL Output: GEL Reset...
    C66xx_1: GEL Output: GEL Reset... Done.
    C66xx_1: Symbol Manager: the object file contains invalid call frame information at .debug_frame 0x20e78; the rest of call frame information will be skipped. Callstack may not be unwound properly.

  • Jameel,

    I'm not sure if that warning is related to the IPC issue, but it would be good to get it resolved. Please follow the guidance in this thread: e2e.ti.com/.../649811
  • Hi Sahin,
    so i have fixed that warning, but both projects are still getting stuck when calling Ipc_start();
  • Jameel,

    Do you have a SharedRegion defined? You need to have one defined with an index of 0, it is used by IPC_start to create resource management tables for internal use by IPC modules. See: processors.wiki.ti.com/.../SharedRegion_Module

    Please refer to our ex11_ping example under ipc/examples/c6678_bios_elf to see how it's implemented. The SharedRegion is defined in the config.bld file. You can define it in a linker cmd file as well if that is what you are using.
  • Hi Sahin,
    I have done this, if you look at the cfg code I put here for both cores I have Shared memory for both cores :

    var SHAREDMEM = 0x0C000000;
    var SHAREDMEMSIZE = 0x00200000;
    var SharedRegion = xdc.useModule('ti.sdo.ipc.SharedRegion');
    SharedRegion.setEntryMeta(0,
    { base: SHAREDMEM,
    len: SHAREDMEMSIZE,
    ownerProcId: 0,
    isValid: true,
    name: "DDR2 RAM",
    });
  • Hi Jameel,

    Can you please share your map file?

    Also, if you halt your program are you able to see in ROV if the cores have attached?

    EDIT: Please also check in ROV if you are running out of heap or stack. 

  • This is core7 map file
    
    ******************************************************************************
                   TMS320C6x Linker PC v8.2.2                      
    ******************************************************************************
    >> Linked Tue Oct 23 09:13:55 2018
    
    OUTPUT FILE NAME:   <PEngine.out>
    ENTRY POINT SYMBOL: "_c_int00"  address: 0c24ce80
    
    
    MEMORY CONFIGURATION
    
             name            origin    length      used     unused   attr    fill
    ----------------------  --------  ---------  --------  --------  ----  --------
      L2SRAM                00800000   00080000  00076e80  00009180  RW X
      MSMCSRAM              0c000000   00400000  00253d20  001ac2e0  RW X
      DDR3                  80000000   20000000  1ffffc70  00000390  RWIX
    
    
    SEGMENT ALLOCATION MAP
    
    run origin  load origin   length   init length attrs members
    ----------  ----------- ---------- ----------- ----- -------
    00800000    00800000    0006d2e0   00000000    rw-
      00800000    00800000    0003c000   00000000    rw- systemHeap
      0083c000    0083c000    000312e0   00000000    rw- .far
    0086d2e0    0086d2e0    00005c58   00005c58    r--
      0086d2e0    0086d2e0    00005c58   00005c58    r-- .const
    00872f38    00872f38    000029c8   00000000    rw-
      00872f38    00872f38    000019c4   00000000    rw- .fardata
      00874900    00874900    00001000   00000000    rw- .stack
    00875900    00875900    000005ac   000005ac    r--
      00875900    00875900    000005ac   000005ac    r-- .switch
    00875eb0    00875eb0    00000120   00000000    rw-
      00875eb0    00875eb0    00000120   00000000    rw- .cio
    00875fd0    00875fd0    00000008   00000008    r--
      00875fd0    00875fd0    00000008   00000008    r-- .init_array
    00876000    00876000    00000200   00000200    r-x
      00876000    00876000    00000200   00000200    r-x .vecs
    00876200    00876200    000000fc   00000000    rw-
      00876200    00876200    0000001d   00000000    rw- .bss
      00876220    00876220    000000dc   00000000    rw- .neardata
    008762fc    008762fc    00000024   00000000    r--
      008762fc    008762fc    00000024   00000000    r-- .rodata
    00876320    00876320    00000b90   00000b90    r--
      00876320    00876320    00000b90   00000b90    r-- .cinit
    0c200000    0c200000    00053d20   00053d20    r-x
      0c200000    0c200000    00053d20   00053d20    r-x .text
    80000000    80000000    1ffffc70   00000000    rw-
      80000000    80000000    1ffffc70   00000000    rw- .ethsect
    
    
    SECTION ALLOCATION MAP
    
     output                                  attributes/
    section   page    origin      length       input sections
    --------  ----  ----------  ----------   ----------------
    .init_array 
    *          0    00875fd0    00000008     
                      00875fd0    00000004     AOPEngineDriver.obj (.init_array)
                      00875fd4    00000004     AppControl.obj (.init_array)
    
    .far       0    0083c000    000312e0     UNINITIALIZED
                      0083c000    0000d400     (.common:m_pCondChannelMapping)
                      00849400    00007d00     (.common:g_script)
                      00851100    00006400     (.common:g_poolData)
                      00857500    00003dc0     AppControl.obj (.far:g_AOPEngineDriver)
                      0085b2c0    000030a8     AppControl.obj (.far:g_FilterImpedanceMeasurment)
                      0085e368    00002800     (.common:PE_rcv)
                      00860b68    00002800     (.common:PE_xmt)
                      00863368    0000230c     AOPEngineDriver.obj (.far:g_MemoryMange)
                      00865674    00001c98     AppControl.obj (.far:g_FilterDetection)
                      0086730c    00001c64     AppControl.obj (.far:g_AOFilterDetectionParams)
                      00868f70    00001800     PEngine_pe66.oe66 (.far:taskStackSection)
                      0086a770    00001254     AppControl.obj (.far:AppContrPE)
                      0086b9c4    00000528     AppControl.obj (.far:g_FilterScriptExecuter)
                      0086beec    00000004     --HOLE--
                      0086bef0    00000400     (.common:g_ImpCalibInfo)
                      0086c2f0    00000400     (.common:xdc_runtime_SysMin_Module_State_0_outbuf__A)
                      0086c6f0    000002bc     AppControl.obj (.far:g_FilterPECond)
                      0086c9ac    00000004     --HOLE--
                      0086c9b0    00000140     (.common:__TI_tmpnams)
                      0086caf0    00000100     (.common:TccHandlerTable)
                      0086cbf0    000000e0     (.common:chObj)
                      0086ccd0    00000060     AppControl.obj (.far:g_AOFilterImpedanceMeasurementParams)
                      0086cd30    00000050     AppControl.obj (.far:PipeADIn)
                      0086cd80    00000050     AppControl.obj (.far:PipeADOut)
                      0086cdd0    00000050     AppControl.obj (.far:PipeBlocksAccumulatorIn)
                      0086ce20    00000050     AppControl.obj (.far:PipeCodecIn)
                      0086ce70    00000050     AppControl.obj (.far:PipeCondOut)
                      0086cec0    00000050     AppControl.obj (.far:PipeDetectionOut)
                      0086cf10    00000050     AppControl.obj (.far:PipeImpOut)
                      0086cf60    00000050     AppControl.obj (.far:PipePCIIn)
                      0086cfb0    00000050     AppControl.obj (.far:PipePCIOut)
                      0086d000    00000050     AppControl.obj (.far:PipeScriptExecuterIn)
                      0086d050    00000050     AppControl.obj (.far:PipeScriptExecuterOut)
                      0086d0a0    00000050     AppControl.obj (.far:PipeTMIn)
                      0086d0f0    00000050     AppControl.obj (.far:PipeTMOut)
                      0086d140    00000050     AppControl.obj (.far:g_AOTimecal_1)
                      0086d190    0000002e     AppControl.obj (.far:PS)
                      0086d1be    00000002     --HOLE--
                      0086d1c0    00000024     (.common:g_GlobalVars)
                      0086d1e4    00000004     --HOLE--
                      0086d1e8    00000020     (.common:CORES_STATUS)
                      0086d208    00000020     (.common:outb)
                      0086d228    00000014     (.common:edmaObj)
                      0086d23c    0000000c     AppControl.obj (.far:PipeADInUtil)
                      0086d248    0000000c     AppControl.obj (.far:PipeADOutUtil)
                      0086d254    0000000c     AppControl.obj (.far:PipeBlocksAccumulatorInUtil)
                      0086d260    0000000c     AppControl.obj (.far:PipeCodecInUtil)
                      0086d26c    0000000c     AppControl.obj (.far:PipeCondOutUtil)
                      0086d278    0000000c     AppControl.obj (.far:PipeDetectionOutUtil)
                      0086d284    0000000c     AppControl.obj (.far:PipeImpOutUtil)
                      0086d290    0000000c     AppControl.obj (.far:PipePCIOutUtil)
                      0086d29c    0000000c     AppControl.obj (.far:PipeScriptExecuterInUtil)
                      0086d2a8    0000000c     AppControl.obj (.far:PipeScriptExecuterOutUtil)
                      0086d2b4    0000000c     AppControl.obj (.far:PipeTMInUtil)
                      0086d2c0    0000000c     AppControl.obj (.far:PipeTMOutUtil)
                      0086d2cc    00000008     (.common:info)
                      0086d2d4    00000004     --HOLE--
                      0086d2d8    00000008     (.common:parmbuf)
    
    .const     0    0086d2e0    00005c58     
                      0086d2e0    00002dc4     PEngine_pe66.oe66 (.const:xdc_runtime_Text_charTab__A)
                      008700a4    00000977     ipc.ae66 : Ipc.obj (.const:.string)
                      00870a1b    00000001     PEngine_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_localTimerBaseId__C)
                      00870a1c    00000518     sysbios.ae66 : BIOS.obj (.const:.string)
                      00870f34    00000004     ti.targets.rts6000.ae66 : Assert.oe66 (.const:.string)
                      00870f38    00000400     PEngine_pe66.oe66 (.const:ti_sysbios_family_c66_Cache_marvalues__C)
                      00871338    00000184     PEngine_pe66.oe66 (.const:xdc_runtime_Text_nodeTab__A)
                      008714bc    00000160     FilterScriptExecuter.obj (.const:.string)
                      0087161c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_GateMP_A_invalidClose__C)
                      00871620    00000101     rts6600_elf.lib : ctype.obj (.const:.string:_ctypes_)
                      00871721    00000001     --HOLE-- [fill = 0]
                      00871722    00000002     PEngine_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Module__id__C)
                      00871724    000000d8     PEngine_pe66.oe66 (.const:.string)
                      008717fc    000000bc     AppControl.obj (.const:.string)
                      008718b8    00000070     AOPEngineDriver.obj (.const:_ZN16CAOPEngineDriver24m_arrAnalogOutputMappingE)
                      00871928    00000068     FilterDetection.obj (.const:_ZTV16CFilterDetection)
                      00871990    00000068     FilterPEngineCond.obj (.const:_ZTV18CFilterPEngineCond)
                      008719f8    00000068     FilterScriptExecuter.obj (.const:_ZTV21CFilterScriptExecuter)
                      00871a60    00000068     FilterImpedanceMeasurement.obj (.const:_ZTV26CFilterImpedanceMeasurment)
                      00871ac8    00000068     FILTER.obj (.const:_ZTV7CFilter)
                      00871b30    00000058     ti.targets.rts6000.ae66 : Error.oe66 (.const:.string)
                      00871b88    00000054     FilterPEngineCond.obj (.const:.string)
                      00871bdc    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_GateMP_A_invalidDelete__C)
                      00871be0    00000048     Pipe.obj (.const:_ZTV5CPipe)
                      00871c28    00000044     FILTER.obj (.const:_ZTV7AFilter)
                      00871c6c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_GateMP_E_gateUnavailable__C)
                      00871c70    00000044     PEngine_pe66.oe66 (.const:xdc_runtime_Startup_sfxnTab__A)
                      00871cb4    00000040     ti.targets.rts6000.ae66 : Text.oe66 (.const:.string)
                      00871cf4    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_GateMP_E_localGate__C)
                      00871cf8    00000040     Pipe.obj (.const:_ZTV5IPipe)
                      00871d38    0000003c     AOPEngineDriver.obj (.const:_ZTV16CAOPEngineDriver)
                      00871d74    00000038     utils.obj (.const:.string)
                      00871dac    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_GateMP_LM_create__C)
                      00871db0    00000038     AODriver.obj (.const:_ZTV9CAODriver)
                      00871de8    00000038     PEngine_pe66.oe66 (.const:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__FXNS__C)
                      00871e20    00000034     PEngine_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Object__PARAMS__C)
                      00871e54    00000034     PEngine_pe66.oe66 (.const:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__PARAMS__C)
                      00871e88    00000030     PEngine_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_Object__PARAMS__C)
                      00871eb8    00000030     PEngine_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Object__PARAMS__C)
                      00871ee8    0000002c     ti.targets.rts6000.ae66 : Startup.oe66 (.const:.string)
                      00871f14    0000002c     PEngine_pe66.oe66 (.const:ti_sdo_ipc_ListMP_Object__PARAMS__C)
                      00871f40    0000002c     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_Module__FXNS__C)
                      00871f6c    0000002c     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_Module__FXNS__C)
                      00871f98    0000002c     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_Module__FXNS__C)
                      00871fc4    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_GateMP_LM_delete__C)
                      00871fc8    00000028     AOPEngineDriver.obj (.const:$P$T4$8)
                      00871ff0    00000028     WATCHDOG.obj (.const:_ZTV9CWatchDog)
                      00872018    00000028     PEngine_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_Module__FXNS__C)
                      00872040    00000028     PEngine_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__FXNS__C)
                      00872068    00000028     PEngine_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_Module__FXNS__C)
                      00872090    00000028     PEngine_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_Object__PARAMS__C)
                      008720b8    00000028     PEngine_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Module__FXNS__C)
                      008720e0    00000028     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Swi_Object__PARAMS__C)
                      00872108    00000026     rts6600_elf.lib : typeinfo_.obj (.const:.typeinfo:_ZTSN10__cxxabiv121__vmi_class_type_infoE)
                      0087212e    00000002     PEngine_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Module__loggerDefined__C)
                      00872130    00000025     rts6600_elf.lib : typeinfo_.obj (.const:.typeinfo:_ZTSN10__cxxabiv120__si_class_type_infoE)
                      00872155    00000001     --HOLE-- [fill = 0]
                      00872156    00000002     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Ipc_Module__id__C)
                      00872158    00000024     rts6600_elf.lib : _printfi.obj (.const:.string)
                      0087217c    00000024     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_Object__PARAMS__C)
                      008721a0    00000024     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_Object__PARAMS__C)
                      008721c4    00000024     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_Object__PARAMS__C)
                      008721e8    00000024     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateAll_Module__FXNS__C)
                      0087220c    00000024     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateHwi_Module__FXNS__C)
                      00872230    00000024     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_Module__FXNS__C)
                      00872254    00000024     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Module__FXNS__C)
                      00872278    00000024     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateSwi_Module__FXNS__C)
                      0087229c    00000024     PEngine_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Object__PARAMS__C)
                      008722c0    00000024     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Object__PARAMS__C)
                      008722e4    00000024     PEngine_pe66.oe66 (.const:xdc_runtime_GateNull_Module__FXNS__C)
                      00872308    00000024     PEngine_pe66.oe66 (.const:xdc_runtime_knl_GateThread_Module__FXNS__C)
                      0087232c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_GateMP_LM_enter__C)
                      00872330    00000022     rts6600_elf.lib : typeinfo_.obj (.const:.typeinfo:_ZTSN10__cxxabiv117__class_type_infoE)
                      00872352    00000002     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Ipc_generateSlaveDataForHost__C)
                      00872354    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_GateMP_LM_leave__C)
                      00872358    00000022     PEngine_pe66.oe66 (.const:xdc_runtime_Startup_sfxnRts__A)
                      0087237a    00000002     PEngine_pe66.oe66 (.const:ti_sdo_ipc_ListMP_Module__id__C)
                      0087237c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_GateMP_LM_open__C)
                      00872380    00000020     AppControl.obj (.const:_ZTV9CAppContr)
                      008723a0    00000020     PEngine_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Object__DESC__C)
                      008723c0    00000020     PEngine_pe66.oe66 (.const:ti_sdo_ipc_ListMP_Object__DESC__C)
                      008723e0    00000020     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Notify_Object__DESC__C)
                      00872400    00000020     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_Object__DESC__C)
                      00872420    00000020     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_Object__DESC__C)
                      00872440    00000020     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_Object__DESC__C)
                      00872460    00000020     PEngine_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_Object__DESC__C)
                      00872480    00000020     PEngine_pe66.oe66 (.const:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__DESC__C)
                      008724a0    00000020     PEngine_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__DESC__C)
                      008724c0    00000020     PEngine_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__PARAMS__C)
                      008724e0    00000020     PEngine_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_Object__DESC__C)
                      00872500    00000020     PEngine_pe66.oe66 (.const:ti_sdo_utils_List_Object__DESC__C)
                      00872520    00000020     PEngine_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Object__DESC__C)
                      00872540    00000020     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateAll_Object__DESC__C)
                      00872560    00000020     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateHwi_Object__DESC__C)
                      00872580    00000020     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_Object__DESC__C)
                      008725a0    00000020     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Object__DESC__C)
                      008725c0    00000020     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateSwi_Object__DESC__C)
                      008725e0    00000020     PEngine_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Object__DESC__C)
                      00872600    00000020     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Queue_Object__DESC__C)
                      00872620    00000020     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Object__DESC__C)
                      00872640    00000020     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Swi_Object__DESC__C)
                      00872660    00000020     PEngine_pe66.oe66 (.const:ti_sysbios_xdcruntime_GateThreadSupport_Object__DESC__C)
                      00872680    00000020     PEngine_pe66.oe66 (.const:xdc_runtime_GateNull_Object__DESC__C)
                      008726a0    00000020     PEngine_pe66.oe66 (.const:xdc_runtime_knl_GateThread_Object__DESC__C)
                      008726c0    0000001d     FilterImpedanceMeasurement.obj (.const:.typeinfo:_ZTS26CFilterImpedanceMeasurment)
                      008726dd    00000001     --HOLE-- [fill = 0]
                      008726de    00000002     PEngine_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Module__id__C)
                      008726e0    0000001c     aostack.obj (.const:.string)
                      008726fc    00000018     ti.targets.rts6000.ae66 : System.oe66 (.const:.string)
                      00872714    00000018     FILTER.obj (.const:.typeinfo:_ZTI7AFilter)
                      0087272c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Module__diagsEnabled__C)
                      00872730    00000018     FilterScriptExecuter.obj (.const:.typeinfo:_ZTS21CFilterScriptExecuter)
                      00872748    00000018     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Notify_Object__PARAMS__C)
                      00872760    00000018     PEngine_pe66.oe66 (.const:ti_sdo_utils_List_Object__PARAMS__C)
                      00872778    00000018     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateAll_Object__PARAMS__C)
                      00872790    00000018     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateHwi_Object__PARAMS__C)
                      008727a8    00000018     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_Object__PARAMS__C)
                      008727c0    00000018     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Object__PARAMS__C)
                      008727d8    00000018     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateSwi_Object__PARAMS__C)
                      008727f0    00000018     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Queue_Object__PARAMS__C)
                      00872808    00000018     PEngine_pe66.oe66 (.const:ti_sysbios_xdcruntime_GateThreadSupport_Object__PARAMS__C)
                      00872820    00000018     PEngine_pe66.oe66 (.const:xdc_runtime_GateNull_Object__PARAMS__C)
                      00872838    00000018     PEngine_pe66.oe66 (.const:xdc_runtime_knl_GateThread_Object__PARAMS__C)
                      00872850    00000015     FilterPEngineCond.obj (.const:.typeinfo:_ZTS18CFilterPEngineCond)
                      00872865    00000001     --HOLE-- [fill = 0]
                      00872866    00000002     PEngine_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Module__loggerDefined__C)
                      00872868    00000014     PEngine0.obj (.const:.string)
                      0087287c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Module__diagsIncluded__C)
                      00872880    00000013     AOPEngineDriver.obj (.const:.typeinfo:_ZTS16CAOPEngineDriver)
                      00872893    00000001     --HOLE-- [fill = 0]
                      00872894    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Module__diagsMask__C)
                      00872898    00000013     Pipe.obj (.const:.typeinfo:_ZTS16CCriticalSection)
                      008728ab    00000001     --HOLE-- [fill = 0]
                      008728ac    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Module__loggerFxn2__C)
                      008728b0    00000013     FilterDetection.obj (.const:.typeinfo:_ZTS16CFilterDetection)
                      008728c3    00000001     --HOLE-- [fill = 0]
                      008728c4    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Module__loggerFxn4__C)
                      008728c8    00000010     FILTER.obj (.const:.typeinfo:_ZTS13CErrorSupport)
                      008728d8    00000010     Pipe.obj (.const:_ZTV16CCriticalSection)
                      008728e8    00000010     rts6600_elf.lib : typeinfo_.obj (.const:_ZTVN10__cxxabiv117__class_type_infoE)
                      008728f8    00000010                     : typeinfo_.obj (.const:_ZTVN10__cxxabiv120__si_class_type_infoE)
                      00872908    00000010                     : typeinfo_.obj (.const:_ZTVN10__cxxabiv121__vmi_class_type_infoE)
                      00872918    00000010     PEngine_pe66.oe66 (.const:ti_sysbios_family_c64p_EventCombiner_EVTMASK__C)
                      00872928    0000000d     rts6600_elf.lib : typeinfo_.obj (.const:.typeinfo:_ZTSSt9type_info)
                      00872935    00000001     --HOLE-- [fill = 0]
                      00872936    00000002     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Notify_Module__id__C)
                      00872938    0000000c     AOPEngineDriver.obj (.const:.typeinfo:_ZTI16CAOPEngineDriver)
                      00872944    0000000c     FilterDetection.obj (.const:.typeinfo:_ZTI16CFilterDetection)
                      00872950    0000000c     FilterPEngineCond.obj (.const:.typeinfo:_ZTI18CFilterPEngineCond)
                      0087295c    0000000c     FilterScriptExecuter.obj (.const:.typeinfo:_ZTI21CFilterScriptExecuter)
                      00872968    0000000c     FilterImpedanceMeasurement.obj (.const:.typeinfo:_ZTI26CFilterImpedanceMeasurment)
                      00872974    0000000c     Pipe.obj (.const:.typeinfo:_ZTI5CPipe)
                      00872980    0000000c     FILTER.obj (.const:.typeinfo:_ZTI7CFilter)
                      0087298c    0000000c     rts6600_elf.lib : typeinfo_.obj (.const:.typeinfo:_ZTIN10__cxxabiv117__class_type_infoE)
                      00872998    0000000c                     : typeinfo_.obj (.const:.typeinfo:_ZTIN10__cxxabiv120__si_class_type_infoE)
                      008729a4    0000000c                     : typeinfo_.obj (.const:.typeinfo:_ZTIN10__cxxabiv121__vmi_class_type_infoE)
                      008729b0    0000000c     PEngine_pe66.oe66 (.const:xdc_runtime_Startup_firstFxns__A)
                      008729bc    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Module__loggerObj__C)
                      008729c0    0000000b     AODriver.obj (.const:.typeinfo:_ZTS9CAODriver)
                      008729cb    00000001     --HOLE-- [fill = 0]
                      008729cc    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Ipc_A_addrNotCacheAligned__C)
                      008729d0    0000000b     AppControl.obj (.const:.typeinfo:_ZTS9CAppContr)
                      008729db    00000001     --HOLE-- [fill = 0]
                      008729dc    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Ipc_A_addrNotInSharedRegion__C)
                      008729e0    0000000b     WATCHDOG.obj (.const:.typeinfo:_ZTS9CWatchDog)
                      008729eb    00000001     --HOLE-- [fill = 0]
                      008729ec    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Ipc_A_internal__C)
                      008729f0    00000009     FILTER.obj (.const:.typeinfo:_ZTS7AFilter)
                      008729f9    00000001     --HOLE-- [fill = 0]
                      008729fa    00000002     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Notify_numLines__C)
                      008729fc    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Ipc_A_invArgument__C)
                      00872a00    00000009     FILTER.obj (.const:.typeinfo:_ZTS7CFilter)
                      00872a09    00000001     --HOLE-- [fill = 0]
                      00872a0a    00000002     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Notify_reservedEvents__C)
                      00872a0c    00000008     FILTER.obj (.const:.typeinfo:_ZTI13CErrorSupport)
                      00872a14    00000008     Pipe.obj (.const:.typeinfo:_ZTI16CCriticalSection)
                      00872a1c    00000008     Pipe.obj (.const:.typeinfo:_ZTI5IPipe)
                      00872a24    00000008     AODriver.obj (.const:.typeinfo:_ZTI9CAODriver)
                      00872a2c    00000008     AppControl.obj (.const:.typeinfo:_ZTI9CAppContr)
                      00872a34    00000008     WATCHDOG.obj (.const:.typeinfo:_ZTI9CWatchDog)
                      00872a3c    00000008     rts6600_elf.lib : typeinfo_.obj (.const:.typeinfo:_ZTISt9type_info)
                      00872a44    00000008     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Idle_funcList__C)
                      00872a4c    00000008     PEngine_pe66.oe66 (.const:xdc_runtime_Startup_firstFxns__C)
                      00872a54    00000008     PEngine_pe66.oe66 (.const:xdc_runtime_Startup_lastFxns__C)
                      00872a5c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Ipc_A_invParam__C)
                      00872a60    00000007     Pipe.obj (.const:.typeinfo:_ZTS5CPipe)
                      00872a67    00000001     --HOLE-- [fill = 0]
                      00872a68    00000007     Pipe.obj (.const:.typeinfo:_ZTS5IPipe)
                      00872a6f    00000001     --HOLE-- [fill = 0]
                      00872a70    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Ipc_A_nullArgument__C)
                      00872a74    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Ipc_A_nullPointer__C)
                      00872a78    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Ipc_E_internal__C)
                      00872a7c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Ipc_E_nameFailed__C)
                      00872a80    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Ipc_E_versionMismatch__C)
                      00872a84    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Ipc_Module__diagsEnabled__C)
                      00872a88    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Ipc_Module__diagsIncluded__C)
                      00872a8c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Ipc_Module__diagsMask__C)
                      00872a90    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Ipc_numUserFxns__C)
                      00872a94    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Ipc_procSync__C)
                      00872a98    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Ipc_userFxns__C)
                      00872a9c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_ListMP_Module__diagsEnabled__C)
                      00872aa0    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_ListMP_Module__diagsIncluded__C)
                      00872aa4    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_ListMP_Module__diagsMask__C)
                      00872aa8    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_A_invalidMsg__C)
                      00872aac    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_A_invalidObj__C)
                      00872ab0    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_A_invalidQueueId__C)
                      00872ab4    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_A_procIdInvalid__C)
                      00872ab8    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_A_unregisteredTransport__C)
                      00872abc    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Instance_State_highList__O)
                      00872ac0    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Instance_State_normalList__O)
                      00872ac4    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_LM_putLocal__C)
                      00872ac8    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Module__diagsEnabled__C)
                      00872acc    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Module__diagsIncluded__C)
                      00872ad0    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Module__diagsMask__C)
                      00872ad4    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Module__loggerFxn4__C)
                      00872ad8    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Module__loggerObj__C)
                      00872adc    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Object__count__C)
                      00872ae0    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Notify_A_alreadyRegistered__C)
                      00872ae4    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Notify_A_internal__C)
                      00872ae8    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Notify_A_invArgument__C)
                      00872aec    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Notify_A_notRegistered__C)
                      00872af0    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Notify_A_reservedEvent__C)
                      00872af4    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Notify_Module__diagsEnabled__C)
                      00872af8    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Notify_Module__diagsIncluded__C)
                      00872afc    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Notify_Module__diagsMask__C)
                      00872b00    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Notify_Module__gateObj__C)
                      00872b04    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Notify_Object__heap__C)
                      00872b08    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Notify_numEvents__C)
                      00872b0c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_Notify_sendEventPollCount__C)
                      00872b10    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_A_addrOutOfRange__C)
                      00872b14    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_A_idTooLarge__C)
                      00872b18    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_A_noHeap__C)
                      00872b1c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_A_region0Invalid__C)
                      00872b20    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_A_regionInvalid__C)
                      00872b24    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_A_reserveTooMuch__C)
                      00872b28    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_INVALIDSRPTR__C)
                      00872b2c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_Module__diagsEnabled__C)
                      00872b30    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_Module__diagsIncluded__C)
                      00872b34    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_Module__diagsMask__C)
                      00872b38    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_numOffsetBits__C)
                      00872b3c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_offsetMask__C)
                      00872b40    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_Interrupt_INTERDSPINT__C)
                      00872b44    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_Interrupt_IPCAR0__C)
                      00872b48    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_Interrupt_IPCGR0__C)
                      00872b4c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_Interrupt_KICK0__C)
                      00872b50    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_Interrupt_KICK1__C)
                      00872b54    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_MultiProcSetup_A_invalidProcessor__C)
                      00872b58    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsEnabled__C)
                      00872b5c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsIncluded__C)
                      00872b60    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsMask__C)
                      00872b64    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_MultiProcSetup_procMap__C)
                      00872b68    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_MultiProcSetup_procMap__A)
                      00872b6c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_NotifySetup_dspIntVectId__C)
                      00872b70    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_A_invSemNum__C)
                      00872b74    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_Module__diagsEnabled__C)
                      00872b78    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_Module__diagsIncluded__C)
                      00872b7c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_Module__diagsMask__C)
                      00872b80    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_baseAddr__C)
                      00872b84    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_numSems__C)
                      00872b88    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_reservedMaskArr__A)
                      00872b8c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_reservedMaskArr__C)
                      00872b90    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_A_invalidAction__C)
                      00872b94    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsEnabled__C)
                      00872b98    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsIncluded__C)
                      00872b9c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsMask__C)
                      00872ba0    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_action__C)
                      00872ba4    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_E_gateRemotelyOpened__C)
                      00872ba8    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_Module__diagsEnabled__C)
                      00872bac    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_Module__diagsIncluded__C)
                      00872bb0    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_Module__diagsMask__C)
                      00872bb4    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_numInstances__C)
                      00872bb8    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_A_align__C)
                      00872bbc    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_A_heapSize__C)
                      00872bc0    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_A_invalidFree__C)
                      00872bc4    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_A_zeroBlock__C)
                      00872bc8    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_E_memory__C)
                      00872bcc    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_Module__diagsEnabled__C)
                      00872bd0    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_Module__diagsIncluded__C)
                      00872bd4    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_Module__diagsMask__C)
                      00872bd8    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_interfaces_IGateMPSupport_Interface__BASE__C)
                      00872bdc    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_interfaces_IMessageQTransport_Interface__BASE__C)
                      00872be0    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_interfaces_INetworkTransport_Interface__BASE__C)
                      00872be4    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_interfaces_INotifyDriver_Interface__BASE__C)
                      00872be8    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_interfaces_ITransport_Interface__BASE__C)
                      00872bec    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsEnabled__C)
                      00872bf0    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsIncluded__C)
                      00872bf4    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsMask__C)
                      00872bf8    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__heap__C)
                      00872bfc    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_A_invalidValueLen__C)
                      00872c00    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_A_messageSize__C)
                      00872c04    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_semMultiBlock__O)
                      00872c08    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_semRemoteWait__O)
                      00872c0c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_swiRequest__O)
                      00872c10    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_swiResponse__O)
                      00872c14    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsEnabled__C)
                      00872c18    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsIncluded__C)
                      00872c1c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsMask__C)
                      00872c20    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_notifyEventId__C)
                      00872c24    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_timeout__C)
                      00872c28    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShmSetup_priority__C)
                      00872c2c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_Instance_State_swiObj__O)
                      00872c30    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_Module__diagsEnabled__C)
                      00872c34    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_Module__diagsIncluded__C)
                      00872c38    00000004     PEngine_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_Module__diagsMask__C)
                      00872c3c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_utils_INameServerRemote_Interface__BASE__C)
                      00872c40    00000004     PEngine_pe66.oe66 (.const:ti_sdo_utils_MultiProc_A_invalidMultiProcId__C)
                      00872c44    00000004     PEngine_pe66.oe66 (.const:ti_sdo_utils_MultiProc_Module__diagsEnabled__C)
                      00872c48    00000004     PEngine_pe66.oe66 (.const:ti_sdo_utils_MultiProc_Module__diagsIncluded__C)
                      00872c4c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_utils_MultiProc_Module__diagsMask__C)
                      00872c50    00000004     PEngine_pe66.oe66 (.const:ti_sdo_utils_MultiProc_procAddrMode__C)
                      00872c54    00000004     PEngine_pe66.oe66 (.const:ti_sdo_utils_NameServer_A_invArgument__C)
                      00872c58    00000004     PEngine_pe66.oe66 (.const:ti_sdo_utils_NameServer_A_invalidLen__C)
                      00872c5c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_utils_NameServer_E_entryExists__C)
                      00872c60    00000004     PEngine_pe66.oe66 (.const:ti_sdo_utils_NameServer_E_maxReached__C)
                      00872c64    00000004     PEngine_pe66.oe66 (.const:ti_sdo_utils_NameServer_Instance_State_freeList__O)
                      00872c68    00000004     PEngine_pe66.oe66 (.const:ti_sdo_utils_NameServer_Instance_State_nameList__O)
                      00872c6c    00000004     PEngine_pe66.oe66 (.const:ti_sdo_utils_NameServer_Module__diagsEnabled__C)
                      00872c70    00000004     PEngine_pe66.oe66 (.const:ti_sdo_utils_NameServer_Module__diagsIncluded__C)
                      00872c74    00000004     PEngine_pe66.oe66 (.const:ti_sdo_utils_NameServer_Module__diagsMask__C)
                      00872c78    00000004     PEngine_pe66.oe66 (.const:ti_sdo_utils_NameServer_Object__count__C)
                      00872c7c    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_family_c64p_EventCombiner_EVTRegs__C)
                      00872c80    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_family_c64p_Exception_E_exceptionMax__C)
                      00872c84    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_family_c64p_Exception_exceptionHook__C)
                      00872c88    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_family_c64p_Exception_externalHook__C)
                      00872c8c    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_family_c64p_Exception_internalHook__C)
                      00872c90    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_family_c64p_Exception_nmiHook__C)
                      00872c94    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_E_alreadyDefined__C)
                      00872c98    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_E_handleNotFound__C)
                      00872c9c    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_E_invalidIntNum__C)
                      00872ca0    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_INTRMUX1Address__C)
                      00872ca4    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_LD_end__C)
                      00872ca8    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_LM_begin__C)
                      00872cac    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__diagsEnabled__C)
                      00872cb0    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__diagsIncluded__C)
                      00872cb4    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__diagsMask__C)
                      00872cb8    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__loggerFxn1__C)
                      00872cbc    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__loggerFxn8__C)
                      00872cc0    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__loggerObj__C)
                      00872cc4    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_family_c66_Cache_E_invalidL1CacheSize__C)
                      00872cc8    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_family_c66_Cache_E_invalidL2CacheSize__C)
                      00872ccc    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_family_c66_Cache_atomicBlockSize__C)
                      00872cd0    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_A_badContext__C)
                      00872cd4    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_A_enterTaskDisabled__C)
                      00872cd8    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_Instance_State_pendQ__O)
                      00872cdc    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_Module__diagsEnabled__C)
                      00872ce0    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_Module__diagsIncluded__C)
                      00872ce4    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_Module__diagsMask__C)
                      00872ce8    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_A_badContext__C)
                      00872cec    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Instance_State_sem__O)
                      00872cf0    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Module__diagsEnabled__C)
                      00872cf4    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Module__diagsIncluded__C)
                      00872cf8    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Module__diagsMask__C)
                      00872cfc    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateSwi_A_badContext__C)
                      00872d00    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateSwi_Module__diagsEnabled__C)
                      00872d04    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateSwi_Module__diagsIncluded__C)
                      00872d08    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateSwi_Module__diagsMask__C)
                      00872d0c    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_hal_Hwi_E_stackOverflow__C)
                      00872d10    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_heaps_HeapBuf_Instance_State_freeList__O)
                      00872d14    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_heaps_HeapBuf_Object__count__C)
                      00872d18    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_heaps_HeapBuf_numConstructedHeaps__C)
                      00872d1c    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_A_align__C)
                      00872d20    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_A_heapSize__C)
                      00872d24    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_A_invalidFree__C)
                      00872d28    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_A_zeroBlock__C)
                      00872d2c    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_E_memory__C)
                      00872d30    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C)
                      00872d34    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C)
                      00872d38    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Module__diagsMask__C)
                      00872d3c    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Module__gateObj__C)
                      00872d40    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Object__count__C)
                      00872d44    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_reqAlign__C)
                      00872d48    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Clock_LM_begin__C)
                      00872d4c    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Clock_LM_tick__C)
                      00872d50    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Clock_LW_delayed__C)
                      00872d54    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module_State_clockQ__O)
                      00872d58    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__diagsEnabled__C)
                      00872d5c    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__diagsIncluded__C)
                      00872d60    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__diagsMask__C)
                      00872d64    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__loggerFxn1__C)
                      00872d68    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__loggerFxn2__C)
                      00872d6c    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__loggerObj__C)
                      00872d70    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Idle_funcList__A)
                      00872d74    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_A_badContext__C)
                      00872d78    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_A_noEvents__C)
                      00872d7c    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_A_overflow__C)
                      00872d80    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_A_pendTaskDisabled__C)
                      00872d84    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Instance_State_pendQ__O)
                      00872d88    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_LM_pend__C)
                      00872d8c    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_LM_post__C)
                      00872d90    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__diagsEnabled__C)
                      00872d94    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__diagsIncluded__C)
                      00872d98    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__diagsMask__C)
                      00872d9c    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__loggerFxn2__C)
                      00872da0    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__loggerFxn4__C)
                      00872da4    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__loggerObj__C)
                      00872da8    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Swi_A_badPriority__C)
                      00872dac    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Swi_LD_end__C)
                      00872db0    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Swi_LM_begin__C)
                      00872db4    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Swi_LM_post__C)
                      00872db8    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__diagsEnabled__C)
                      00872dbc    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__diagsIncluded__C)
                      00872dc0    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__diagsMask__C)
                      00872dc4    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__loggerFxn1__C)
                      00872dc8    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__loggerFxn4__C)
                      00872dcc    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__loggerObj__C)
                      00872dd0    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Swi_Object__count__C)
                      00872dd4    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Task_A_badPriority__C)
                      00872dd8    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Task_E_spOutOfBounds__C)
                      00872ddc    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Task_E_stackOverflow__C)
                      00872de0    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Task_LD_block__C)
                      00872de4    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Task_LD_exit__C)
                      00872de8    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Task_LD_ready__C)
                      00872dec    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Task_LM_setPri__C)
                      00872df0    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Task_LM_switch__C)
                      00872df4    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Task_Module_State_inactiveQ__O)
                      00872df8    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__diagsEnabled__C)
                      00872dfc    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__diagsIncluded__C)
                      00872e00    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__diagsMask__C)
                      00872e04    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__loggerFxn2__C)
                      00872e08    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__loggerFxn4__C)
                      00872e0c    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__loggerObj__C)
                      00872e10    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Task_Object__count__C)
                      00872e14    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Task_allBlockedFunc__C)
                      00872e18    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Task_numConstructedTasks__C)
                      00872e1c    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_A_notAvailable__C)
                      00872e20    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_E_cannotSupport__C)
                      00872e24    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_Module__diagsEnabled__C)
                      00872e28    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_Module__diagsIncluded__C)
                      00872e2c    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_Module__diagsMask__C)
                      00872e30    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_anyMaskHigh__C)
                      00872e34    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_anyMask__C)
                      00872e38    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_freqDivisor__C)
                      00872e3c    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_numLocalTimers__C)
                      00872e40    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_numTimerDevices__C)
                      00872e44    00000004     PEngine_pe66.oe66 (.const:ti_sysbios_xdcruntime_GateThreadSupport_Instance_State_gate__O)
                      00872e48    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_Assert_E_assertFailed__C)
                      00872e4c    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_Core_A_initializedParams__C)
                      00872e50    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_Core_Module__diagsEnabled__C)
                      00872e54    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_Core_Module__diagsIncluded__C)
                      00872e58    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_Core_Module__diagsMask__C)
                      00872e5c    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_Error_E_memory__C)
                      00872e60    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_Error_Module__diagsEnabled__C)
                      00872e64    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_Error_Module__diagsIncluded__C)
                      00872e68    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_Error_Module__diagsMask__C)
                      00872e6c    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_Error_Module__loggerFxn8__C)
                      00872e70    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_Error_Module__loggerObj__C)
                      00872e74    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_Error_policyFxn__C)
                      00872e78    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_Error_policy__C)
                      00872e7c    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_Error_raiseHook__C)
                      00872e80    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_IGateProvider_Interface__BASE__C)
                      00872e84    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_IHeap_Interface__BASE__C)
                      00872e88    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_IModule_Interface__BASE__C)
                      00872e8c    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_Log_L_error__C)
                      00872e90    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_Memory_defaultHeapInstance__C)
                      00872e94    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_Startup_execImpl__C)
                      00872e98    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_Startup_maxPasses__C)
                      00872e9c    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_Startup_sfxnRts__C)
                      00872ea0    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_Startup_sfxnTab__C)
                      00872ea4    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_SysMin_bufSize__C)
                      00872ea8    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_SysMin_outputFunc__C)
                      00872eac    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_System_Module__gateObj__C)
                      00872eb0    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_System_abortFxn__C)
                      00872eb4    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_System_exitFxn__C)
                      00872eb8    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_System_extendFxn__C)
                      00872ebc    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_System_maxAtexitHandlers__C)
                      00872ec0    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_Text_charTab__C)
                      00872ec4    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_Text_nameEmpty__C)
                      00872ec8    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_Text_nameStatic__C)
                      00872ecc    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_Text_nameUnknown__C)
                      00872ed0    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_Text_nodeTab__C)
                      00872ed4    00000004     PEngine_pe66.oe66 (.const:xdc_runtime_Text_visitRopeFxn__C)
                      00872ed8    00000002     PEngine_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_Module__id__C)
                      00872eda    00000002     PEngine_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_numEntries__C)
                      00872edc    00000002     PEngine_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_translate__C)
                      00872ede    00000002     PEngine_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_Interrupt_enableKick__C)
                      00872ee0    00000002     PEngine_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_MultiProcSetup_Module__id__C)
                      00872ee2    00000002     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_Module__id__C)
                      00872ee4    00000002     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_Module__id__C)
                      00872ee6    00000002     PEngine_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_Module__id__C)
                      00872ee8    00000002     PEngine_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_Module__id__C)
                      00872eea    00000002     PEngine_pe66.oe66 (.const:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__id__C)
                      00872eec    00000002     PEngine_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__id__C)
                      00872eee    00000002     PEngine_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_Module__id__C)
                      00872ef0    00000002     PEngine_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_notifyEventId__C)
                      00872ef2    00000002     PEngine_pe66.oe66 (.const:ti_sdo_utils_MultiProc_Module__id__C)
                      00872ef4    00000002     PEngine_pe66.oe66 (.const:ti_sdo_utils_MultiProc_numProcessors__C)
                      00872ef6    00000002     PEngine_pe66.oe66 (.const:ti_sdo_utils_MultiProc_numProcsInCluster__C)
                      00872ef8    00000002     PEngine_pe66.oe66 (.const:ti_sdo_utils_NameServer_Module__id__C)
                      00872efa    00000002     PEngine_pe66.oe66 (.const:ti_sysbios_family_c64p_Exception_Module__id__C)
                      00872efc    00000002     PEngine_pe66.oe66 (.const:ti_sysbios_family_c64p_Exception_useInternalBuffer__C)
                      00872efe    00000002     PEngine_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__id__C)
                      00872f00    00000002     PEngine_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__loggerDefined__C)
                      00872f02    00000002     PEngine_pe66.oe66 (.const:ti_sysbios_family_c66_Cache_Module__id__C)
                      00872f04    00000002     PEngine_pe66.oe66 (.const:ti_sysbios_family_c66_Cache_registerRTSSynch__C)
                      00872f06    00000002     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_Module__id__C)
                      00872f08    00000002     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Module__id__C)
                      00872f0a    00000002     PEngine_pe66.oe66 (.const:ti_sysbios_gates_GateSwi_Module__id__C)
                      00872f0c    00000002     PEngine_pe66.oe66 (.const:ti_sysbios_hal_Hwi_Module__id__C)
                      00872f0e    00000002     PEngine_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Module__id__C)
                      00872f10    00000002     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__id__C)
                      00872f12    00000002     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__loggerDefined__C)
                      00872f14    00000002     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__id__C)
                      00872f16    00000002     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__loggerDefined__C)
                      00872f18    00000002     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__id__C)
                      00872f1a    00000002     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__loggerDefined__C)
                      00872f1c    00000002     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__id__C)
                      00872f1e    00000002     PEngine_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__loggerDefined__C)
                      00872f20    00000002     PEngine_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_Module__id__C)
                      00872f22    00000002     PEngine_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_startupNeeded__C)
                      00872f24    00000002     PEngine_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_useTimer64pRegMap__C)
                      00872f26    00000002     PEngine_pe66.oe66 (.const:xdc_runtime_Core_Module__id__C)
                      00872f28    00000002     PEngine_pe66.oe66 (.const:xdc_runtime_Error_Module__loggerDefined__C)
                      00872f2a    00000002     PEngine_pe66.oe66 (.const:xdc_runtime_Error_maxDepth__C)
                      00872f2c    00000002     PEngine_pe66.oe66 (.const:xdc_runtime_Memory_Module__id__C)
                      00872f2e    00000002     PEngine_pe66.oe66 (.const:xdc_runtime_SysMin_flushAtExit__C)
                      00872f30    00000002     PEngine_pe66.oe66 (.const:xdc_runtime_Text_charCnt__C)
                      00872f32    00000002     PEngine_pe66.oe66 (.const:xdc_runtime_Text_isLoaded__C)
                      00872f34    00000002     PEngine_pe66.oe66 (.const:xdc_runtime_Text_registryModsLastId__C)
                      00872f36    00000002     PEngine_pe66.oe66 (.const:xdc_runtime_Text_unnamedModsLastId__C)
    
    .fardata   0    00872f38    000019c4     UNINITIALIZED
                      00872f38    00000800     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_GateMP_Module_State_0_remoteCustom1Gates__A)
                      00873738    000001e0     rts6600_elf.lib : defs.obj (.fardata:_ftable)
                      00873918    00000180     PEngine_pe66.oe66 (.fardata:ti_sysbios_timers_timer64_Timer_Module_State_0_device__A)
                      00873a98    00000150     PEngine_pe66.oe66 (.fardata:ti_sysbios_knl_Swi_Object__table__V)
                      00873be8    0000012c     PEngine_pe66.oe66 (.fardata:ti_sdo_utils_NameServer_Object__table__V)
                      00873d14    00000004     rts6600_elf.lib : _lock.obj (.fardata:_lock)
                      00873d18    000000b8     PEngine_pe66.oe66 (.fardata:ti_sysbios_knl_Task_Object__table__V)
                      00873dd0    000000a0     rts6600_elf.lib : write.obj (.fardata:_stream)
                      00873e70    00000090     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_SharedRegion_Module_State_0_regions__A)
                      00873f00    00000080     FilterImpedanceMeasurement.obj (.fardata:CONST_TABLE_FMA)
                      00873f80    00000080     FilterImpedanceMeasurement.obj (.fardata:CONST_TABLE_HEADSTAGE)
                      00874000    00000080     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_GateMP_Module_State_0_remoteSystemGates__A)
                      00874080    00000080     PEngine_pe66.oe66 (.fardata:ti_sysbios_knl_Swi_Module_State_0_readyQ__A)
                      00874100    00000080     PEngine_pe66.oe66 (.fardata:ti_sysbios_knl_Task_Module_State_0_readyQ__A)
                      00874180    00000080     PEngine_pe66.oe66 (.fardata:ti_sysbios_timers_timer64_Timer_Module_State_0_gctrl__A)
                      00874200    00000080     PEngine_pe66.oe66 (.fardata:ti_sysbios_timers_timer64_Timer_Module_State_0_handles__A)
                      00874280    00000080     PEngine_pe66.oe66 (.fardata:ti_sysbios_timers_timer64_Timer_Module_State_0_intFreqs__A)
                      00874300    00000078     rts6600_elf.lib : write.obj (.fardata:_device)
                      00874378    0000006c     PEngine_pe66.oe66 (.fardata:ti_sysbios_family_c64p_Hwi_Module__state__V)
                      008743e4    00000068     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_MessageQ_Module__state__V)
                      0087444c    00000050     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_GateMP_Module__state__V)
                      0087449c    00000004     rts6600_elf.lib : _lock.obj (.fardata:_unlock)
                      008744a0    00000050     PEngine_pe66.oe66 (.fardata:ti_sysbios_timers_timer64_Timer_Object__table__V)
                      008744f0    00000048     PEngine_pe66.oe66 (.fardata:ti_sysbios_knl_Task_Module__state__V)
                      00874538    00000040     PEngine_pe66.oe66 (.fardata:ti_sysbios_gates_GateMutex_Object__table__V)
                      00874578    00000030     PEngine_pe66.oe66 (.fardata:ti_sysbios_family_c64p_Exception_Module__state__V)
                      008745a8    0000002c     PEngine_pe66.oe66 (.fardata:ti_sysbios_knl_Clock_Module__state__V)
                      008745d4    00000004     rts6600_elf.lib : defs.obj (.fardata)
                      008745d8    00000028     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_Ipc_Module_State_0_procEntry__A)
                      00874600    00000024     PEngine_pe66.oe66 (.fardata:ti_sysbios_BIOS_Module__state__V)
                      00874624    00000004     rts6600_elf.lib : dtor_list.obj (.fardata)
                      00874628    00000020     edma3utils.obj (.fardata:hQDMAChannel)
                      00874648    00000020     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_MessageQ_Module_State_0_heaps__A)
                      00874668    00000020     PEngine_pe66.oe66 (.fardata:xdc_runtime_Error_IgnoreBlock)
                      00874688    00000020     PEngine_pe66.oe66 (.fardata:xdc_runtime_System_Module_State_0_atexitHandlers__A)
                      008746a8    0000001c     PEngine_pe66.oe66 (.fardata:ti_sysbios_knl_Swi_Module__state__V)
                      008746c4    00000004     rts6600_elf.lib : errno.obj (.fardata)
                      008746c8    00000018     PEngine_pe66.oe66 (.fardata:ti_sysbios_family_c64p_Hwi_Object__table__V)
                      008746e0    00000018     PEngine_pe66.oe66 (.fardata:ti_sysbios_gates_GateMutexPri_Object__table__V)
                      008746f8    00000018     PEngine_pe66.oe66 (.fardata:ti_sysbios_heaps_HeapMem_Object__table__V)
                      00874710    00000018     PEngine_pe66.oe66 (.fardata:ti_sysbios_knl_Semaphore_Object__table__V)
                      00874728    00000018     PEngine_pe66.oe66 (.fardata:ti_sysbios_timers_timer64_Timer_Module__state__V)
                      00874740    00000010     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_MessageQ_Module_State_0_transports__A)
                      00874750    00000010     PEngine_pe66.oe66 (.fardata:ti_sysbios_gates_GateAll_Object__table__V)
                      00874760    0000000c     rts6600_elf.lib : exit.obj (.fardata)
                      0087476c    0000000c     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_Ipc_Module__state__V)
                      00874778    0000000c     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_family_c647x_Interrupt_Module__state__V)
                      00874784    0000000c     PEngine_pe66.oe66 (.fardata:ti_sdo_utils_NameServer_Module__state__V)
                      00874790    0000000c     PEngine_pe66.oe66 (.fardata:ti_sysbios_gates_GateSwi_Object__table__V)
                      0087479c    0000000c     PEngine_pe66.oe66 (.fardata:xdc_runtime_SysMin_Module__state__V)
                      008747a8    00000008     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_GateMP_Module__root__V)
                      008747b0    00000008     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_ListMP_Module__root__V)
                      008747b8    00000008     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_Notify_Module_State_0_notifyHandles__A)
                      008747c0    00000008     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_Notify_Module__root__V)
                      008747c8    00000008     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_Notify_Module__state__V)
                      008747d0    00000008     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_family_c647x_Interrupt_Module_State_0_args__A)
                      008747d8    00000008     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_gates_GateHWSem_Module__root__V)
                      008747e0    00000008     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_gates_GateMPSupportNull_Module__root__V)
                      008747e8    00000008     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_gates_GatePeterson_Module__root__V)
                      008747f0    00000008     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_heaps_HeapMemMP_Module__root__V)
                      008747f8    00000008     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__root__V)
                      00874800    00000008     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__root__V)
                      00874808    00000008     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_transports_TransportShmSetup_Module_State_0_handles__A)
                      00874810    00000008     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_transports_TransportShm_Module__root__V)
                      00874818    00000008     PEngine_pe66.oe66 (.fardata:ti_sdo_utils_List_Module__root__V)
                      00874820    00000008     PEngine_pe66.oe66 (.fardata:ti_sdo_utils_MultiProc_Module__state__V)
                      00874828    00000008     PEngine_pe66.oe66 (.fardata:ti_sdo_utils_NameServer_Module_State_0_nsRemoteHandle__A)
                      00874830    00000008     PEngine_pe66.oe66 (.fardata:ti_sdo_utils_NameServer_Module__root__V)
                      00874838    00000008     PEngine_pe66.oe66 (.fardata:ti_sysbios_family_c64p_Hwi_Module__root__V)
                      00874840    00000008     PEngine_pe66.oe66 (.fardata:ti_sysbios_gates_GateAll_Module__root__V)
                      00874848    00000008     PEngine_pe66.oe66 (.fardata:ti_sysbios_gates_GateHwi_Module__root__V)
                      00874850    00000008     PEngine_pe66.oe66 (.fardata:ti_sysbios_gates_GateMutexPri_Module__root__V)
                      00874858    00000008     PEngine_pe66.oe66 (.fardata:ti_sysbios_gates_GateMutex_Module__root__V)
                      00874860    00000008     PEngine_pe66.oe66 (.fardata:ti_sysbios_gates_GateSwi_Module__root__V)
                      00874868    00000008     PEngine_pe66.oe66 (.fardata:ti_sysbios_hal_Hwi_Object__table__V)
                      00874870    00000008     PEngine_pe66.oe66 (.fardata:ti_sysbios_heaps_HeapMem_Module__root__V)
                      00874878    00000008     PEngine_pe66.oe66 (.fardata:ti_sysbios_knl_Queue_Module__root__V)
                      00874880    00000008     PEngine_pe66.oe66 (.fardata:ti_sysbios_knl_Semaphore_Module__root__V)
                      00874888    00000008     PEngine_pe66.oe66 (.fardata:ti_sysbios_knl_Swi_Module__root__V)
                      00874890    00000008     PEngine_pe66.oe66 (.fardata:ti_sysbios_xdcruntime_GateThreadSupport_Module__root__V)
                      00874898    00000008     PEngine_pe66.oe66 (.fardata:xdc_runtime_GateNull_Module__root__V)
                      008748a0    00000008     PEngine_pe66.oe66 (.fardata:xdc_runtime_Registry_Module__state__V)
                      008748a8    00000008     PEngine_pe66.oe66 (.fardata:xdc_runtime_Startup_Module__state__V)
                      008748b0    00000008     PEngine_pe66.oe66 (.fardata:xdc_runtime_System_Module__state__V)
                      008748b8    00000008     PEngine_pe66.oe66 (.fardata:xdc_runtime_knl_GateThread_Module__root__V)
                      008748c0    00000004     rts6600_elf.lib : vars.obj (.fardata)
                      008748c4    00000004     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_ListMP_Module__state__V)
                      008748c8    00000004     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_Notify_Module_State_0_notifyHandles_0__A)
                      008748cc    00000004     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_SharedRegion_Module__state__V)
                      008748d0    00000004     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_Notify_Module_State_0_notifyHandles_1__A)
                      008748d4    00000004     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_heaps_HeapMemMP_Module__state__V)
                      008748d8    00000004     PEngine_pe66.oe66 (.fardata:ti_sdo_ipc_transports_TransportShmSetup_Module__state__V)
                      008748dc    00000004     PEngine_pe66.oe66 (.fardata:ti_sysbios_heaps_HeapBuf_Module__state__V)
                      008748e0    00000004     PEngine_pe66.oe66 (.fardata:ti_sdo_utils_MultiProc_Module_State_0_clusterProcList__A)
                      008748e4    00000004     PEngine_pe66.oe66 (.fardata:xdc_runtime_Memory_Module__state__V)
                      008748e8    00000004     PEngine_pe66.oe66 (.fardata:ti_sysbios_gates_GateHwi_Object__table__V)
                      008748ec    00000002     PEngine_pe66.oe66 (.fardata:xdc_runtime_Error_Module__state__V)
                      008748ee    00000002     --HOLE--
                      008748f0    00000004     PEngine_pe66.oe66 (.fardata:ti_sysbios_knl_Task_Module_State_0_idleTask__A)
                      008748f4    00000004     --HOLE--
                      008748f8    00000004     PEngine_pe66.oe66 (.fardata:xdc_runtime_GateNull_Object__table__V)
    
    .switch    0    00875900    000005ac     
                      00875900    00000190     FilterScriptExecuter.obj (.switch:_ZN21CFilterScriptExecuter9runScriptEv)
                      00875a90    00000130     AOPEngineDriver.obj (.switch:_ZN16CAOPEngineDriver21UpdateFEConfigurationEtt)
                      00875bc0    000000a8     AppControl.obj (.switch:_ZN9CAppContr13HandleCommandE11ESourceTypeP10StreamBase)
                      00875c68    00000078     AOPEngineDriver.obj (.switch:_ZN16CAOPEngineDriver6HandleEPti)
                      00875ce0    00000054     FILTER.obj (.switch:_ZN7CFilter9TransformEv)
                      00875d34    0000003c     ti.csl.ae66 : csl_edma3HwControl.oe66 (.switch:CSL_edma3HwControl)
                      00875d70    00000038     rts6600_elf.lib : _printfi.obj (.switch:__TI_printfi)
                      00875da8    00000030     AOPEngineDriver.obj (.switch:_ZN16CAOPEngineDriver21UpdateRMConfigurationEt)
                      00875dd8    00000028     AOPEngineDriver.obj (.switch:_Z19GetCalibrationValuePss)
                      00875e00    00000020     ti.csl.ae66 : csl_edma3GetHwStatus.oe66 (.switch:CSL_edma3GetHwStatus)
                      00875e20    00000020     AOPEngineDriver.obj (.switch:_ZN16CAOPEngineDriver17SetElectrodeStateEii)
                      00875e40    00000018     WatchDog_6474.obj (.switch:_Z13GetTimer_pRegi)
                      00875e58    00000014     ti.csl.ae66 : csl_edma3HwChannelControl.oe66 (.switch:CSL_edma3HwChannelControl)
                      00875e6c    00000010     AOPEngineDriver.obj (.switch:_ZN16CAOPEngineDriver18SetRemarkToChannelEsi)
                      00875e7c    00000010     FilterScriptExecuter.obj (.switch:_ZN21CFilterScriptExecuter22HandleScriptRunCommandEP10StreamBase)
                      00875e8c    00000010     AppControl.obj (.switch:_ZN9CAppContr10HandleDataE11ESourceTypeP10StreamBase)
                      00875e9c    00000010     ipc.ae66 : Ipc.obj (.switch:ti_sdo_ipc_GateMP_Instance_finalize__E)
    
    .cio       0    00875eb0    00000120     UNINITIALIZED
                      00875eb0    00000120     rts6600_elf.lib : trgmsg.obj (.cio)
    
    ti.sdo.ipc.SharedRegion_0 
    *          0    0c000000    00200000     NOLOAD SECTION
                      0c000000    00200000     --HOLE--
    
    .ethsect   0    80000000    1ffffc70     UNINITIALIZED
                      80000000    1ffffc70     AODDR3Mem.obj (.ethsect)
    
    .stack     0    00874900    00001000     UNINITIALIZED
                      00874900    00000008     boot.ae66 : boot.oe66 (.stack)
                      00874908    00000ff8     --HOLE--
    
    .bss       0    00876200    0000001d     UNINITIALIZED
                      00876200    00000004     (.common:AODACPIP)
                      00876204    00000004     (.common:Ipc_sr0MemorySetup)
                      00876208    00000004     (.common:PE_sort)
                      0087620c    00000004     (.common:_ZN7DDR3Mem10writeIndexE)
                      00876210    00000004     (.common:_ZN7DDR3Mem9coreIndexE)
                      00876214    00000004     (.common:__dso_handle)
                      00876218    00000004     (.common:edmaContext)
                      0087621c    00000001     (.common:received_message)
    
    .neardata 
    *          0    00876220    000000dc     UNINITIALIZED
                      00876220    00000068     AppControl.obj (.neardata)
                      00876288    0000004e     AOPEngineDriver.obj (.neardata)
                      008762d6    00000001     AOTimeCalcualtor.obj (.neardata)
                      008762d7    00000001     --HOLE--
                      008762d8    0000000c     edma3utils.obj (.neardata)
                      008762e4    00000008     DSP_iir.obj (.neardata)
                      008762ec    00000008     PEngine0.obj (.neardata)
                      008762f4    00000004     FilterScriptExecuter.obj (.neardata)
                      008762f8    00000004     WATCHDOG.obj (.neardata)
    
    .rodata    0    008762fc    00000024     UNINITIALIZED
                      008762fc    00000024     PEngine_pe66.oe66 (.rodata)
    
    .cinit     0    00876320    00000b90     
                      00876320    000009af     (.cinit..fardata.load) [load image, compression = rle]
                      00876ccf    000000e6     (.cinit..ethsect.load) [load image, compression = rle]
                      00876db5    0000006e     (.cinit..neardata.load) [load image, compression = rle]
                      00876e23    0000002a     (.cinit..rodata.load) [load image, compression = rle]
                      00876e4d    0000000d     (.cinit..far.load) [load image, compression = rle]
                      00876e5a    0000000d     (.cinit.systemHeap.load) [load image, compression = rle]
                      00876e67    00000009     (.cinit..bss.load) [load image, compression = rle]
                      00876e70    00000008     (__TI_handler_table)
                      00876e78    00000038     (__TI_cinit_table)
    
    .init_array 
    *          0    00800000    00000000     UNINITIALIZED
    
    systemHeap 
    *          0    00800000    0003c000     UNINITIALIZED
                      00800000    0003c000     PEngine_pe66.oe66 (systemHeap)
    
    .vecs      0    00876000    00000200     
                      00876000    00000200     PEngine_pe66.oe66 (.vecs)
    
    xdc.meta   0    00800000    000000f8     COPY SECTION
                      00800000    000000f8     PEngine_pe66.oe66 (xdc.meta)
    
    .text      0    0c200000    00053d20     
                      0c200000    0000eee0     AOPEngineDriver.obj (.text)
                      0c20eee0    00005880     AppControl.obj (.text)
                      0c214760    00003e80     FilterScriptExecuter.obj (.text)
                      0c2185e0    00002460     FilterPEngineCond.obj (.text)
                      0c21aa40    00001c40     rts6600_elf.lib : _printfi.obj (.text:__TI_printfi)
                      0c21c680    00001b40     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_GateMP_Instance_init__E)
                      0c21e1c0    00001800     FilterDetection.obj (.text)
                      0c21f9c0    00001540     FilterImpedanceMeasurement.obj (.text)
                      0c220f00    00001240     ipc.ae66 : Ipc.obj (.text:Ipc_attach)
                      0c222140    000010a0     AOMemoryMangment.obj (.text)
                      0c2231e0    00000de0     DSP_iir.obj (.text)
                      0c223fc0    00000b20     FILTER.obj (.text)
                      0c224ae0    00000b20     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_Instance_init__E)
                      0c225600    00000b00              : Ipc.obj (.text:ti_sdo_ipc_GateMP_setRegion0Reserved__F)
                      0c226100    00000ac0              : Ipc.obj (.text:MessageQ_put)
                      0c226bc0    00000aa0              : Ipc.obj (.text:ti_sdo_ipc_heaps_HeapMemMP_free__E)
                      0c227660    00000a80              : Ipc.obj (.text:ti_sdo_ipc_heaps_HeapMemMP_alloc__E)
                      0c2280e0    00000a60              : Ipc.obj (.text:ti_sdo_ipc_ListMP_Instance_init__E)
                      0c228b40    00000a20     MDDriverUtils.obj (.text)
                      0c229560    00000960     Pipe.obj (.text)
                      0c229ec0    000008a0     ti.targets.rts6000.ae66 : System.oe66 (.text:xdc_runtime_System_doPrint__I)
                      0c22a760    00000860     edma3utils.obj (.text)
                      0c22afc0    00000820     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_init__E)
                      0c22b7e0    00000800              : Ipc.obj (.text:ti_sdo_ipc_heaps_HeapMemMP_Instance_init__E)
                      0c22bfe0    000007c0              : Ipc.obj (.text:ti_sdo_ipc_GateMP_Instance_finalize__E)
                      0c22c7a0    00000780     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c64p_Exception_handler__I)
                      0c22cf20    00000780                  : BIOS.obj (.text:ti_sysbios_knl_Semaphore_pend__E)
                      0c22d6a0    00000720     ipc.ae66 : Ipc.obj (.text:Notify_registerEvent)
                      0c22ddc0    00000700              : Ipc.obj (.text:Notify_sendEvent)
                      0c22e4c0    000006e0     utils.ae66 : UTILS.obj (.text:NameServer_add)
                      0c22eba0    000006e0     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_Module_startup__E)
                      0c22f280    000006c0     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_Ipc_procSyncStart__I)
                      0c22f940    00000680     rts6600_elf.lib : _printfi.obj (.text:_pconv_a)
                      0c22ffc0    00000640     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_allocUnprotected__E)
                      0c230600    00000620     ipc.ae66 : Ipc.obj (.text:ListMP_getHead)
                      0c230c20    00000620              : Ipc.obj (.text:ti_sdo_ipc_SharedRegion_start__F)
                      0c231240    00000600     HashTableVoid.obj (.text)
                      0c231840    00000600     rts6600_elf.lib : divd.obj (.text:__c6xabi_divd)
                      0c231e40    00000600     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_swiFxn__I)
                      0c232440    00000600     utils.obj (.text)
                      0c232a40    000005e0     ipc.ae66 : Ipc.obj (.text:Notify_registerEventSingle)
                      0c233020    000005e0              : Ipc.obj (.text:Notify_unregisterEventSingle)
                      0c233600    000005e0              : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_put__E)
                      0c233be0    000005c0     rts6600_elf.lib : _printfi.obj (.text:_pconv_g)
                      0c2341a0    000005a0     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_freeUnprotected__E)
                      0c234740    00000580     ti.csl.ae66 : csl_edma3HwChannelControl.oe66 (.text:csl_section:edma3:CSL_edma3HwChannelControl)
                      0c234cc0    00000520     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_gates_GatePeterson_Instance_init__E)
                      0c2351e0    00000500              : Ipc.obj (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_get__F)
                      0c2356e0    000004e0     AOTimeCalcualtor.obj (.text)
                      0c235bc0    000004e0     ti.csl.ae66 : csl_edma3HwControl.oe66 (.text:csl_section:edma3:CSL_edma3HwControl)
                      0c2360a0    000004e0     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Instance_init__E)
                      0c236580    000004e0     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c66_Cache_startup__I)
                      0c236a60    000004a0     ipc.ae66 : Ipc.obj (.text:ListMP_putTail)
                      0c236f00    00000460     rts6600_elf.lib : _printfi.obj (.text:_pconv_e)
                      0c237360    00000440     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_heaps_HeapMemMP_getStats__E)
                      0c2377a0    00000420     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_gates_GateMutexPri_enter__E)
                      0c237bc0    00000400     ipc.ae66 : Ipc.obj (.text:Ipc_start)
                      0c237fc0    00000400              : Ipc.obj (.text:ti_sdo_ipc_heaps_HeapMemMP_postInit__I)
                      0c2383c0    00000400     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_knl_Task_setPri__E)
                      0c2387c0    000003e0     rts6600_elf.lib : fputs.obj (.text:fputs)
                      0c238ba0    000003e0     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_Notify_Instance_init__E)
                      0c238f80    000003e0              : Ipc.obj (.text:ti_sdo_ipc_SharedRegion_reserveMemory__F)
                      0c239360    000003c0     ti.csl.ae66 : csl_edma3HwSetup.oe66 (.text:csl_section:edma3:CSL_edma3HwSetup)
                      0c239720    000003a0     utils.ae66 : UTILS.obj (.text:ti_sdo_utils_NameServer_registerRemoteDriver__E)
                      0c239ac0    00000380     ipc.ae66 : Ipc.obj (.text:GateMP_sharedMemReq)
                      0c239e40    00000380              : Ipc.obj (.text:HeapMemMP_sharedMemReq)
                      0c23a1c0    00000380     WatchDog_6474.obj (.text)
                      0c23a540    00000380     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_MessageQ_registerTransport__F)
                      0c23a8c0    00000360     AODriver.obj (.text)
                      0c23ac20    00000360     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_GateMP_attach__F)
                      0c23af80    00000360              : Ipc.obj (.text:ti_sdo_ipc_MessageQ_unregisterTransport__F)
                      0c23b2e0    00000360     utils.ae66 : UTILS.obj (.text:ti_sdo_utils_NameServer_isRegistered__E)
                      0c23b640    00000360                : UTILS.obj (.text:ti_sdo_utils_NameServer_unregisterRemoteDriver__E)
                      0c23b9a0    00000340     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_knl_Task_schedule__I)
                      0c23bce0    00000320                  : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_deviceConfig__I)
                      0c23c000    00000300     ipc.ae66 : Ipc.obj (.text:GateMP_openByAddr)
                      0c23c300    00000300     utils.ae66 : UTILS.obj (.text:NameServer_getLocal)
                      0c23c600    00000300     ipc.ae66 : Ipc.obj (.text:SharedRegion_getSRPtr)
                      0c23c900    00000300              : Ipc.obj (.text:ti_sdo_ipc_GateMP_openRegion0Reserved__F)
                      0c23cc00    00000300              : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_isr__I)
                      0c23cf00    00000300              : Ipc.obj (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_attach__E)
                      0c23d200    00000300              : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_openByAddr__E)
                      0c23d500    00000300     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_knl_Swi_runLoop__I)
                      0c23d800    000002e0     ipc.ae66 : Ipc.obj (.text:SharedRegion_getPtr)
                      0c23dae0    000002e0     ti.csl.ae66 : csl_edma3GetHwStatus.oe66 (.text:csl_section:edma3:CSL_edma3GetHwStatus)
                      0c23ddc0    000002e0     rts6600_elf.lib : _printfi.obj (.text:fcvt)
                      0c23e0a0    000002c0     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_Instance_init__E)
                      0c23e360    000002c0                  : BIOS.obj (.text:ti_sysbios_knl_Task_Module_startup__E)
                      0c23e620    000002a0     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_sharedMemReq__F)
                      0c23e8c0    000002a0              : Ipc.obj (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_swiFxnRequest__I)
                      0c23eb60    000002a0     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_knl_Clock_workFunc__E)
                      0c23ee00    00000280     ipc.ae66 : Ipc.obj (.text:ListMP_sharedMemReq)
                      0c23f080    00000280     rts6600_elf.lib : divf.obj (.text:__c6xabi_divf)
                      0c23f300    00000280                     : _printfi.obj (.text:_pconv_f)
                      0c23f580    00000280     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_disableEvent__E)
                      0c23f800    00000280     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_reconfig__E)
                      0c23fa80    00000280                  : BIOS.obj (.text:ti_sysbios_knl_Semaphore_post__E)
                      0c23fd00    00000260     WATCHDOG.obj (.text)
                      0c23ff60    00000260     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShmSetup_attach__E)
                      0c2401c0    00000260     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_dispatchCore__I)
                      0c240420    00000260     ti.targets.rts6000.ae66 : Startup.oe66 (.text:xdc_runtime_Startup_startMods__I)
                      0c240680    00000240     ipc.ae66 : Ipc.obj (.text:GateMP_enter)
                      0c2408c0    00000240              : Ipc.obj (.text:GateMP_leave)
                      0c240b00    00000240     rts6600_elf.lib : imath64.obj (.text:__c6xabi_divull)
                      0c240d40    00000240                     : _printfi.obj (.text:_ltostr)
                      0c240f80    00000240     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_GateMP_start__F)
                      0c2411c0    00000240              : Ipc.obj (.text:ti_sdo_ipc_family_c647x_Interrupt_Module_startup__E)
                      0c241400    00000240     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c64p_Exception_internalHandler__I)
                      0c241640    00000240     ti.targets.rts6000.ae66 : Core-mem.oe66 (.text:xdc_runtime_Core_createObject__I)
                      0c241880    00000240     PEngine_pe66.oe66 (.text:xdc_runtime_System_printfExtend__I)
                      0c241ac0    00000220     rts6600_elf.lib : fputc.obj (.text:fputc)
                      0c241ce0    00000220                     : setvbuf.obj (.text:setvbuf)
                      0c241f00    00000220     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_knl_Swi_run__I)
                      0c242120    00000220                  : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_setPeriodMicroSecs__E)
                      0c242340    00000200                  : c64p_Hwi_disp_always.obj (.text:_ti_sysbios_family_c64p_Hwi_dispatchAlways)
                      0c242540    00000200     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_GateMP_getRegion0ReservedSize__F)
                      0c242740    00000200              : Ipc.obj (.text:ti_sdo_ipc_Notify_execMany__I)
                      0c242940    00000200              : Ipc.obj (.text:ti_sdo_ipc_family_c647x_MultiProcSetup_init__I)
                      0c242b40    00000200              : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_sendEvent__E)
                      0c242d40    00000200              : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_Instance_finalize__E)
                      0c242f40    00000200     ti.targets.rts6000.ae66 : Error.oe66 (.text:xdc_runtime_Error_policyDefault__E)
                      0c243140    000001e0     ipc.ae66 : Ipc.obj (.text:ListMP_openByAddr)
                      0c243320    000001e0     utils.ae66 : UTILS.obj (.text:MultiProc_setLocalId)
                      0c243500    000001e0     aostack.obj (.text)
                      0c2436e0    000001e0     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_gates_GateMutex_enter__E)
                      0c2438c0    000001e0     ti.targets.rts6000.ae66 : Text.oe66 (.text:xdc_runtime_Text_putSite__E)
                      0c243aa0    000001c0     utils.ae66 : UTILS.obj (.text:NameServer_getHandle)
                      0c243c60    000001c0     ipc.ae66 : Ipc.obj (.text:SharedRegion_isCacheEnabled)
                      0c243e20    000001c0     rts6600_elf.lib : imath40.obj (.text:__c6xabi_divul)
                      0c243fe0    000001c0     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_registerEvent__E)
                      0c2441a0    000001c0     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_getFreq__E)
                      0c244360    000001a0     rts6600_elf.lib : hostrename.obj (.text:HOSTrename)
                      0c244500    000001a0     ipc.ae66 : Ipc.obj (.text:HeapMemMP_openByAddr)
                      0c2446a0    000001a0              : Ipc.obj (.text:SharedRegion_getCacheLineSize)
                      0c244840    000001a0              : Ipc.obj (.text:SharedRegion_getHeap)
                      0c2449e0    000001a0              : Ipc.obj (.text:ti_sdo_ipc_Notify_Module_startup__E)
                      0c244b80    000001a0              : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_enableEvent__E)
                      0c244d20    000001a0              : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_unregisterEvent__E)
                      0c244ec0    000001a0              : Ipc.obj (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_cbFxn__I)
                      0c245060    000001a0     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c66_Cache_block__I)
                      0c245200    000001a0                  : BIOS.obj (.text:ti_sysbios_heaps_HeapBuf_Module_startup__E)
                      0c2453a0    000001a0                  : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_start__E)
                      0c245540    000001a0     ti.targets.rts6000.ae66 : Core-smem.oe66 (.text:xdc_runtime_Core_constructObject__I)
                      0c2456e0    00000180     rts6600_elf.lib : frexp.obj (.text:frexp)
                      0c245860    00000180     sysbios.ae66 : c64p_Exception_asm.obj (.text)
                      0c2459e0    00000180     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_GateMP_createLocal__F)
                      0c245b60    00000180              : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShmSetup_sharedMemReq__E)
                      0c245ce0    00000180     utils.ae66 : UTILS.obj (.text:ti_sdo_utils_NameServer_removeLocal__I)
                      0c245e60    00000180     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_knl_Swi_Instance_init__E)
                      0c245fe0    00000180                  : BIOS.obj (.text:ti_sysbios_knl_Task_exit__E)
                      0c246160    00000180                  : BIOS.obj (.text:ti_sysbios_knl_Task_startCore__E)
                      0c2462e0    00000160     ipc.ae66 : Ipc.obj (.text:GateMP_close)
                      0c246440    00000160              : Ipc.obj (.text:Notify_intLineRegistered)
                      0c2465a0    00000160     rts6600_elf.lib : sqrt.obj (.text:sqrt)
                      0c246700    00000160     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_gates_GateHWSem_Instance_init__E)
                      0c246860    00000160              : Ipc.obj (.text:ti_sdo_ipc_gates_GatePeterson_enter__E)
                      0c2469c0    00000160              : Ipc.obj (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_finalize__E)
                      0c246b20    00000160     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_knl_Swi_post__E)
                      0c246c80    00000160     ti.targets.rts6000.ae66 : Text.oe66 (.text:xdc_runtime_Text_putMod__E)
                      0c246de0    00000140     rts6600_elf.lib : fclose.obj (.text:__TI_closefile)
                      0c246f20    00000140                     : getdevice.obj (.text:getdevice)
                      0c247060    00000140                     : ldexp.obj (.text:ldexp)
                      0c2471a0    00000140     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_ListMP_Instance_finalize__E)
                      0c2472e0    00000140              : Ipc.obj (.text:ti_sdo_ipc_Notify_exec__F)
                      0c247420    00000140              : Ipc.obj (.text:ti_sdo_ipc_heaps_HeapMemMP_Instance_finalize__E)
                      0c247560    00000140     utils.ae66 : UTILS.obj (.text:ti_sdo_utils_NameServer_Module_startup__E)
                      0c2476a0    00000140     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_Module_startup__E)
                      0c2477e0    00000140                  : BIOS.obj (.text:ti_sysbios_gates_GateSwi_enter__E)
                      0c247920    00000140                  : BIOS.obj (.text:ti_sysbios_knl_Semaphore_Instance_init__E)
                      0c247a60    00000140                  : BIOS.obj (.text:ti_sysbios_knl_Task_blockI__E)
                      0c247ba0    00000140     ti.targets.rts6000.ae66 : Core-mem.oe66 (.text:xdc_runtime_Core_deleteObject__I)
                      0c247ce0    00000140                             : Text.oe66 (.text:xdc_runtime_Text_putLab__E)
                      0c247e20    00000120     rts6600_elf.lib : vec_newdel.obj (.text:__cxa_vec_ctor)
                      0c247f40    00000120     boot.ae66 : autoinit.oe66 (.text:_auto_init_elf)
                      0c248060    00000120     ti.csl.ae66 : csl_edma3ChannelOpen.oe66 (.text:csl_section:edma3:CSL_edma3ChannelOpen)
                      0c248180    00000120                 : csl_edma3GetBaseAddress.oe66 (.text:csl_section:edma:CSL_edma3ccGetModuleBaseAddr)
                      0c2482a0    00000120     rts6600_elf.lib : fseek.obj (.text:fseek)
                      0c2483c0    00000120     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_MessageQ_Module_startup__E)
                      0c2484e0    00000120     PEngine_pe66.oe66 (.text:ti_sdo_ipc_Notify_create)
                      0c248600    00000120     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_family_c647x_Interrupt_intRegister__E)
                      0c248720    00000120     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_Instance_init__E)
                      0c248840    00000120                  : BIOS.obj (.text:ti_sysbios_knl_Task_unblockI__E)
                      0c248960    00000100     AODDR3Mem.obj (.text)
                      0c248a60    00000100     AOPEngineDriver.obj (.text:_ZN24StreamCommandMotorConfigC1Ev)
                      0c248b60    00000100     rts6600_elf.lib : copy_decompress_rle.obj (.text:__TI_decompress_rle_core)
                      0c248c60    00000100                     : _io_perm.obj (.text:__TI_wrt_ok)
                      0c248d60    00000100                     : fixdull.obj (.text:__c6xabi_fixdull)
                      0c248e60    00000100                     : atoi.obj (.text:atoi)
                      0c248f60    00000100     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_Notify_Instance_finalize__E)
                      0c249060    00000100              : Ipc.obj (.text:ti_sdo_ipc_SharedRegion_attach__F)
                      0c249160    00000100              : Ipc.obj (.text:ti_sdo_ipc_SharedRegion_clearReservedMemory__F)
                      0c249260    00000100              : Ipc.obj (.text:ti_sdo_ipc_gates_GateHWSem_Module_startup__E)
                      0c249360    00000100              : Ipc.obj (.text:ti_sdo_ipc_gates_GateHWSem_enter__E)
                      0c249460    00000100              : Ipc.obj (.text:ti_sdo_ipc_gates_GateMPSupportNull_enter__E)
                      0c249560    00000100     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_Instance_finalize__E)
                      0c249660    00000100                  : BIOS.obj (.text:ti_sysbios_gates_GateMutexPri_leave__E)
                      0c249760    00000100                  : BIOS.obj (.text:ti_sysbios_knl_Swi_restoreHwi__E)
                      0c249860    00000100                  : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_initDevice__I)
                      0c249960    00000100                  : BIOS.obj (.text:ti_sysbios_xdcruntime_GateThreadSupport_leave__E)
                      0c249a60    00000100     ti.targets.rts6000.ae66 : Error.oe66 (.text:xdc_runtime_Error_print__E)
                      0c249b60    00000100                             : Memory.oe66 (.text:xdc_runtime_Memory_alloc__E)
                      0c249c60    00000100                             : Startup.oe66 (.text:xdc_runtime_Startup_exec__E)
                      0c249d60    000000e0     rts6600_elf.lib : hostlseek.obj (.text:HOSTlseek)
                      0c249e40    000000e0                     : hostopen.obj (.text:HOSTopen)
                      0c249f20    000000e0                     : hostwrite.obj (.text:HOSTwrite)
                      0c24a000    000000e0     PEngine0.obj (.text)
                      0c24a0e0    000000e0     AppControl.obj (.text:_ZN37StreamCommandWirelessConfigureChannelC1Ev)
                      0c24a1c0    000000e0     rts6600_elf.lib : fixdlli.obj (.text:__c6xabi_fixdlli)
                      0c24a2a0    000000e0                     : divi.obj (.text:__divi)
                      0c24a380    000000e0                     : close.obj (.text:close)
                      0c24a460    000000e0                     : exit.obj (.text:exit)
                      0c24a540    000000e0                     : ltoa.obj (.text:ltoa)
                      0c24a620    000000e0                     : memset.obj (.text:memset)
                      0c24a700    000000e0                     : printf.obj (.text:printf)
                      0c24a7e0    000000e0     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_family_c647x_Interrupt_intShmStub__I)
                      0c24a8c0    000000e0              : Ipc.obj (.text:ti_sdo_ipc_gates_GateMPSupportNull_leave__E)
                      0c24a9a0    000000e0     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_alloc__E)
                      0c24aa80    000000e0                  : BIOS.obj (.text:ti_sysbios_knl_Swi_Instance_finalize__E)
                      0c24ab60    000000e0                  : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_startup__E)
                      0c24ac40    000000e0     ti.targets.rts6000.ae66 : Text.oe66 (.text:xdc_runtime_Text_visitRope2__I)
                      0c24ad20    000000c0     rts6600_elf.lib : hostread.obj (.text:HOSTread)
                      0c24ade0    000000c0                     : hostunlink.obj (.text:HOSTunlink)
                      0c24aea0    000000c0     ipc.ae66 : Ipc.obj (.text:ListMP_create)
                      0c24af60    000000c0     rts6600_elf.lib : dtor_list.obj (.text:_Z11__TI_atexitPFYvPvES_S_)
                      0c24b020    000000c0                     : new_.obj (.text:_Znwj)
                      0c24b0e0    000000c0                     : fflush.obj (.text:__TI_doflush)
                      0c24b1a0    000000c0                     : fixflli.obj (.text:__c6xabi_fixflli)
                      0c24b260    000000c0                     : fltllid.obj (.text:__c6xabi_fltllid)
                      0c24b320    000000c0                     : fltllif.obj (.text:__c6xabi_fltllif)
                      0c24b3e0    000000c0                     : divu.obj (.text:__divu)
                      0c24b4a0    000000c0                     : remi.obj (.text:__remi)
                      0c24b560    000000c0                     : _printfi.obj (.text:_ecpy)
                      0c24b620    000000c0     ti.csl.ae66 : csl_edma3HwChannelSetup.oe66 (.text:csl_section:edma3:CSL_edma3HwChannelSetupQue)
                      0c24b6e0    000000c0                 : csl_edma3Open.oe66 (.text:csl_section:edma3:CSL_edma3Open)
                      0c24b7a0    000000c0     PEngine_pe66.oe66 (.text:ti_sdo_ipc_GateMP_create)
                      0c24b860    000000c0     PEngine_pe66.oe66 (.text:ti_sdo_ipc_ListMP_create)
                      0c24b920    000000c0     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_family_c647x_NotifySetup_attach__E)
                      0c24b9e0    000000c0     PEngine_pe66.oe66 (.text:ti_sdo_ipc_gates_GatePeterson_Object__create__S)
                      0c24baa0    000000c0     PEngine_pe66.oe66 (.text:ti_sdo_ipc_gates_GatePeterson_create)
                      0c24bb60    000000c0     PEngine_pe66.oe66 (.text:ti_sdo_ipc_heaps_HeapMemMP_Object__create__S)
                      0c24bc20    000000c0     PEngine_pe66.oe66 (.text:ti_sdo_ipc_heaps_HeapMemMP_create)
                      0c24bce0    000000c0     PEngine_pe66.oe66 (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_create)
                      0c24bda0    000000c0     PEngine_pe66.oe66 (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__create__S)
                      0c24be60    000000c0     PEngine_pe66.oe66 (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_create)
                      0c24bf20    000000c0     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_detach__E)
                      0c24bfe0    000000c0     PEngine_pe66.oe66 (.text:ti_sdo_ipc_transports_TransportShm_Object__create__S)
                      0c24c0a0    000000c0     PEngine_pe66.oe66 (.text:ti_sdo_ipc_transports_TransportShm_create)
                      0c24c160    000000c0     PEngine_pe66.oe66 (.text:ti_sysbios_family_c64p_Hwi_create)
                      0c24c220    000000c0     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_gates_GateAll_leave__E)
                      0c24c2e0    000000c0                  : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_getStats__E)
                      0c24c3a0    000000c0                  : BIOS.obj (.text:ti_sysbios_knl_Clock_logTick__E)
                      0c24c460    000000c0                  : BIOS.obj (.text:ti_sysbios_knl_Swi_schedule__I)
                      0c24c520    000000c0     rts6600_elf.lib : tls.obj (.text:tls:init:__TI_tls_init)
                      0c24c5e0    000000c0     ti.targets.rts6000.ae66 : Assert.oe66 (.text:xdc_runtime_Assert_raise__I)
                      0c24c6a0    000000c0                             : Error.oe66 (.text:xdc_runtime_Error_setX__E)
                      0c24c760    000000c0                             : SysMin.oe66 (.text:xdc_runtime_SysMin_abort__E)
                      0c24c820    000000c0                             : SysMin.oe66 (.text:xdc_runtime_SysMin_flush__E)
                      0c24c8e0    000000a0     ErrorSupport.obj (.text)
                      0c24c980    000000a0     rts6600_elf.lib : hostclose.obj (.text:HOSTclose)
                      0c24ca20    000000a0     ipc.ae66 : Ipc.obj (.text:HeapMemMP_create)
                      0c24cac0    000000a0     AppControl.obj (.text:_ZN28StreamStatusAOTimeCalculatorC1Ev)
                      0c24cb60    000000a0     rts6600_elf.lib : fopen.obj (.text:__TI_cleanup)
                      0c24cc00    000000a0                     : fixfu.obj (.text:__c6xabi_fixfu)
                      0c24cca0    000000a0                     : fltulld.obj (.text:__c6xabi_fltulld)
                      0c24cd40    000000a0                     : dtor_list.obj (.text:__cxa_ia64_exit)
                      0c24cde0    000000a0                     : remu.obj (.text:__remu)
                      0c24ce80    000000a0     boot.ae66 : boot.oe66 (.text:_c_int00)
                      0c24cf20    000000a0     sysbios.ae66 : c64p_Hwi_asm.obj (.text:_ti_sysbios_family_c64p_Hwi_plug__E)
                      0c24cfc0    000000a0     ti.csl.ae66 : csl_edma3Param.oe66 (.text:csl_section:edma3:CSL_edma3ParamSetup)
                      0c24d060    000000a0     rts6600_elf.lib : memcpy64.obj (.text:memcpy)
                      0c24d100    000000a0     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_family_c647x_Interrupt_intUnregister__E)
                      0c24d1a0    000000a0              : Ipc.obj (.text:ti_sdo_ipc_gates_GatePeterson_leave__E)
                      0c24d240    000000a0              : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Instance_finalize__E)
                      0c24d2e0    000000a0     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c64p_Exception_Module_startup__E)
                      0c24d380    000000a0                  : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_dispatchC__I)
                      0c24d420    000000a0                  : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_getStackInfo__E)
                      0c24d4c0    000000a0                  : BIOS.obj (.text:ti_sysbios_gates_GateSwi_leave__E)
                      0c24d560    000000a0                  : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_init__I)
                      0c24d600    000000a0     PEngine_pe66.oe66 (.text:ti_sysbios_knl_Swi_construct)
                      0c24d6a0    000000a0     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_knl_Task_allBlockedFunction__I)
                      0c24d740    000000a0                  : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_stop__E)
                      0c24d7e0    000000a0     ti.targets.rts6000.ae66 : Core-params.oe66 (.text:xdc_runtime_Core_assignParams__I)
                      0c24d880    000000a0                             : SysMin.oe66 (.text:xdc_runtime_SysMin_putch__E)
                      0c24d920    000000a0                             : System.oe66 (.text:xdc_runtime_System_formatNum__I)
                      0c24d9c0    000000a0                             : System.oe66 (.text:xdc_runtime_System_putchar__I)
                      0c24da60    000000a0                             : Text.oe66 (.text:xdc_runtime_Text_printVisFxn__I)
                      0c24db00    000000a0                             : Text.oe66 (.text:xdc_runtime_Text_xprintf__I)
                      0c24dba0    000000a0     PEngine_pe66.oe66 (.text:xdc_runtime_knl_GateThread_Object__create__S)
                      0c24dc40    000000a0     PEngine_pe66.oe66 (.text:xdc_runtime_knl_GateThread_create)
                      0c24dce0    00000080     AOPEngineDriver.obj (.text:_ZN22StreamMotorMotorStatusC1Ev)
                      0c24dd60    00000080     AOPEngineDriver.obj (.text:_ZN25CAODigtalOutPutGeneration8GenerateEiiisss)
                      0c24dde0    00000080     AOPEngineDriver.obj (.text:_ZN25CAODigtalOutPutGenerationC1Ev)
                      0c24de60    00000080     AppControl.obj (.text:_ZN25StreamCommandImpCalibInfoC1Ev)
                      0c24dee0    00000080     AOPEngineDriver.obj (.text:_ZN33StreamCommandFilterParamsStimulusC1Ev)
                      0c24df60    00000080     rts6600_elf.lib : trgmsg.obj (.text:__TI_readmsg)
                      0c24dfe0    00000080                     : fixdu.obj (.text:__c6xabi_fixdu)
                      0c24e060    00000080                     : llshift.obj (.text:__c6xabi_llshl)
                      0c24e0e0    00000080     sysbios.ae66 : c62_TaskSupport_asm.obj (.text:_ti_sysbios_family_c62_TaskSupport_swap__E)
                      0c24e160    00000080     ti.csl.ae66 : csl_edma3Param.oe66 (.text:csl_section:edma3:CSL_edma3GetParamHandle)
                      0c24e1e0    00000080     rts6600_elf.lib : getdevice.obj (.text:finddevice)
                      0c24e260    00000080                     : strncpy.obj (.text:strncpy)
                      0c24e2e0    00000080     PEngine_pe66.oe66 (.text:ti_sdo_ipc_gates_GateHWSem_Object__create__S)
                      0c24e360    00000080     PEngine_pe66.oe66 (.text:ti_sdo_ipc_gates_GateHWSem_create)
                      0c24e3e0    00000080     PEngine_pe66.oe66 (.text:ti_sdo_ipc_gates_GateMPSupportNull_Object__create__S)
                      0c24e460    00000080     PEngine_pe66.oe66 (.text:ti_sdo_ipc_gates_GateMPSupportNull_create)
                      0c24e4e0    00000080     PEngine_pe66.oe66 (.text:ti_sysbios_BIOS_atExitFunc__I)
                      0c24e560    00000080     PEngine_pe66.oe66 (.text:ti_sysbios_BIOS_registerRTSLock__I)
                      0c24e5e0    00000080     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c66_Cache_invL1pAll__E)
                      0c24e660    00000080     PEngine_pe66.oe66 (.text:ti_sysbios_gates_GateAll_Object__create__S)
                      0c24e6e0    00000080     PEngine_pe66.oe66 (.text:ti_sysbios_gates_GateHwi_Object__create__S)
                      0c24e760    00000080     PEngine_pe66.oe66 (.text:ti_sysbios_gates_GateMutexPri_Object__create__S)
                      0c24e7e0    00000080     PEngine_pe66.oe66 (.text:ti_sysbios_gates_GateMutex_Object__create__S)
                      0c24e860    00000080     PEngine_pe66.oe66 (.text:ti_sysbios_gates_GateSwi_Object__create__S)
                      0c24e8e0    00000080     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_hal_Hwi_checkStack)
                      0c24e960    00000080                  : BIOS.obj (.text:ti_sysbios_hal_Hwi_initStack)
                      0c24e9e0    00000080     PEngine_pe66.oe66 (.text:ti_sysbios_heaps_HeapMem_Object__create__S)
                      0c24ea60    00000080     PEngine_pe66.oe66 (.text:ti_sysbios_knl_Clock_doTick__I)
                      0c24eae0    00000080     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_knl_Idle_run__E)
                      0c24eb60    00000080                  : BIOS.obj (.text:ti_sysbios_knl_Semaphore_pendTimeout__I)
                      0c24ebe0    00000080                  : BIOS.obj (.text:ti_sysbios_knl_Swi_startup__E)
                      0c24ec60    00000080                  : BIOS.obj (.text:ti_sysbios_knl_Task_restore__E)
                      0c24ece0    00000080     PEngine_pe66.oe66 (.text:ti_sysbios_rts_MemAlloc_alloc)
                      0c24ed60    00000080     PEngine_pe66.oe66 (.text:ti_sysbios_xdcruntime_GateThreadSupport_create)
                      0c24ede0    00000080     rts6600_elf.lib : unlink.obj (.text:unlink)
                      0c24ee60    00000080     ti.targets.rts6000.ae66 : Core-label.oe66 (.text:xdc_runtime_Core_assignLabel__I)
                      0c24eee0    00000080     PEngine_pe66.oe66 (.text:xdc_runtime_SysMin_output__I)
                      0c24ef60    00000080     ti.targets.rts6000.ae66 : System.oe66 (.text:xdc_runtime_System_atexit__E)
                      0c24efe0    00000080                             : System.oe66 (.text:xdc_runtime_System_avprintf__E)
                      0c24f060    00000080                             : System.oe66 (.text:xdc_runtime_System_processAtExit__E)
                      0c24f0e0    00000080                             : System.oe66 (.text:xdc_runtime_System_vprintf__E)
                      0c24f160    00000060     ipc.ae66 : Ipc.obj (.text:GateMP_Params_init)
                      0c24f1c0    00000060              : Ipc.obj (.text:HeapMemMP_Params_init)
                      0c24f220    00000060     AOPEngineDriver.obj (.text:_ZN16CAOPEngineDriver15GetSamplingRateEv)
                      0c24f280    00000060     FilterScriptExecuter.obj (.text:_ZN16SAcknowledgementC1EPv)
                      0c24f2e0    00000060     AOPEngineDriver.obj (.text:_ZN22StreamStatusGenMessageC1Ev)
                      0c24f340    00000060     AOPEngineDriver.obj (.text:_ZN23StreamCommandGenMessageC1Ev)
                      0c24f3a0    00000060     FilterScriptExecuter.obj (.text:_ZN25StreamCommand16WordsBlockC1Ev)
                      0c24f400    00000060     AOPEngineDriver.obj (.text:_ZN25StreamCommandFEBoardConfgC1Ev)
                      0c24f460    00000060     FilterScriptExecuter.obj (.text:_ZN25StreamCommandUD_StartStopC1Ev)
                      0c24f4c0    00000060     AppControl.obj (.text:_ZN27StreamStatusAlabSnRHWStatusC1Ev)
                      0c24f520    00000060     FilterImpedanceMeasurement.obj (.text:_ZN28StreamCommandMGPlusImpValuesC1Ev)
                      0c24f580    00000060     AOPEngineDriver.obj (.text:_ZN28StreamCommandSetChannelStateC1Ev)
                      0c24f5e0    00000060     AppControl.obj (.text:_ZN30StreamStatusScriptRunningStateC1Ev)
                      0c24f640    00000060     FilterScriptExecuter.obj (.text:_ZN32StreamCommandStimulatorScriptRunC1Ev)
                      0c24f6a0    00000060     rts6600_elf.lib : frcmpyd_div.obj (.text:__TI_frcmpyd_div)
                      0c24f700    00000060                     : trgmsg.obj (.text:__TI_writemsg)
                      0c24f760    00000060                     : llshift.obj (.text:__c6xabi_llshru)
                      0c24f7c0    00000060     sysbios.ae66 : c64p_Hwi_asm_switch.obj (.text:_ti_sysbios_family_c64p_Hwi_switchAndDispatch__I)
                      0c24f820    00000060                  : c64p_Hwi_asm_switch.obj (.text:_ti_sysbios_family_xxx_Hwi_switchAndRunFunc)
                      0c24f880    00000060     rts6600_elf.lib : lseek.obj (.text:lseek)
                      0c24f8e0    00000060                     : memccpy.obj (.text:memccpy)
                      0c24f940    00000060                     : strcmp.obj (.text:strcmp)
                      0c24f9a0    00000060                     : strcpy.obj (.text:strcpy)
                      0c24fa00    00000060     PEngine_pe66.oe66 (.text:ti_sdo_ipc_GateMP_Object__delete__S)
                      0c24fa60    00000060     PEngine_pe66.oe66 (.text:ti_sdo_ipc_ListMP_Object__delete__S)
                      0c24fac0    00000060     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_family_c647x_NotifySetup_sharedMemReq__E)
                      0c24fb20    00000060     PEngine_pe66.oe66 (.text:ti_sdo_ipc_gates_GatePeterson_Object__delete__S)
                      0c24fb80    00000060     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_gates_GatePeterson_sharedMemReq__E)
                      0c24fbe0    00000060     PEngine_pe66.oe66 (.text:ti_sdo_ipc_heaps_HeapMemMP_Object__delete__S)
                      0c24fc40    00000060     PEngine_pe66.oe66 (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__delete__S)
                      0c24fca0    00000060     PEngine_pe66.oe66 (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__delete__S)
                      0c24fd00    00000060     PEngine_pe66.oe66 (.text:ti_sdo_ipc_transports_TransportShm_Object__delete__S)
                      0c24fd60    00000060     PEngine_pe66.oe66 (.text:ti_sdo_utils_List_construct)
                      0c24fdc0    00000060     PEngine_pe66.oe66 (.text:ti_sysbios_BIOS_errorRaiseHook__I)
                      0c24fe20    00000060     PEngine_pe66.oe66 (.text:ti_sysbios_BIOS_removeRTSLock__I)
                      0c24fe80    00000060     PEngine_pe66.oe66 (.text:ti_sysbios_BIOS_startFunc__I)
                      0c24fee0    00000060     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c62_TaskSupport_start__E)
                      0c24ff40    00000060                  : BIOS.obj (.text:ti_sysbios_family_c64p_EventCombiner_Module_startup__E)
                      0c24ffa0    00000060     PEngine_pe66.oe66 (.text:ti_sysbios_family_c64p_Hwi_Object__delete__S)
                      0c250000    00000060     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c66_Cache_Module_startup__E)
                      0c250060    00000060                  : BIOS.obj (.text:ti_sysbios_gates_GateAll_enter__E)
                      0c2500c0    00000060     PEngine_pe66.oe66 (.text:ti_sysbios_gates_GateMutexPri_Object__delete__S)
                      0c250120    00000060     PEngine_pe66.oe66 (.text:ti_sysbios_gates_GateMutexPri_construct)
                      0c250180    00000060     PEngine_pe66.oe66 (.text:ti_sysbios_gates_GateMutex_Object__delete__S)
                      0c2501e0    00000060     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_free__E)
                      0c250240    00000060                  : BIOS.obj (.text:ti_sysbios_knl_Clock_Module_startup__E)
                      0c2502a0    00000060     PEngine_pe66.oe66 (.text:ti_sysbios_knl_Queue_construct)
                      0c250300    00000060     PEngine_pe66.oe66 (.text:ti_sysbios_knl_Semaphore_construct)
                      0c250360    00000060     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_knl_Swi_Module_startup__E)
                      0c2503c0    00000060                  : BIOS.obj (.text:ti_sysbios_knl_Task_enter__I)
                      0c250420    00000060     PEngine_pe66.oe66 (.text:ti_sysbios_xdcruntime_GateThreadSupport_Object__delete__S)
                      0c250480    00000060     rts6600_elf.lib : write.obj (.text:write)
                      0c2504e0    00000060     ti.targets.rts6000.ae66 : Memory.oe66 (.text:xdc_runtime_Memory_valloc__E)
                      0c250540    00000060                             : Text.oe66 (.text:xdc_runtime_Text_cordText__E)
                      0c2505a0    00000060     PEngine_pe66.oe66 (.text:xdc_runtime_knl_GateThread_Object__delete__S)
                      0c250600    00000040     AOPEngineDriver.obj (.text:_Z18iFValueDriveIsTruet)
                      0c250640    00000040     Pipe.obj (.text:_ZN16CCriticalSectionC1Ev)
                      0c250680    00000040     AOPEngineDriver.obj (.text:_ZN17StreamStatusBlockC1Ev)
                      0c2506c0    00000040     AOPEngineDriver.obj (.text:_ZN17StreamStatusWavesC1Ev)
                      0c250700    00000040     AppControl.obj (.text:_ZN18CFilterPEngineCond17EnableLFPCompressEb)
                      0c250740    00000040     FilterPEngineCond.obj (.text:_ZN18CFilterPEngineCond20TransformStatusBlockEP10StreamBase)
                      0c250780    00000040     FilterPEngineCond.obj (.text:_ZN18CFilterPEngineCond21TransformCommandBlockEP10StreamBase)
                      0c2507c0    00000040     AppControl.obj (.text:_ZN18CFilterPEngineCond24SetLFPCompressChannelCntEi)
                      0c250800    00000040     AOPEngineDriver.obj (.text:_ZN18StreamCommandBlockC1Ev)
                      0c250840    00000040     AOPEngineDriver.obj (.text:_ZN20StreamStatusDevIdentC1Ev)
                      0c250880    00000040     AppControl.obj (.text:_ZN21CFilterScriptExecuter7AcquireEv)
                      0c2508c0    00000040     AOPEngineDriver.obj (.text:_ZN21StreamCommandStimStopC1Ev)
                      0c250900    00000040     AOPEngineDriver.obj (.text:_ZN21StreamStatusHWVersionC1Ev)
                      0c250940    00000040     AOPEngineDriver.obj (.text:_ZN22CAOPEngineDriverParamsC1Ev)
                      0c250980    00000040     FilterScriptExecuter.obj (.text:_ZN22StreamCommandStimStartC1Ev)
                      0c2509c0    00000040     FilterScriptExecuter.obj (.text:_ZN22StreamCommandUD_MapingC1Ev)
                      0c250a00    00000040     AOPEngineDriver.obj (.text:_ZN22StreamStatusStimStatusC1Ev)
                      0c250a40    00000040     AOPEngineDriver.obj (.text:_ZN23StreamCommandMotorSpeedC1Ev)
                      0c250a80    00000040     AOPEngineDriver.obj (.text:_ZN23StreamStatusMotorStatusC1Ev)
                      0c250ac0    00000040     AppControl.obj (.text:_ZN24StreamCommandElectParams6IsStimEv)
                      0c250b00    00000040     AOPEngineDriver.obj (.text:_ZN24StreamCommandMotorMoveUpC1Ev)
                      0c250b40    00000040     AOPEngineDriver.obj (.text:_ZN24StreamCommandMotorSetPosC1Ev)
                      0c250b80    00000040     FilterScriptExecuter.obj (.text:_ZN24VariablesHashElementTypeC1Ev)
                      0c250bc0    00000040     AOPEngineDriver.obj (.text:_ZN25CAODigtalOutPutGeneration5StartEi)
                      0c250c00    00000040     AOPEngineDriver.obj (.text:_ZN26StreamCommandMotorMoveDownC1Ev)
                      0c250c40    00000040     FilterScriptExecuter.obj (.text:_ZN27StreamStatusAcknowledgementC1Ev)
                      0c250c80    00000040     AOPEngineDriver.obj (.text:_ZN29StreamCommandModuleParamsBaseC1Ev)
                      0c250cc0    00000040     AOPEngineDriver.obj (.text:_ZN31StreamCommandMGPlusImpStartStopC1Ev)
                      0c250d00    00000040     AOPEngineDriver.obj (.text:_ZN33StreamCommandFilterParamsStimulus14SetStimVoltageEi)
                      0c250d40    00000040     AppControl.obj (.text:_ZN35CAOFilterImpedanceMeasurementParamsC1Ev)
                      0c250d80    00000040     AOPEngineDriver.obj (.text:_ZN35StreamCommandMGPlusHeadStageWorkingC1Ev)
                      0c250dc0    00000040     Pipe.obj (.text:_ZN5IPipeC1Ev)
                      0c250e00    00000040     FILTER.obj (.text:_ZN7AFilterC1Ev)
                      0c250e40    00000040     AOPEngineDriver.obj (.text:_ZN7AParamsC1Ev)
                      0c250e80    00000040     AppControl.obj (.text:_ZN8AO_FLOATaSEf)
                      0c250ec0    00000040     FilterImpedanceMeasurement.obj (.text:_ZN8AO_FLOATcvfEv)
                      0c250f00    00000040     AOPEngineDriver.obj (.text:_ZN8AO_INT32aSEi)
                      0c250f40    00000040     AOPEngineDriver.obj (.text:_ZN8AO_INT32cviEv)
                      0c250f80    00000040     AppControl.obj (.text:_ZN8PipeUtilC1EPtii)
                      0c250fc0    00000040     HashTableVoid.obj (.text:_ZN9AO_ResultC1Ev)
                      0c251000    00000040     AOPEngineDriver.obj (.text:_ZN9AO_UINT32aSEj)
                      0c251040    00000040     AOPEngineDriver.obj (.text:_ZN9AO_UINT32cvjEv)
                      0c251080    00000040     AOPEngineDriver.obj (.text:_ZN9SDevIdentC1Ev)
                      0c2510c0    00000040     rts6600_elf.lib : isinf.obj (.text:__c6xabi_isinf)
                      0c251100    00000040                     : _printfi.obj (.text:__c6xabi_isnan)
                      0c251140    00000040                     : strasg.obj (.text:__strasgi_64plus)
                      0c251180    00000040                     : args_main.obj (.text:_args_main)
                      0c2511c0    00000040                     : imath64.obj (.text:_subcull)
                      0c251200    00000040     sysbios.ae66 : c62_TaskSupport_asm.obj (.text:_ti_sysbios_family_c62_TaskSupport_buildTaskStack)
                      0c251240    00000040     ti.csl.ae66 : csl_edma3ChannelClose.oe66 (.text:csl_section:edma3:CSL_edma3ChannelClose)
                      0c251280    00000040     PEngine_pe66.oe66 (.text:free)
                      0c2512c0    00000040     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_family_c647x_Interrupt_intClear__E)
                      0c251300    00000040              : Ipc.obj (.text:ti_sdo_ipc_family_c647x_Interrupt_intSend__E)
                      0c251340    00000040     PEngine_pe66.oe66 (.text:ti_sdo_ipc_gates_GateHWSem_Handle__label__S)
                      0c251380    00000040     PEngine_pe66.oe66 (.text:ti_sdo_ipc_gates_GateHWSem_Object__delete__S)
                      0c2513c0    00000040     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_gates_GateHWSem_leave__E)
                      0c251400    00000040     PEngine_pe66.oe66 (.text:ti_sdo_ipc_gates_GateMPSupportNull_Handle__label__S)
                      0c251440    00000040     PEngine_pe66.oe66 (.text:ti_sdo_ipc_gates_GateMPSupportNull_Object__delete__S)
                      0c251480    00000040     PEngine_pe66.oe66 (.text:ti_sdo_ipc_gates_GatePeterson_Handle__label__S)
                      0c2514c0    00000040     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_gates_GatePeterson_Instance_finalize__E)
                      0c251500    00000040     PEngine_pe66.oe66 (.text:ti_sdo_ipc_heaps_HeapMemMP_Handle__label__S)
                      0c251540    00000040     PEngine_pe66.oe66 (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Handle__label__S)
                      0c251580    00000040     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_setNotifyHandle__E)
                      0c2515c0    00000040     PEngine_pe66.oe66 (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Handle__label__S)
                      0c251600    00000040     PEngine_pe66.oe66 (.text:ti_sdo_ipc_transports_TransportShm_Handle__label__S)
                      0c251640    00000040     utils.ae66 : UTILS.obj (.text:ti_sdo_utils_List_putHead__E)
                      0c251680    00000040                : UTILS.obj (.text:ti_sdo_utils_List_put__E)
                      0c2516c0    00000040     PEngine_pe66.oe66 (.text:ti_sdo_utils_NameServer_Object__get__S)
                      0c251700    00000040     PEngine_pe66.oe66 (.text:ti_sysbios_BIOS_exitFunc__I)
                      0c251740    00000040     PEngine_pe66.oe66 (.text:ti_sysbios_BIOS_rtsLock__I)
                      0c251780    00000040     PEngine_pe66.oe66 (.text:ti_sysbios_BIOS_rtsUnlock__I)
                      0c2517c0    00000040     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_disableInterrupt__E)
                      0c251800    00000040                  : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_enableInterrupt__E)
                      0c251840    00000040     PEngine_pe66.oe66 (.text:ti_sysbios_gates_GateAll_Handle__label__S)
                      0c251880    00000040     PEngine_pe66.oe66 (.text:ti_sysbios_gates_GateAll_Object__delete__S)
                      0c2518c0    00000040     PEngine_pe66.oe66 (.text:ti_sysbios_gates_GateHwi_Handle__label__S)
                      0c251900    00000040     PEngine_pe66.oe66 (.text:ti_sysbios_gates_GateHwi_Object__delete__S)
                      0c251940    00000040     PEngine_pe66.oe66 (.text:ti_sysbios_gates_GateMutexPri_Handle__label__S)
                      0c251980    00000040     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_gates_GateMutexPri_Instance_init__E)
                      0c2519c0    00000040     PEngine_pe66.oe66 (.text:ti_sysbios_gates_GateMutexPri_destruct)
                      0c251a00    00000040     PEngine_pe66.oe66 (.text:ti_sysbios_gates_GateMutex_Handle__label__S)
                      0c251a40    00000040     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_gates_GateMutex_Instance_init__E)
                      0c251a80    00000040                  : BIOS.obj (.text:ti_sysbios_gates_GateMutex_leave__E)
                      0c251ac0    00000040     PEngine_pe66.oe66 (.text:ti_sysbios_gates_GateSwi_Handle__label__S)
                      0c251b00    00000040     PEngine_pe66.oe66 (.text:ti_sysbios_gates_GateSwi_Object__delete__S)
                      0c251b40    00000040     PEngine_pe66.oe66 (.text:ti_sysbios_heaps_HeapMem_Handle__label__S)
                      0c251b80    00000040     PEngine_pe66.oe66 (.text:ti_sysbios_heaps_HeapMem_Object__delete__S)
                      0c251bc0    00000040     PEngine_pe66.oe66 (.text:ti_sysbios_heaps_HeapMem_Object__get__S)
                      0c251c00    00000040     PEngine_pe66.oe66 (.text:ti_sysbios_knl_Semaphore_destruct)
                      0c251c40    00000040     PEngine_pe66.oe66 (.text:ti_sysbios_knl_Swi_Object__get__S)
                      0c251c80    00000040     PEngine_pe66.oe66 (.text:ti_sysbios_knl_Swi_destruct)
                      0c251cc0    00000040     PEngine_pe66.oe66 (.text:ti_sysbios_knl_Task_Object__get__S)
                      0c251d00    00000040     ti.targets.rts6000.ae66 : Error.oe66 (.text:xdc_runtime_Error_check__E)
                      0c251d40    00000040                             : Error.oe66 (.text:xdc_runtime_Error_init__E)
                      0c251d80    00000040     PEngine_pe66.oe66 (.text:xdc_runtime_GateNull_Handle__label__S)
                      0c251dc0    00000040     PEngine_pe66.oe66 (.text:xdc_runtime_GateNull_Object__create__S)
                      0c251e00    00000040     PEngine_pe66.oe66 (.text:xdc_runtime_GateNull_Object__delete__S)
                      0c251e40    00000040     ti.targets.rts6000.ae66 : Registry.oe66 (.text:xdc_runtime_Registry_findById__E)
                      0c251e80    00000040                             : SysMin.oe66 (.text:xdc_runtime_SysMin_Module_startup__E)
                      0c251ec0    00000040                             : SysMin.oe66 (.text:xdc_runtime_SysMin_exit__E)
                      0c251f00    00000040                             : System.oe66 (.text:xdc_runtime_System_abort__E)
                      0c251f40    00000040     PEngine_pe66.oe66 (.text:xdc_runtime_System_aprintf__E)
                      0c251f80    00000040     ti.targets.rts6000.ae66 : System.oe66 (.text:xdc_runtime_System_exit__E)
                      0c251fc0    00000040     PEngine_pe66.oe66 (.text:xdc_runtime_System_printf__E)
                      0c252000    00000040     PEngine_pe66.oe66 (.text:xdc_runtime_knl_GateThread_Handle__label__S)
                      0c252040    00000040     ti.targets.rts6000.ae66 : GateThread.oe66 (.text:xdc_runtime_knl_GateThread_Instance_init__E)
                      0c252080    00000020     utils.ae66 : UTILS.obj (.text:MultiProc_getBaseIdOfCluster)
                      0c2520a0    00000020                : UTILS.obj (.text:MultiProc_getNumProcessors)
                      0c2520c0    00000020                : UTILS.obj (.text:MultiProc_self)
                      0c2520e0    00000020                : UTILS.obj (.text:NameServer_addUInt32)
                      0c252100    00000020                : UTILS.obj (.text:NameServer_getLocalUInt32)
                      0c252120    00000020                : UTILS.obj (.text:NameServer_removeEntry)
                      0c252140    00000020     PEngine_pe66.oe66 (.text:_GateMP_virtToPhys)
                      0c252160    00000020     rts6600_elf.lib : newhandler.obj (.text:_Z21__default_new_handlerv)
                      0c252180    00000020                     : typeinfo_.obj (.text:_ZN10__cxxabiv117__class_type_infoD0Ev)
                      0c2521a0    00000020                     : typeinfo_.obj (.text:_ZN10__cxxabiv117__class_type_infoD1Ev)
                      0c2521c0    00000020                     : typeinfo_.obj (.text:_ZN10__cxxabiv120__si_class_type_infoD0Ev)
                      0c2521e0    00000020                     : typeinfo_.obj (.text:_ZN10__cxxabiv120__si_class_type_infoD1Ev)
                      0c252200    00000020                     : typeinfo_.obj (.text:_ZN10__cxxabiv121__vmi_class_type_infoD0Ev)
                      0c252220    00000020                     : typeinfo_.obj (.text:_ZN10__cxxabiv121__vmi_class_type_infoD1Ev)
                      0c252240    00000020     AOPEngineDriver.obj (.text:_ZN14AO_4BYTES_TYPEC1EPv)
                      0c252260    00000020     AOPEngineDriver.obj (.text:_ZN14AO_4BYTES_TYPEC2EPv)
                      0c252280    00000020     AOPEngineDriver.obj (.text:_ZN15StreamDataBlockC1Ev)
                      0c2522a0    00000020     AOPEngineDriver.obj (.text:_ZN16CAOPEngineDriver14GetXmtLineCopyEv)
                      0c2522c0    00000020     AppControl.obj (.text:_ZN16CAOPEngineDriver23IsSecondHeadStageActiveEv)
                      0c2522e0    00000020     Pipe.obj (.text:_ZN16CCriticalSection4LockEv)
                      0c252300    00000020     Pipe.obj (.text:_ZN16CCriticalSection6UnlockEv)
                      0c252320    00000020     Pipe.obj (.text:_ZN16CCriticalSectionD0Ev)
                      0c252340    00000020     Pipe.obj (.text:_ZN16CCriticalSectionD1Ev)
                      0c252360    00000020     AOPEngineDriver.obj (.text:_ZN17StreamStatusBlockC2Ev)
                      0c252380    00000020     FilterImpedanceMeasurement.obj (.text:_ZN17Uint32ValuesArr16C1EPv)
                      0c2523a0    00000020     FilterImpedanceMeasurement.obj (.text:_ZN17Uint32ValuesArr16ixEi)
                      0c2523c0    00000020     AOPEngineDriver.obj (.text:_ZN18StreamCommandBlockC2Ev)
                      0c2523e0    00000020     AppControl.obj (.text:_ZN21CFilterScriptExecuter10ForceFlushEv)
                      0c252400    00000020     AppControl.obj (.text:_ZN21CFilterScriptExecuter16GetRunningStatusEv)
                      0c252420    00000020     FilterScriptExecuter.obj (.text:_ZN21CFilterScriptExecuter9GetParamsEv)
                      0c252440    00000020     AOPEngineDriver.obj (.text:_ZN22StreamStatusGenMessageC2Ev)
                      0c252460    00000020     AppControl.obj (.text:_ZN24StreamCommandElectParams14GetCableLengthEv)
                      0c252480    00000020     AOPEngineDriver.obj (.text:_ZN25CAODigtalOutPutGeneration4StopEv)
                      0c2524a0    00000020     AppControl.obj (.text:_ZN29CAOFilterScriptExecuterParamsC1Ev)
                      0c2524c0    00000020     AOPEngineDriver.obj (.text:_ZN29StreamCommandModuleParamsBaseC2Ev)
                      0c2524e0    00000020     Pipe.obj (.text:_ZN5IPipeC2Ev)
                      0c252500    00000020     FILTER.obj (.text:_ZN7AFilter13AddSourcePipeEP5CPipe)
                      0c252520    00000020     FILTER.obj (.text:_ZN7AFilter13AddTargetPipeEP5CPipe)
                      0c252540    00000020     FILTER.obj (.text:_ZN7AFilter6CreateEP7AParams)
                      0c252560    00000020     FILTER.obj (.text:_ZN7AFilter7DestroyEv)
                      0c252580    00000020     FILTER.obj (.text:_ZN7AFilter7SetDataEPht)
                      0c2525a0    00000020     FILTER.obj (.text:_ZN7AFilter9SetParamsEP7AParams)
                      0c2525c0    00000020     FILTER.obj (.text:_ZN7AFilterC2Ev)
                      0c2525e0    00000020     FilterDetection.obj (.text:_ZN7AParams13SetParamsTypeE12E_ParamsType)
                      0c252600    00000020     AOPEngineDriver.obj (.text:_ZN7AParamsC2Ev)
                      0c252620    00000020     FILTER.obj (.text:_ZN7CFilter13GetScanStatusEv)
                      0c252640    00000020     AppControl.obj (.text:_ZN8AO_FLOATC1EPv)
                      0c252660    00000020     AOPEngineDriver.obj (.text:_ZN8AO_INT32C1EPv)
                      0c252680    00000020     AOPEngineDriver.obj (.text:_ZN9AO_UINT32C1EPv)
                      0c2526a0    00000020     AODriver.obj (.text:_ZN9CAODriver13BlockReceivedEv)
                      0c2526c0    00000020     AODriver.obj (.text:_ZN9CAODriver5CloseEv)
                      0c2526e0    00000020     AODriver.obj (.text:_ZN9CAODriver6FormatEv)
                      0c252700    00000020     AODriver.obj (.text:_ZN9CAODriver6HandleEPti)
                      0c252720    00000020     AODriver.obj (.text:_ZN9CAODriver8GetBlockEv)
                      0c252740    00000020     AODriver.obj (.text:_ZN9CAODriver9BlockSentEv)
                      0c252760    00000020     AODriver.obj (.text:_ZN9CAODriver9GetParamsEv)
                      0c252780    00000020     AODriver.obj (.text:_ZN9CAODriver9SendBlockEv)
                      0c2527a0    00000020     AODriver.obj (.text:_ZN9CAODriver9SetParamsEP7AParams)
                      0c2527c0    00000020     WATCHDOG.obj (.text:_ZN9CWatchDog10IsDisabledEv)
                      0c2527e0    00000020     WATCHDOG.obj (.text:_ZN9CWatchDog10SetStoppedEv)
                      0c252800    00000020     WATCHDOG.obj (.text:_ZN9CWatchDog6EnableEv)
                      0c252820    00000020     WATCHDOG.obj (.text:_ZN9CWatchDog7DisableEv)
                      0c252840    00000020     WATCHDOG.obj (.text:_ZN9CWatchDog9IsStoppedEv)
                      0c252860    00000020     rts6600_elf.lib : delete.obj (.text:_ZdlPv)
                      0c252880    00000020                     : error.obj (.text:__abort_execution)
                      0c2528a0    00000020                     : errno.obj (.text:__c6xabi_errno_addr)
                      0c2528c0    00000020                     : pure_virt.obj (.text:__cxa_pure_virtual)
                      0c2528e0    00000020                     : _lock.obj (.text:_nop)
                      0c252900    00000020                     : printf.obj (.text:_outc)
                      0c252920    00000020                     : printf.obj (.text:_outs)
                      0c252940    00000020                     : _lock.obj (.text:_register_lock)
                      0c252960    00000020                     : _data_synch.obj (.text:_register_synch_api)
                      0c252980    00000020                     : _lock.obj (.text:_register_unlock)
                      0c2529a0    00000020     sysbios.ae66 : c62_TaskSupport_asm.obj (.text:_ti_sysbios_family_c62_TaskSupport_glue)
                      0c2529c0    00000020     rts6600_elf.lib : exit.obj (.text:abort)
                      0c2529e0    00000020     ti.csl.ae66 : csl_edma3Close.oe66 (.text:csl_section:edma3:CSL_edma3Close)
                      0c252a00    00000020                 : csl_edma3Init.oe66 (.text:csl_section:edma3:CSL_edma3Init)
                      0c252a20    00000020                 : csl_edma3Param.oe66 (.text:csl_section:edma3:CSL_edma3ParamWriteWord)
                      0c252a40    00000020     rts6600_elf.lib : copy_decompress_none.obj (.text:decompress:none:__TI_decompress_none)
                      0c252a60    00000020                     : copy_decompress_rle.obj (.text:decompress:rle24:__TI_decompress_rle24)
                      0c252a80    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_GateMP_Params__init__S)
                      0c252aa0    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Proxy__abstract__S)
                      0c252ac0    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Proxy__delegate__S)
                      0c252ae0    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom1Proxy_create)
                      0c252b00    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom1Proxy_delete)
                      0c252b20    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Proxy__abstract__S)
                      0c252b40    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Proxy__delegate__S)
                      0c252b60    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom2Proxy_create)
                      0c252b80    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom2Proxy_delete)
                      0c252ba0    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteSystemProxy_Proxy__abstract__S)
                      0c252bc0    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteSystemProxy_Proxy__delegate__S)
                      0c252be0    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteSystemProxy_create)
                      0c252c00    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteSystemProxy_delete)
                      0c252c20    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_GateMP_delete)
                      0c252c40    00000020     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_GateMP_getSharedAddr__F)
                      0c252c60    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_ListMP_Params__init__S)
                      0c252c80    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_ListMP_delete)
                      0c252ca0    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_MessageQ_Object__get__S)
                      0c252cc0    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_Notify_Module_GateProxy_enter__E)
                      0c252ce0    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_Notify_Module_GateProxy_leave__E)
                      0c252d00    00000020     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_family_c647x_Interrupt_intDisable__E)
                      0c252d20    00000020              : Ipc.obj (.text:ti_sdo_ipc_family_c647x_Interrupt_intEnable__E)
                      0c252d40    00000020              : Ipc.obj (.text:ti_sdo_ipc_family_c647x_NotifySetup_numIntLines__E)
                      0c252d60    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_gates_GateHWSem_Params__init__S)
                      0c252d80    00000020     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_gates_GateHWSem_getReservedMask__E)
                      0c252da0    00000020              : Ipc.obj (.text:ti_sdo_ipc_gates_GateHWSem_query__E)
                      0c252dc0    00000020              : Ipc.obj (.text:ti_sdo_ipc_gates_GateHWSem_sharedMemReq__E)
                      0c252de0    00000020              : Ipc.obj (.text:ti_sdo_ipc_gates_GateMPSupportNull_Instance_init__E)
                      0c252e00    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_gates_GateMPSupportNull_Params__init__S)
                      0c252e20    00000020     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_gates_GateMPSupportNull_getReservedMask__E)
                      0c252e40    00000020              : Ipc.obj (.text:ti_sdo_ipc_gates_GateMPSupportNull_query__E)
                      0c252e60    00000020              : Ipc.obj (.text:ti_sdo_ipc_gates_GateMPSupportNull_sharedMemReq__E)
                      0c252e80    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_gates_GatePeterson_Params__init__S)
                      0c252ea0    00000020     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_gates_GatePeterson_getReservedMask__E)
                      0c252ec0    00000020              : Ipc.obj (.text:ti_sdo_ipc_gates_GatePeterson_query__E)
                      0c252ee0    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_heaps_HeapMemMP_Params__init__S)
                      0c252f00    00000020     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_heaps_HeapMemMP_isBlocking__E)
                      0c252f20    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Params__init__S)
                      0c252f40    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_delete)
                      0c252f60    00000020     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_disable__E)
                      0c252f80    00000020              : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_enable__E)
                      0c252fa0    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__first__S)
                      0c252fc0    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__next__S)
                      0c252fe0    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Params__init__S)
                      0c253000    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_delete)
                      0c253020    00000020     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_sharedMemReq__E)
                      0c253040    00000020              : Ipc.obj (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_swiFxnResponse__I)
                      0c253060    00000020              : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShmSetup_isRegistered__E)
                      0c253080    00000020     PEngine_pe66.oe66 (.text:ti_sdo_ipc_transports_TransportShm_Params__init__S)
                      0c2530a0    00000020     ipc.ae66 : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_control__E)
                      0c2530c0    00000020              : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_getStatus__E)
                      0c2530e0    00000020              : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_notifyFxn__I)
                      0c253100    00000020              : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_setErrFxn__E)
                      0c253120    00000020     utils.ae66 : UTILS.obj (.text:ti_sdo_utils_List_Instance_init__E)
                      0c253140    00000020     PEngine_pe66.oe66 (.text:ti_sdo_utils_List_Object__get__S)
                      0c253160    00000020     PEngine_pe66.oe66 (.text:ti_sdo_utils_List_destruct)
                      0c253180    00000020     utils.ae66 : UTILS.obj (.text:ti_sdo_utils_List_empty__E)
                      0c2531a0    00000020                : UTILS.obj (.text:ti_sdo_utils_List_next__E)
                      0c2531c0    00000020                : UTILS.obj (.text:ti_sdo_utils_MultiProc_getClusterId__F)
                      0c2531e0    00000020     PEngine_pe66.oe66 (.text:ti_sdo_utils_NameServer_Module__startupDone__F)
                      0c253200    00000020     PEngine_pe66.oe66 (.text:ti_sdo_utils_NameServer_Object__first__S)
                      0c253220    00000020     PEngine_pe66.oe66 (.text:ti_sdo_utils_NameServer_Object__next__S)
                      0c253240    00000020     PEngine_pe66.oe66 (.text:ti_sysbios_BIOS_RtsGateProxy_enter__E)
                      0c253260    00000020     PEngine_pe66.oe66 (.text:ti_sysbios_BIOS_RtsGateProxy_leave__E)
                      0c253280    00000020     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E)
                      0c2532a0    00000020     PEngine_pe66.oe66 (.text:ti_sysbios_BIOS_nullFunc__I)
                      0c2532c0    00000020     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_BIOS_setThreadType__E)
                      0c2532e0    00000020                  : BIOS.obj (.text:ti_sysbios_BIOS_start__E)
                      0c253300    00000020     PEngine_pe66.oe66 (.text:ti_sysbios_family_c62_TaskSupport_Module__startupDone__S)
                      0c253320    00000020     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c62_TaskSupport_checkStack__E)
                      0c253340    00000020     PEngine_pe66.oe66 (.text:ti_sysbios_family_c64p_Hwi_Module__startupDone__F)
                      0c253360    00000020     PEngine_pe66.oe66 (.text:ti_sysbios_family_c64p_Hwi_Params__init__S)
                      0c253380    00000020     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_clearInterrupt__E)
                      0c2533a0    00000020     PEngine_pe66.oe66 (.text:ti_sysbios_family_c64p_Hwi_delete)
                      0c2533c0    00000020     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_getHandle__E)
                      0c2533e0    00000020                  : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_startup__E)
                      0c253400    00000020                  : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_switchFromBootStack__E)
                      0c253420    00000020                  : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_unPluggedInterrupt__I)
                      0c253440    00000020                  : BIOS.obj (.text:ti_sysbios_family_c64p_tci6488_TimerSupport_enable__E)
                      0c253460    00000020                  : BIOS.obj (.text:ti_sysbios_family_c66_Cache_RTSSynchInv__I)
                      0c253480    00000020                  : BIOS.obj (.text:ti_sysbios_family_c66_Cache_RTSSynchWbInv__I)
                      0c2534a0    00000020                  : BIOS.obj (.text:ti_sysbios_family_c66_Cache_RTSSynchWb__I)
                      0c2534c0    00000020                  : BIOS.obj (.text:ti_sysbios_family_c66_Cache_inv__E)
                      0c2534e0    00000020                  : BIOS.obj (.text:ti_sysbios_family_c66_Cache_wait__E)
                      0c253500    00000020                  : BIOS.obj (.text:ti_sysbios_family_c66_Cache_wbInv__E)
                      0c253520    00000020                  : BIOS.obj (.text:ti_sysbios_gates_GateAll_Instance_init__E)
                      0c253540    00000020                  : BIOS.obj (.text:ti_sysbios_gates_GateAll_query__E)
                      0c253560    00000020                  : BIOS.obj (.text:ti_sysbios_gates_GateHwi_Instance_init__E)
                      0c253580    00000020                  : BIOS.obj (.text:ti_sysbios_gates_GateHwi_enter__E)
                      0c2535a0    00000020                  : BIOS.obj (.text:ti_sysbios_gates_GateHwi_leave__E)
                      0c2535c0    00000020                  : BIOS.obj (.text:ti_sysbios_gates_GateHwi_query__E)
                      0c2535e0    00000020                  : BIOS.obj (.text:ti_sysbios_gates_GateMutexPri_Instance_finalize__E)
                      0c253600    00000020                  : BIOS.obj (.text:ti_sysbios_gates_GateMutexPri_query__E)
                      0c253620    00000020                  : BIOS.obj (.text:ti_sysbios_gates_GateMutex_Instance_finalize__E)
                      0c253640    00000020                  : BIOS.obj (.text:ti_sysbios_gates_GateMutex_query__E)
                      0c253660    00000020                  : BIOS.obj (.text:ti_sysbios_gates_GateSwi_Instance_init__E)
                      0c253680    00000020                  : BIOS.obj (.text:ti_sysbios_gates_GateSwi_query__E)
                      0c2536a0    00000020                  : BIOS.obj (.text:ti_sysbios_hal_Hwi_Module_startup__E)
                      0c2536c0    00000020     PEngine_pe66.oe66 (.text:ti_sysbios_heaps_HeapBuf_Object__get__S)
                      0c2536e0    00000020     PEngine_pe66.oe66 (.text:ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E)
                      0c253700    00000020     PEngine_pe66.oe66 (.text:ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E)
                      0c253720    00000020     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_isBlocking__E)
                      0c253740    00000020     PEngine_pe66.oe66 (.text:ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E)
                      0c253760    00000020     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_knl_Idle_loop__E)
                      0c253780    00000020                  : BIOS.obj (.text:ti_sysbios_knl_Queue_Instance_init__E)
                      0c2537a0    00000020     PEngine_pe66.oe66 (.text:ti_sysbios_knl_Queue_Object__get__S)
                      0c2537c0    00000020     PEngine_pe66.oe66 (.text:ti_sysbios_knl_Queue_destruct)
                      0c2537e0    00000020     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_knl_Queue_empty__E)
                      0c253800    00000020                  : BIOS.obj (.text:ti_sysbios_knl_Semaphore_Instance_finalize__E)
                      0c253820    00000020     PEngine_pe66.oe66 (.text:ti_sysbios_knl_Semaphore_Params__init__S)
                      0c253840    00000020     PEngine_pe66.oe66 (.text:ti_sysbios_knl_Swi_Params__init__S)
                      0c253860    00000020     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_knl_Swi_disable__E)
                      0c253880    00000020                  : BIOS.obj (.text:ti_sysbios_knl_Task_disable__E)
                      0c2538a0    00000020                  : BIOS.obj (.text:ti_sysbios_knl_Task_startup__E)
                      0c2538c0    00000020     PEngine_pe66.oe66 (.text:ti_sysbios_timers_timer64_Timer_Module__startupDone__F)
                      0c2538e0    00000020     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_getMaxTicks__E)
                      0c253900    00000020                  : BIOS.obj (.text:ti_sysbios_xdcruntime_GateThreadSupport_Instance_finalize__E)
                      0c253920    00000020                  : BIOS.obj (.text:ti_sysbios_xdcruntime_GateThreadSupport_Instance_init__E)
                      0c253940    00000020                  : BIOS.obj (.text:ti_sysbios_xdcruntime_GateThreadSupport_enter__E)
                      0c253960    00000020     ti.targets.rts6000.ae66 : Error.oe66 (.text:xdc_runtime_Error_getSite__E)
                      0c253980    00000020                             : Error.oe66 (.text:xdc_runtime_Error_raiseX__E)
                      0c2539a0    00000020                             : GateNull.oe66 (.text:xdc_runtime_GateNull_enter__E)
                      0c2539c0    00000020                             : GateNull.oe66 (.text:xdc_runtime_GateNull_leave__E)
                      0c2539e0    00000020                             : GateNull.oe66 (.text:xdc_runtime_GateNull_query__E)
                      0c253a00    00000020                             : Gate.oe66 (.text:xdc_runtime_Gate_enterSystem__E)
                      0c253a20    00000020                             : Gate.oe66 (.text:xdc_runtime_Gate_leaveSystem__E)
                      0c253a40    00000020     PEngine_pe66.oe66 (.text:xdc_runtime_IHeap_alloc)
                      0c253a60    00000020     PEngine_pe66.oe66 (.text:xdc_runtime_IHeap_free)
                      0c253a80    00000020     ti.targets.rts6000.ae66 : Memory.oe66 (.text:xdc_runtime_Memory_calloc__E)
                      0c253aa0    00000020                             : Memory.oe66 (.text:xdc_runtime_Memory_free__E)
                      0c253ac0    00000020                             : Memory.oe66 (.text:xdc_runtime_Memory_getMaxDefaultTypeAlign__E)
                      0c253ae0    00000020     PEngine_pe66.oe66 (.text:xdc_runtime_Startup_Module__startupDone__S)
                      0c253b00    00000020     PEngine_pe66.oe66 (.text:xdc_runtime_Startup_exec__I)
                      0c253b20    00000020     ti.targets.rts6000.ae66 : Startup.oe66 (.text:xdc_runtime_Startup_rtsDone__E)
                      0c253b40    00000020                             : SysMin.oe66 (.text:xdc_runtime_SysMin_ready__E)
                      0c253b60    00000020     PEngine_pe66.oe66 (.text:xdc_runtime_System_Module_GateProxy_enter__E)
                      0c253b80    00000020     PEngine_pe66.oe66 (.text:xdc_runtime_System_Module_GateProxy_leave__E)
                      0c253ba0    00000020     ti.targets.rts6000.ae66 : System.oe66 (.text:xdc_runtime_System_Module_startup__E)
                      0c253bc0    00000020                             : System.oe66 (.text:xdc_runtime_System_vsnprintf__E)
                      0c253be0    00000020                             : Text.oe66 (.text:xdc_runtime_Text_ropeText__E)
                      0c253c00    00000020     PEngine_pe66.oe66 (.text:xdc_runtime_Text_visitRope__I)
                      0c253c20    00000020     ti.targets.rts6000.ae66 : GateThread.oe66 (.text:xdc_runtime_knl_GateThread_Instance_finalize__E)
                      0c253c40    00000020     PEngine_pe66.oe66 (.text:xdc_runtime_knl_GateThread_Module__startupDone__S)
                      0c253c60    00000020     PEngine_pe66.oe66 (.text:xdc_runtime_knl_GateThread_Proxy_create)
                      0c253c80    00000020     PEngine_pe66.oe66 (.text:xdc_runtime_knl_GateThread_Proxy_delete)
                      0c253ca0    00000020     PEngine_pe66.oe66 (.text:xdc_runtime_knl_GateThread_Proxy_enter__E)
                      0c253cc0    00000020     PEngine_pe66.oe66 (.text:xdc_runtime_knl_GateThread_Proxy_leave__E)
                      0c253ce0    00000020     ti.targets.rts6000.ae66 : GateThread.oe66 (.text:xdc_runtime_knl_GateThread_enter__E)
                      0c253d00    00000020                             : GateThread.oe66 (.text:xdc_runtime_knl_GateThread_leave__E)
    
    MODULE SUMMARY
    
           Module                           code     ro data   rw data  
           ------                           ----     -------   -------  
        .\
           AODDR3Mem.obj                    256      0         536870008
           AOPEngineDriver.obj              64384    807       29538    
           AppControl.obj                   24000    427       52134    
           FilterPEngineCond.obj            9440     221       54304    
           FilterScriptExecuter.obj         16672    908       32004    
           AOMemoryMangment.obj             4256     0         25600    
           FilterDetection.obj              6176     135       0        
           FilterImpedanceMeasurement.obj   5664     145       256      
           DSP_iir.obj                      3552     0         8        
           FILTER.obj                       3168     334       0        
           Pipe.obj                         2688     213       0        
           edma3utils.obj                   2144     0         556      
           MDDriverUtils.obj                2592     0         0        
           utils.obj                        1536     56        33       
           HashTableVoid.obj                1600     0         0        
           AOTimeCalcualtor.obj             1248     0         1        
           AODriver.obj                     1152     75        0        
           WatchDog_6474.obj                896      24        0        
           WATCHDOG.obj                     768      59        4        
           aostack.obj                      480      28        0        
           PEngine0.obj                     224      20        8        
           ErrorSupport.obj                 160      0         0        
        +--+--------------------------------+--------+---------+-----------+
           Total:                           153056   3452      537064454
                                                                        
        C:\Users\Loai\workspace_v7\CORE1-6_PENGINE\Debug\configPkg\package\cfg\
           PEngine_pe66.oe66                12384    17027     258438   
        +--+--------------------------------+--------+---------+-----------+
           Total:                           12384    17027     258438   
                                                                        
        C:\Users\Loai\workspace_v7\CORE1-6_PENGINE\src\sysbios\sysbios.ae66
           BIOS.obj                         32672    1304      0        
           c64p_Hwi_disp_always.obj         512      0         0        
           c64p_Exception_asm.obj           384      0         0        
           c62_TaskSupport_asm.obj          224      0         0        
           c64p_Hwi_asm_switch.obj          192      0         0        
           c64p_Hwi_asm.obj                 160      0         0        
        +--+--------------------------------+--------+---------+-----------+
           Total:                           34144    1304      0        
                                                                        
        C:\ti\bios_6_73_00_12\packages\ti\targets\rts6000\lib\boot.ae66
           autoinit.oe66                    288      0         0        
           boot.oe66                        160      0         0        
        +--+--------------------------------+--------+---------+-----------+
           Total:                           448      0         0        
                                                                        
        C:\ti\bios_6_73_00_12\packages\ti\targets\rts6000\lib\ti.targets.rts6000.ae66
           System.oe66                      3232     24        0        
           Text.oe66                        1824     64        0        
           Error.oe66                       1152     88        0        
           Startup.oe66                     896      44        0        
           Core-mem.oe66                    896      0         0        
           SysMin.oe66                      704      0         0        
           Memory.oe66                      448      0         0        
           Core-smem.oe66                   416      0         0        
           Assert.oe66                      192      4         0        
           Core-params.oe66                 160      0         0        
           GateThread.oe66                  160      0         0        
           Core-label.oe66                  128      0         0        
           GateNull.oe66                    96       0         0        
           Gate.oe66                        64       0         0        
           Registry.oe66                    64       0         0        
        +--+--------------------------------+--------+---------+-----------+
           Total:                           10432    224       0        
                                                                        
        C:\ti\ipc_3_50_02_02\packages\ti\sdo\ipc\lib\ipc\instrumented\ipc.ae66
           Ipc.obj                          89760    2439      0        
        +--+--------------------------------+--------+---------+-----------+
           Total:                           89760    2439      0        
                                                                        
        C:\ti\ipc_3_50_02_02\packages\ti\sdo\utils\lib\utils\instrumented\utils.ae66
           UTILS.obj                        7264     0         0        
        +--+--------------------------------+--------+---------+-----------+
           Total:                           7264     0         0        
                                                                        
        C:\ti\pdk_c667x_2_0_11\packages\ti\csl\lib\c6678\c66\release\ti.csl.ae66
           csl_edma3HwChannelControl.oe66   1408     20        0        
           csl_edma3HwControl.oe66          1248     60        0        
           csl_edma3HwSetup.oe66            960      0         0        
           csl_edma3GetHwStatus.oe66        736      32        0        
           csl_edma3Param.oe66              320      0         0        
           csl_edma3ChannelOpen.oe66        288      0         0        
           csl_edma3GetBaseAddress.oe66     288      0         0        
           csl_edma3HwChannelSetup.oe66     192      0         0        
           csl_edma3Open.oe66               192      0         0        
           csl_edma3ChannelClose.oe66       64       0         0        
           csl_edma3Close.oe66              32       0         0        
           csl_edma3Init.oe66               32       0         0        
        +--+--------------------------------+--------+---------+-----------+
           Total:                           5760     112       0        
                                                                        
        C:\ti\ti-cgt-c6000_8.2.2\lib\rts6600_elf.lib
           _printfi.obj                     13696    92        0        
           divd.obj                         1536     0         0        
           fputs.obj                        992      0         0        
           defs.obj                         0        0         804      
           divf.obj                         640      0         0        
           imath64.obj                      640      0         0        
           fputc.obj                        544      0         0        
           setvbuf.obj                      544      0         0        
           trgmsg.obj                       224      0         288      
           getdevice.obj                    448      0         0        
           imath40.obj                      448      0         0        
           hostrename.obj                   416      0         0        
           typeinfo_.obj                    192      214       0        
           frexp.obj                        384      0         0        
           write.obj                        96       0         280      
           dtor_list.obj                    352      0         8        
           sqrt.obj                         352      0         0        
           fclose.obj                       320      0         0        
           ldexp.obj                        320      0         0        
           copy_decompress_rle.obj          288      0         0        
           fseek.obj                        288      0         0        
           printf.obj                       288      0         0        
           vec_newdel.obj                   288      0         0        
           exit.obj                         256      0         12       
           ctype.obj                        0        257       0        
           _io_perm.obj                     256      0         0        
           atoi.obj                         256      0         0        
           fixdull.obj                      256      0         0        
           hostopen.obj                     224      0         8        
           close.obj                        224      0         0        
           divi.obj                         224      0         0        
           fixdlli.obj                      224      0         0        
           hostlseek.obj                    224      0         0        
           hostwrite.obj                    224      0         0        
           llshift.obj                      224      0         0        
           ltoa.obj                         224      0         0        
           memset.obj                       224      0         0        
           divu.obj                         192      0         0        
           fflush.obj                       192      0         0        
           fixflli.obj                      192      0         0        
           fltllid.obj                      192      0         0        
           fltllif.obj                      192      0         0        
           hostread.obj                     192      0         0        
           hostunlink.obj                   192      0         0        
           new_.obj                         192      0         0        
           remi.obj                         192      0         0        
           tls.obj                          192      0         0        
           fixfu.obj                        160      0         0        
           fltulld.obj                      160      0         0        
           fopen.obj                        160      0         0        
           hostclose.obj                    160      0         0        
           memcpy64.obj                     160      0         0        
           remu.obj                         160      0         0        
           fixdu.obj                        128      0         0        
           strncpy.obj                      128      0         0        
           unlink.obj                       128      0         0        
           _lock.obj                        96       0         8        
           frcmpyd_div.obj                  96       0         0        
           lseek.obj                        96       0         0        
           memccpy.obj                      96       0         0        
           strcmp.obj                       96       0         0        
           strcpy.obj                       96       0         0        
           args_main.obj                    64       0         0        
           isinf.obj                        64       0         0        
           strasg.obj                       64       0         0        
           errno.obj                        32       0         4        
           _data_synch.obj                  32       0         0        
           copy_decompress_none.obj         32       0         0        
           delete.obj                       32       0         0        
           error.obj                        32       0         0        
           newhandler.obj                   32       0         0        
           pure_virt.obj                    32       0         0        
           vars.obj                         0        0         4        
        +--+--------------------------------+--------+---------+-----------+
           Total:                           30592    563       1416     
                                                                        
           Stack:                           0        0         4096     
           Linker Generated:                0        2960      0        
        +--+--------------------------------+--------+---------+-----------+
           Grand Total:                     343840   28081     537328404
    
    
    LINKER GENERATED COPY TABLES
    
    __TI_cinit_table @ 00876e78 records: 7, size/record: 8, table size: 56
    	.fardata: load addr=00876320, load size=000009af bytes, run addr=00872f38, run size=000019c4 bytes, compression=rle
    	.ethsect: load addr=00876ccf, load size=000000e6 bytes, run addr=80000000, run size=1ffffc70 bytes, compression=rle
    	.neardata: load addr=00876db5, load size=0000006e bytes, run addr=00876220, run size=000000dc bytes, compression=rle
    	.rodata: load addr=00876e23, load size=0000002a bytes, run addr=008762fc, run size=00000024 bytes, compression=rle
    	.far: load addr=00876e4d, load size=0000000d bytes, run addr=0083c000, run size=000312e0 bytes, compression=rle
    	systemHeap: load addr=00876e5a, load size=0000000d bytes, run addr=00800000, run size=0003c000 bytes, compression=rle
    	.bss: load addr=00876e67, load size=00000009 bytes, run addr=00876200, run size=0000001d bytes, compression=rle
    
    
    LINKER GENERATED HANDLER TABLE
    
    __TI_handler_table @ 00876e70 records: 2, size/record: 4, table size: 8
    	index: 0, handler: __TI_decompress_rle24
    	index: 1, handler: __TI_decompress_none
    
    
    GLOBAL SYMBOLS: SORTED ALPHABETICALLY BY Name 
    
    address   name                                                                                      
    -------   ----                                                                                      
    00876314  ADCPotSWI                                                                                 
    0c228b40  ADCPotSWIFxn                                                                              
    00876200  AODACPIP                                                                                  
    0c223bf0  AO_Log2                                                                                   
    0c2325c4  AOcmprss                                                                                  
    0c23270c  AOdecmprss                                                                                
    0c2324f0  AddAndEnableIPCInterrupt                                                                  
    0086a770  AppContrPE                                                                                
    0c2529c0  C$$EXIT                                                                                   
    0c24f758  C$$IO$$                                                                                   
    00873f00  CONST_TABLE_FMA                                                                           
    00873f80  CONST_TABLE_HEADSTAGE                                                                     
    0086d1e8  CORES_STATUS                                                                              
    0c251240  CSL_edma3ChannelClose                                                                     
    0c248060  CSL_edma3ChannelOpen                                                                      
    0c2529e0  CSL_edma3Close                                                                            
    0c23dae0  CSL_edma3GetHwStatus                                                                      
    0c24e160  CSL_edma3GetParamHandle                                                                   
    0c234740  CSL_edma3HwChannelControl                                                                 
    0c24b620  CSL_edma3HwChannelSetupQue                                                                
    0c235bc0  CSL_edma3HwControl                                                                        
    0c239360  CSL_edma3HwSetup                                                                          
    0c252a00  CSL_edma3Init                                                                             
    0c24b6e0  CSL_edma3Open                                                                             
    0c24cfc0  CSL_edma3ParamSetup                                                                       
    0c252a20  CSL_edma3ParamWriteWord                                                                   
    0c248180  CSL_edma3ccGetModuleBaseAddr                                                              
    008762ec  ClkFrequencyMH                                                                            
    0c22ad24  ConfigureEDMA3TMMatrix                                                                    
    0c22af18  ConfigureTMMatrixAnRun                                                                    
    0c232894  CopyInputHeaders                                                                          
    00876248  DDR2TMInBuff                                                                              
    0087624c  DDR2TMOutBuff                                                                             
    0c22a800  DMA3_init                                                                                 
    0c2237f4  DSP_HP_BIQUAD                                                                             
    0c223ae0  DSP_HP_BIQUAD_LOW_FREQ                                                                    
    0c223c54  DSP_LP_BIQUAD                                                                             
    0c2231e0  DSP_iir                                                                                   
    0c223414  DSP_lp                                                                                    
    0c22aacc  EdmaEventHook                                                                             
    00876230  GPIO_CLR_REG                                                                              
    00876224  GPIO_DIR_REG                                                                              
    00876228  GPIO_OUT_REG                                                                              
    0087622c  GPIO_SET_REG                                                                              
    0c24f160  GateMP_Params_init                                                                        
    0c2462e0  GateMP_close                                                                              
    0c240680  GateMP_enter                                                                              
    0c2408c0  GateMP_leave                                                                              
    0c23c000  GateMP_openByAddr                                                                         
    0c239ac0  GateMP_sharedMemReq                                                                       
    0c20f148  GlobalVarsInit                                                                            
    0c24c980  HOSTclose                                                                                 
    0c249d60  HOSTlseek                                                                                 
    0c249e40  HOSTopen                                                                                  
    0c24ad20  HOSTread                                                                                  
    0c244360  HOSTrename                                                                                
    0c24ade0  HOSTunlink                                                                                
    0c249f20  HOSTwrite                                                                                 
    0c24f1c0  HeapMemMP_Params_init                                                                     
    0c24ca20  HeapMemMP_create                                                                          
    0c244500  HeapMemMP_openByAddr                                                                      
    0c239e40  HeapMemMP_sharedMemReq                                                                    
    0c232460  IPCisr                                                                                    
    0c20eee8  InitTaskFxn                                                                               
    0c220f00  Ipc_attach                                                                                
    00876204  Ipc_sr0MemorySetup                                                                        
    0c237bc0  Ipc_start                                                                                 
    0c24aea0  ListMP_create                                                                             
    0c230600  ListMP_getHead                                                                            
    0c243140  ListMP_openByAddr                                                                         
    0c236a60  ListMP_putTail                                                                            
    0c23ee00  ListMP_sharedMemReq                                                                       
    0c226100  MessageQ_put                                                                              
    0c252080  MultiProc_getBaseIdOfCluster                                                              
    0c2520a0  MultiProc_getNumProcessors                                                                
    0c2520c0  MultiProc_self                                                                            
    0c243320  MultiProc_setLocalId                                                                      
    0c22e4c0  NameServer_add                                                                            
    0c2520e0  NameServer_addUInt32                                                                      
    0c243aa0  NameServer_getHandle                                                                      
    0c23c300  NameServer_getLocal                                                                       
    0c252100  NameServer_getLocalUInt32                                                                 
    0c252120  NameServer_removeEntry                                                                    
    0c246440  Notify_intLineRegistered                                                                  
    0c22d6a0  Notify_registerEvent                                                                      
    0c232a40  Notify_registerEventSingle                                                                
    0c22ddc0  Notify_sendEvent                                                                          
    0c233020  Notify_unregisterEventSingle                                                              
    008762a0  PE_RcvIsr0Count                                                                           
    00876298  PE_RcvIsrCount                                                                            
    008762b0  PE_RcvSWICount                                                                            
    0087629c  PE_SortIsrCount                                                                           
    008762a8  PE_XmtIsr0Count                                                                           
    008762ac  PE_XmtIsrCount                                                                            
    008762b4  PE_XmtSWICount                                                                            
    0085e368  PE_rcv                                                                                    
    00876208  PE_sort                                                                                   
    00860b68  PE_xmt                                                                                    
    00876304  PEngineReadSWI                                                                            
    0c200880  PEngineReadSWIFxn                                                                         
    00876310  PEngineWriteSWI                                                                           
    0c2008a4  PEngineWriteSWIFxn                                                                        
    0c22a7c4  PEngine_Interrupt_init                                                                    
    0c20eee0  PEngine_task                                                                              
    0086d190  PS                                                                                        
    0086cd30  PipeADIn                                                                                  
    0086d23c  PipeADInUtil                                                                              
    0086cd80  PipeADOut                                                                                 
    0086d248  PipeADOutUtil                                                                             
    0086cdd0  PipeBlocksAccumulatorIn                                                                   
    0086d254  PipeBlocksAccumulatorInUtil                                                               
    0086ce20  PipeCodecIn                                                                               
    0086d260  PipeCodecInUtil                                                                           
    0086ce70  PipeCondOut                                                                               
    0086d26c  PipeCondOutUtil                                                                           
    0086cec0  PipeDetectionOut                                                                          
    0086d278  PipeDetectionOutUtil                                                                      
    0086cf10  PipeImpOut                                                                                
    0086d284  PipeImpOutUtil                                                                            
    0086cf60  PipePCIIn                                                                                 
    0086cfb0  PipePCIOut                                                                                
    0086d290  PipePCIOutUtil                                                                            
    0086d000  PipeScriptExecuterIn                                                                      
    0086d29c  PipeScriptExecuterInUtil                                                                  
    0086d050  PipeScriptExecuterOut                                                                     
    0086d2a8  PipeScriptExecuterOutUtil                                                                 
    0086d0a0  PipeTMIn                                                                                  
    0086d2b4  PipeTMInUtil                                                                              
    0086d0f0  PipeTMOut                                                                                 
    0086d2c0  PipeTMOutUtil                                                                             
    0c20f080  PrdParseFxn                                                                               
    00876308  SWINotifyReader                                                                           
    0c20f0b8  SWINotifyReaderFxn                                                                        
    0087630c  SWIPipeDataInsert                                                                         
    0c20f0a4  SWIPipeDataInsertFXN                                                                      
    0c2446a0  SharedRegion_getCacheLineSize                                                             
    0c244840  SharedRegion_getHeap                                                                      
    0c23d800  SharedRegion_getPtr                                                                       
    0c23c600  SharedRegion_getSRPtr                                                                     
    0c243c60  SharedRegion_isCacheEnabled                                                               
    00876234  TCPIPStatusStreamHeader                                                                   
    00876258  TMInBuff                                                                                  
    0087625c  TMOutBuff                                                                                 
    00876300  TSK_ETHERNET_ProcessingTask                                                               
    0086caf0  TccHandlerTable                                                                           
    0c22a780  TccHandlerTableInit                                                                       
    008762d8  TccHandlerTableInitialized                                                                
    00876278  Timestamp                                                                                 
    0c232948  TransposeInputMatrix                                                                      
    0c252140  _GateMP_virtToPhys                                                                        
    0c23a30c  _Z12InitWatchDogiibii                                                                     
    0c23a1c0  _Z13GetTimer_pRegi                                                                        
    0c20f0e4  _Z13QDMA0Finishedv                                                                        
    0c20f0f8  _Z13QDMA1Finishedv                                                                        
    0c20f118  _Z13QDMA2Finishedv                                                                        
    0c20f130  _Z13QDMA3Finishedv                                                                        
    0c23a2d4  _Z13StartWatchDogi                                                                        
    0c23a248  _Z14StrokeWatchDogi                                                                       
    0c20ef70  _Z16GetContactNumberi                                                                     
    0c2001b4  _Z17PEngineRcvIsr_HWIv                                                                    
    0c2004b0  _Z17PEngineXmtIsr_HWIv                                                                    
    0c200168  _Z18PEngineRcvIsr0_HWIv                                                                   
    0c200150  _Z18PEngineSortIsr_HWIv                                                                   
    0c200464  _Z18PEngineXmtIsr0_HWIv                                                                   
    0c250600  _Z18iFValueDriveIsTruet                                                                   
    0c200000  _Z19GetCalibrationValuePss                                                                
    0c20f0d0  _Z20ChangeGlobalDSPclockv                                                                 
    0c200180  _Z21PEngineRcvIsrPing_HWIv                                                                
    0c200198  _Z21PEngineRcvIsrPong_HWIv                                                                
    0c200494  _Z21PEngineXmtIsrPing_HWIv                                                                
    0c200478  _Z21PEngineXmtIsrPong_HWIv                                                                
    0c252160  _Z21__default_new_handlerv                                                                
    0c24a018  _Z5cbFxnttjjj                                                                             
    0c24a000  _Z9SYS_abortv                                                                             
    0c228d4c  _ZN10CAOPIDReg313pid_reg3_calcEl                                                          
    0c228d30  _ZN10CAOPIDReg38StartNewEv                                                                
    0c228cac  _ZN10CAOPIDReg3C1Ev                                                                       
    0c228cac  _ZN10CAOPIDReg3C2Ev                                                                       
    0c252180  _ZN10__cxxabiv117__class_type_infoD0Ev                                                    
    0c2521a0  _ZN10__cxxabiv117__class_type_infoD1Ev                                                    
    0c2521a0  _ZN10__cxxabiv117__class_type_infoD2Ev                                                    
    0c2521c0  _ZN10__cxxabiv120__si_class_type_infoD0Ev                                                 
    0c2521e0  _ZN10__cxxabiv120__si_class_type_infoD1Ev                                                 
    0c2521e0  _ZN10__cxxabiv120__si_class_type_infoD2Ev                                                 
    0c252200  _ZN10__cxxabiv121__vmi_class_type_infoD0Ev                                                
    0c252220  _ZN10__cxxabiv121__vmi_class_type_infoD1Ev                                                
    0c252220  _ZN10__cxxabiv121__vmi_class_type_infoD2Ev                                                
    0c228f4c  _ZN11CAORampCtrl12RampCtrlCalcEl                                                          
    0c228ed0  _ZN11CAORampCtrl8StartNewEl                                                               
    0c228e90  _ZN11CAORampCtrlC1Ev                                                                      
    0c228e90  _ZN11CAORampCtrlC2Ev                                                                      
    0c228bc0  _ZN11CAOSpdEstim14speed_est_calcEv                                                        
    0c228b84  _ZN11CAOSpdEstim8StartNewEv                                                               
    0c228b70  _ZN11CAOSpdEstimC1Ev                                                                      
    0c228b70  _ZN11CAOSpdEstimC2Ev                                                                      
    0c228fc0  _ZN11SCalcMinMax15CalcMinMax_InitEv                                                       
    0c228fe8  _ZN11SCalcMinMax17CalcMinMax_SetNewEi                                                     
    0c2227cc  _ZN12CMemoryMange10FreeMemoryEj                                                           
    0c222950  _ZN12CMemoryMange11FindSegmentEj                                                          
    0c2228b8  _ZN12CMemoryMange12SegmentExistEj                                                         
    0c222390  _ZN12CMemoryMange14AllocateMemoryEPsij                                                    
    0c222564  _ZN12CMemoryMange18AllocateMoreMemoryEPsij                                                
    0c222874  _ZN12CMemoryMange22GetPointertoNext16WordEji                                              
    0c2228e4  _ZN12CMemoryMange23GetPointerToFreeSegmentEv                                              
    0c2222b0  _ZN12CMemoryMangeC1Ev                                                                     
    0c2222b0  _ZN12CMemoryMangeC2Ev                                                                     
    0c24c904  _ZN13CErrorSupport15IsErrorDetectedEv                                                     
    0c24c928  _ZN13CErrorSupport15ResetErrorValueEv                                                     
    0c24c944  _ZN13CErrorSupport8SetErrorEi                                                             
    0c24c8e0  _ZN13CErrorSupportC1Ev                                                                    
    0c24c8e0  _ZN13CErrorSupportC2Ev                                                                    
    0c252240  _ZN14AO_4BYTES_TYPEC1EPv                                                                  
    0c252260  _ZN14AO_4BYTES_TYPEC2EPv                                                                  
    0c2294b0  _ZN14CADCalibration13IsValuesValidEv                                                      
    0c229368  _ZN14CADCalibration13SetPositionADEif                                                     
    0c2293c4  _ZN14CADCalibration15GetADByPositionEf                                                    
    0c229258  _ZN14CADCalibration15GetPositionByADEif                                                   
    0c2291d4  _ZN14CADCalibration19SetCalibrationTabelEPti                                              
    0c2291c0  _ZN14CADCalibration4InitEb                                                                
    0c229184  _ZN14CADCalibrationC1Ev                                                                   
    0c229184  _ZN14CADCalibrationC2Ev                                                                   
    0c231660  _ZN14CHashTableVoid10GetElementEs                                                         
    0c231240  _ZN14CHashTableVoid12BinarySearchEs                                                       
    0c23146c  _ZN14CHashTableVoid13InsertElementEsPv                                                    
    0c23172c  _ZN14CHashTableVoid5GetAtEi                                                               
    0c2313d0  _ZN14CHashTableVoid6CreateEi                                                              
    0c231380  _ZN14CHashTableVoid6GetMidEii                                                             
    0c231794  _ZN14CHashTableVoid7ClearAtEi                                                             
    0c231774  _ZN14CHashTableVoid8GetCountEv                                                            
    0c222240  _ZN14CMemorySegment11FreeSegmentEv                                                        
    0c222140  _ZN14CMemorySegment13getBlockIndexEi                                                      
    0c2221e4  _ZN14CMemorySegment20GetIndextoNext16WordEj                                               
    0c22216c  _ZN14CMemorySegmentC1Ev                                                                   
    0c22216c  _ZN14CMemorySegmentC2Ev                                                                   
    0c229064  _ZN15CRunningAverage11CalcAverageEv                                                       
    0c2290f0  _ZN15CRunningAverage16ReceieveNewValueEt                                                  
    0c22902c  _ZN15CRunningAverageC1Ev                                                                  
    0c22902c  _ZN15CRunningAverageC2Ev                                                                  
    0c252280  _ZN15StreamDataBlockC1Ev                                                                  
    0c20b580  _ZN16CAOPEngineDriver10HandleDoutEP15StreamDataBlock                                      
    0c20e4ec  _ZN16CAOPEngineDriver10MoveHandleE13E_CommandTypePt                                       
    0c20e068  _ZN16CAOPEngineDriver10StopHandleEPt                                                      
    0c20d000  _ZN16CAOPEngineDriver11CalculateCMEPs                                                     
    0c20d10c  _ZN16CAOPEngineDriver11ConfigureHWEv                                                      
    0c20ec64  _ZN16CAOPEngineDriver11GetCMFactorEi                                                      
    0c20e648  _ZN16CAOPEngineDriver11MOTOR_A_ISREb                                                      
    0c20e358  _ZN16CAOPEngineDriver11MoveMotorMMEif                                                     
    0c20e288  _ZN16CAOPEngineDriver11ResetHandleEPt                                                     
    0c20d9ac  _ZN16CAOPEngineDriver11SetChannelsEibb                                                    
    0c20e86c  _ZN16CAOPEngineDriver11enableMotorEv                                                      
    0c20e944  _ZN16CAOPEngineDriver12FixStimValueEsi                                                    
    0c20672c  _ZN16CAOPEngineDriver12NotifyReaderEv                                                     
    0c20e82c  _ZN16CAOPEngineDriver12disableMotorEv                                                     
    0c207838  _ZN16CAOPEngineDriver13AddWaveFormatEiiPc                                                 
    0c205144  _ZN16CAOPEngineDriver13BlockReceivedEv                                                    
    0c20ea8c  _ZN16CAOPEngineDriver13GetStimFactorEi                                                    
    0c208030  _ZN16CAOPEngineDriver13IsFEConnectedEv                                                    
    0c20e2e8  _ZN16CAOPEngineDriver13RunPIDControlEm                                                    
    0c2075e4  _ZN16CAOPEngineDriver13StopUDChannelEi                                                    
    0c20c504  _ZN16CAOPEngineDriver13TurnChannelOnEib                                                   
    0c20dfc0  _ZN16CAOPEngineDriver14GetIdentHandleEPt                                                  
    0c2522a0  _ZN16CAOPEngineDriver14GetXmtLineCopyEv                                                   
    0c20c280  _ZN16CAOPEngineDriver14HandleMapingUDEP18StreamCommandBlock                               
    0c20e334  _ZN16CAOPEngineDriver14SecondFeedBackEv                                                   
    0c20df10  _ZN16CAOPEngineDriver14SetSpeedHandleEPt                                                  
    0c207648  _ZN16CAOPEngineDriver14StartUDChannelEiij                                                 
    0c2079f0  _ZN16CAOPEngineDriver15AddChannelUDGenEiii                                                
    0c20e4a0  _ZN16CAOPEngineDriver15CalibInfoHandleEPt                                                 
    0c24f220  _ZN16CAOPEngineDriver15GetSamplingRateEv                                                  
    0c209354  _ZN16CAOPEngineDriver15HandleFlashDataEPti                                                
    0c206eb4  _ZN16CAOPEngineDriver15IsStimulationOnEi                                                  
    0c2074d4  _ZN16CAOPEngineDriver15SetPortAsStrobeEsb                                                 
    0c20d2e0  _ZN16CAOPEngineDriver16AdvanceADCounterEv                                                 
    0c207760  _ZN16CAOPEngineDriver16RemoveWaveFormatEi                                                 
    0c20e4b4  _ZN16CAOPEngineDriver16SetGlobalPointerEP11SGlobalVars                                    
    0c20dbc4  _ZN16CAOPEngineDriver16UpdateHW_VersionEts                                                
    0c207b68  _ZN16CAOPEngineDriver17AddChannelStimGenEiii                                              
    0c207964  _ZN16CAOPEngineDriver17AddDataToWaveFormEiiPsi                                            
    0c20afb8  _ZN16CAOPEngineDriver17GetArtifactExistsEs                                                
    0c20e1a8  _ZN16CAOPEngineDriver17HandleConfigMotorEPt                                               
    0c20c520  _ZN16CAOPEngineDriver17SetElectrodeStateEii                                               
    0c20e108  _ZN16CAOPEngineDriver17SetPositionHandleEPt                                               
    0c207350  _ZN16CAOPEngineDriver18SetRemarkToChannelEsi                                              
    0c20c3b0  _ZN16CAOPEngineDriver19HandleGroundChannelEPt                                             
    0c2072e0  _ZN16CAOPEngineDriver20GetNextRcvSortBufferEv                                             
    0c207ed4  _ZN16CAOPEngineDriver20RemoveChannelStimGenEi                                             
    0c2070c4  _ZN16CAOPEngineDriver20SettingBeforeSendingEv                                             
    0c207f80  _ZN16CAOPEngineDriver20TurnOffAnalogChannelEj                                             
    0c20c494  _ZN16CAOPEngineDriver21HandleSetChannelStateEPt                                           
    0c209064  _ZN16CAOPEngineDriver21HandleStopAcquisitionEPt                                           
    0c20a020  _ZN16CAOPEngineDriver21HandleStopStimulationEPt                                           
    0c20d334  _ZN16CAOPEngineDriver21UpdateFEConfigurationEtt                                           
    0c20d6d8  _ZN16CAOPEngineDriver21UpdateRMConfigurationEt                                            
    0c20e9e8  _ZN16CAOPEngineDriver22FixCurrentMonitorValueEsi                                          
    0c209034  _ZN16CAOPEngineDriver22HandleStartAcquisitionEPt                                          
    0c2096f8  _ZN16CAOPEngineDriver22HandleStartStimulationEPt                                          
    0c20b848  _ZN16CAOPEngineDriver23HandleStartDigtalOutputEPt                                         
    0c2522c0  _ZN16CAOPEngineDriver23IsSecondHeadStageActiveEv                                          
    0c20be70  _ZN16CAOPEngineDriver24ReturnChannelToLastStateEi                                         
    008718b8  _ZN16CAOPEngineDriver24m_arrAnalogOutputMappingE                                          
    0c20bce8  _ZN16CAOPEngineDriver26HandleGenerateDigtalOutputEPt                                      
    0c20a7ac  _ZN16CAOPEngineDriver27HandleStimulationGenerationEPt                                     
    0c20e900  _ZN16CAOPEngineDriver29IsDriveConnectedAndCalibratedEv                                    
    0c2090e8  _ZN16CAOPEngineDriver33HandleImpedanceMeasurementControlEPt                               
    0c20b1e0  _ZN16CAOPEngineDriver39HandleImpedanceMeasurementConfigurationEPt                         
    0c20e74c  _ZN16CAOPEngineDriver3ifAEv                                                               
    0c20e764  _ZN16CAOPEngineDriver3ifBEv                                                               
    0c203ef8  _ZN16CAOPEngineDriver4InitEv                                                              
    0c20e604  _ZN16CAOPEngineDriver4stopE11EWatchDogIdPv                                                
    0c206a40  _ZN16CAOPEngineDriver5CheckEv                                                             
    0c206f08  _ZN16CAOPEngineDriver5ParseEv                                                             
    0c201e4c  _ZN16CAOPEngineDriver6FormatEv                                                            
    0c2080a0  _ZN16CAOPEngineDriver6HandleEPti                                                          
    0c20e774  _ZN16CAOPEngineDriver6moveUpEv                                                            
    0c20684c  _ZN16CAOPEngineDriver7SetDataEP10StreamBase                                               
    0c20d134  _ZN16CAOPEngineDriver7StartHWEv                                                           
    0c20e7cc  _ZN16CAOPEngineDriver8moveDownEv                                                          
    0c20e6f0  _ZN16CAOPEngineDriver8setSpeedEt                                                          
    0c2051a0  _ZN16CAOPEngineDriver9BlockSentEv                                                         
    0c206a20  _ZN16CAOPEngineDriver9GetParamsEv                                                         
    0c206cb4  _ZN16CAOPEngineDriver9RestartHWEv                                                         
    0c206758  _ZN16CAOPEngineDriver9SetParamsEP7AParams                                                 
    0c20e894  _ZN16CAOPEngineDriver9stopMotorEv                                                         
    0c201994  _ZN16CAOPEngineDriverC1Ev                                                                 
    0c201994  _ZN16CAOPEngineDriverC2Ev                                                                 
    0c222e28  _ZN16CAnalogGenerator11StopChannelEi                                                      
    0c222f08  _ZN16CAnalogGenerator12StartChannelEi                                                     
    0c222c78  _ZN16CAnalogGenerator13AddDesChannelEi                                                    
    0c222c48  _ZN16CAnalogGenerator14SetWaveFormSrcEP19CWaveFormDefinition                              
    0c2230e4  _ZN16CAnalogGenerator15GetNext16SampleEv                                                  
    0c223080  _ZN16CAnalogGenerator15IsContainChanelEi                                                  
    0c222d10  _ZN16CAnalogGenerator16RemoveDesChannelEi                                                 
    0c2231b4  _ZN16CAnalogGenerator4StopEv                                                              
    0c223190  _ZN16CAnalogGenerator5StartEv                                                             
    0c222fec  _ZN16CAnalogGenerator7SetFreqEi                                                           
    0c222b60  _ZN16CAnalogGeneratorC1Ev                                                                 
    0c222b60  _ZN16CAnalogGeneratorC2Ev                                                                 
    0c2522e0  _ZN16CCriticalSection4LockEv                                                              
    0c252300  _ZN16CCriticalSection6UnlockEv                                                            
    0c250640  _ZN16CCriticalSectionC1Ev                                                                 
    0c252320  _ZN16CCriticalSectionD0Ev                                                                 
    0c252340  _ZN16CCriticalSectionD1Ev                                                                 
    0c21f610  _ZN16CFilterDetection14CalculateLevelEP18CChannelsDetectionPstij                          
    0c21f56c  _ZN16CFilterDetection17ProcessAnalogDataEP18CChannelsDetectionPstj                        
    0c21f114  _ZN16CFilterDetection18TransformDataBlockEP10StreamBase                                   
    0c21f834  _ZN16CFilterDetection18UpdateChannelLevelEiii                                             
    0c21f330  _ZN16CFilterDetection20TransformStatusBlockEP10StreamBase                                 
    0c21f348  _ZN16CFilterDetection21TransformCommandBlockEP10StreamBase                                
    0c21f8ac  _ZN16CFilterDetection24CheckForDetectionAndSendEv                                         
    0c21ed50  _ZN16CFilterDetection6CreateEP7AParams                                                    
    0c21ede0  _ZN16CFilterDetection7AcquireEv                                                           
    0c21f474  _ZN16CFilterDetection7OnTimerEv                                                           
    0c21efc4  _ZN16CFilterDetection7SetDataEPht                                                         
    0c21efa8  _ZN16CFilterDetection7restartEv                                                           
    0c21edc4  _ZN16CFilterDetection9GetParamsEv                                                         
    0c21ed80  _ZN16CFilterDetection9SetParamsEP7AParams                                                 
    0c21ed14  _ZN16CFilterDetectionC1Ev                                                                 
    0c21ed14  _ZN16CFilterDetectionC2Ev                                                                 
    0c24f280  _ZN16SAcknowledgementC1EPv                                                                
    0c2358ec  _ZN17CAOTimeCalculator11UpdateTimerEm                                                     
    0c235858  _ZN17CAOTimeCalculator19PrepareStreamToSendEP28StreamStatusAOTimeCalculator               
    0c235908  _ZN17CAOTimeCalculator5ResetEv                                                            
    0c235794  _ZN17CAOTimeCalculator6EndCalEv                                                           
    0c235774  _ZN17CAOTimeCalculator8StartCalEv                                                         
    0c235708  _ZN17CAOTimeCalculatorC1EPc                                                               
    0c235708  _ZN17CAOTimeCalculatorC2EPc                                                               
    0c21e2a0  _ZN17CFeatureDetection23GetParamsLevelDetectionEPiS0_S0_S0_S0_S0_S0_                      
    0c21e230  _ZN17CFeatureDetection23SetParamsLevelDetectionEiiiiiii                                   
    0c21e330  _ZN17CFeatureDetection26CheckAndSendLevelDetectionEP7CFilter                              
    0c21e1f0  _ZN17CFeatureDetection9SetParamsEPii                                                      
    0c21e1c0  _ZN17CFeatureDetectionC1Ev                                                                
    0c21e1c0  _ZN17CFeatureDetectionC2Ev                                                                
    0c250680  _ZN17StreamStatusBlockC1Ev                                                                
    0c252360  _ZN17StreamStatusBlockC2Ev                                                                
    0c2506c0  _ZN17StreamStatusWavesC1Ev                                                                
    0c252380  _ZN17Uint32ValuesArr16C1EPv                                                               
    0c2523a0  _ZN17Uint32ValuesArr16ixEi                                                                
    0c21e4b0  _ZN18CChannelsDetection10AddFeatureE22E_FeatureDetectionTypePvi                           
    0c21e644  _ZN18CChannelsDetection10GetFeatureE22E_FeatureDetectionType                              
    0c21e494  _ZN18CChannelsDetection13StopDetectionEv                                                  
    0c21e450  _ZN18CChannelsDetection14StartDetectionEi                                                 
    0c21e400  _ZN18CChannelsDetectionC1Ev                                                               
    0c21e400  _ZN18CChannelsDetectionC2Ev                                                               
    0c2199ac  _ZN18CFilterPEngineCond13TurnOnChannelEjs                                                 
    0c21a7f4  _ZN18CFilterPEngineCond14IssueLFPBlocksEv                                                 
    0c2198d0  _ZN18CFilterPEngineCond15SetPortAsStrobeEsb                                               
    0c250700  _ZN18CFilterPEngineCond17EnableLFPCompressEb                                              
    0c219aac  _ZN18CFilterPEngineCond18TransformDataBlockEP10StreamBase                                 
    0c2195e0  _ZN18CFilterPEngineCond19ProcessHPFilterDataEP12CCondChannelPs                            
    0c21960c  _ZN18CFilterPEngineCond20ProcessLFPFilterDataEP12CCondChannelPsj                          
    0c250740  _ZN18CFilterPEngineCond20TransformStatusBlockEP10StreamBase                               
    0c250780  _ZN18CFilterPEngineCond21TransformCommandBlockEP10StreamBase                              
    0c218e60  _ZN18CFilterPEngineCond22InitCondChannelMappingEv                                         
    0c218b44  _ZN18CFilterPEngineCond22UpdateCondChannelEntryEP24CFilterPEngineCondParams               
    0c219968  _ZN18CFilterPEngineCond23GetHeadStageModuleStateEv                                        
    0c219984  _ZN18CFilterPEngineCond23SetHeadStageModuleStateEs                                        
    0c2507c0  _ZN18CFilterPEngineCond24SetLFPCompressChannelCntEi                                       
    0c218714  _ZN18CFilterPEngineCond6CreateEP7AParams                                                  
    0c2196c4  _ZN18CFilterPEngineCond7AcquireEv                                                         
    0c2195b8  _ZN18CFilterPEngineCond7restartEv                                                         
    0c2194ec  _ZN18CFilterPEngineCond9GetParamsEi                                                       
    0c219494  _ZN18CFilterPEngineCond9GetParamsEv                                                       
    0c218878  _ZN18CFilterPEngineCond9SetParamsEP29StreamFilterPEngineCondParams                        
    0c2187a0  _ZN18CFilterPEngineCond9SetParamsEP7AParams                                               
    0c2185f0  _ZN18CFilterPEngineCondC1Ev                                                               
    0c2185f0  _ZN18CFilterPEngineCondC2Ev                                                               
    0c250800  _ZN18StreamCommandBlockC1Ev                                                               
    0c2523c0  _ZN18StreamCommandBlockC2Ev                                                               
    0c235aec  _ZN19CAOTimeCalculatorEX19PrepareStreamToSendEP28StreamStatusAOTimeCalculator             
    0c235b74  _ZN19CAOTimeCalculatorEX5ResetEv                                                          
    0c2359c0  _ZN19CAOTimeCalculatorEX6EndCalEv                                                         
    0c2359a4  _ZN19CAOTimeCalculatorEX8StartCalEv                                                       
    0c235944  _ZN19CAOTimeCalculatorEXC1EPc                                                             
    0c235944  _ZN19CAOTimeCalculatorEXC2EPc                                                             
    0c222a74  _ZN19CWaveFormDefinition16AddSamplesToWaveEPsii                                           
    0c222a08  _ZN19CWaveFormDefinitionC1EiiPc                                                           
    0c2229c4  _ZN19CWaveFormDefinitionC1Ev                                                              
    0c222a08  _ZN19CWaveFormDefinitionC2EiiPc                                                           
    0c2229c4  _ZN19CWaveFormDefinitionC2Ev                                                              
    0c250840  _ZN20StreamStatusDevIdentC1Ev                                                             
    0c20f208  _ZN21CAONVStimDriverParamsC1Ev                                                            
    0c20f208  _ZN21CAONVStimDriverParamsC2Ev                                                            
    0c2523e0  _ZN21CFilterScriptExecuter10ForceFlushEv                                                  
    0c215a14  _ZN21CFilterScriptExecuter10performADDEv                                                  
    0c215bb4  _ZN21CFilterScriptExecuter10performDIVEv                                                  
    0c215968  _ZN21CFilterScriptExecuter10performJMPEv                                                  
    0c215b28  _ZN21CFilterScriptExecuter10performMULEv                                                  
    0c2159a8  _ZN21CFilterScriptExecuter10performNEGEv                                                  
    0c2153ac  _ZN21CFilterScriptExecuter10performNOPEv                                                  
    0c2154d8  _ZN21CFilterScriptExecuter10performPOPEv                                                  
    0c215aa0  _ZN21CFilterScriptExecuter10performSUBEv                                                  
    0c2178d8  _ZN21CFilterScriptExecuter11performDOUTEv                                                 
    0c217cb8  _ZN21CFilterScriptExecuter11performEXITEv                                                 
    0c2153d0  _ZN21CFilterScriptExecuter11performPUSHEv                                                 
    0c2161c0  _ZN21CFilterScriptExecuter11performSTIMEv                                                 
    0c217b70  _ZN21CFilterScriptExecuter12performPRINTEv                                                
    0c215438  _ZN21CFilterScriptExecuter12performPUSHVEv                                                
    0c2164ec  _ZN21CFilterScriptExecuter12performSTIMAEv                                                
    0c214d80  _ZN21CFilterScriptExecuter13AODelOperatorEv                                               
    0c214d24  _ZN21CFilterScriptExecuter13AONewOperatorEPvi                                             
    0c216c54  _ZN21CFilterScriptExecuter13performARR_EQEv                                               
    0c215eac  _ZN21CFilterScriptExecuter13performCOMPEQEv                                               
    0c215d38  _ZN21CFilterScriptExecuter13performCOMPGEEv                                               
    0c215cc0  _ZN21CFilterScriptExecuter13performCOMPGTEv                                               
    0c215db4  _ZN21CFilterScriptExecuter13performCOMPLEEv                                               
    0c215c44  _ZN21CFilterScriptExecuter13performCOMPLTEv                                               
    0c215e30  _ZN21CFilterScriptExecuter13performCOMPNEEv                                               
    0c215f28  _ZN21CFilterScriptExecuter13performCONCATEv                                               
    0c217c28  _ZN21CFilterScriptExecuter13performLENGTHEv                                               
    0c2156f4  _ZN21CFilterScriptExecuter13performPOPStrEv                                               
    0c217808  _ZN21CFilterScriptExecuter13performWAIT_BEv                                               
    0c217564  _ZN21CFilterScriptExecuter13performWAIT_DEv                                               
    0c216834  _ZN21CFilterScriptExecuter14performSTIM_EXEv                                              
    0c2174b0  _ZN21CFilterScriptExecuter14performWAIT_EXEv                                              
    0c218148  _ZN21CFilterScriptExecuter14perform_stopUDEv                                              
    0c216b14  _ZN21CFilterScriptExecuter15performINDEXINGEv                                             
    0c218270  _ZN21CFilterScriptExecuter15perform_StartUDEv                                             
    0c252400  _ZN21CFilterScriptExecuter16GetRunningStatusEv                                            
    0c2150d4  _ZN21CFilterScriptExecuter16HandleLoadScriptEP10StreamBase                                
    0c217188  _ZN21CFilterScriptExecuter16performIMP_STARTEv                                            
    0c217d28  _ZN21CFilterScriptExecuter17CopyToTmpVariableEP24VariablesHashElementTypesii              
    0c217aac  _ZN21CFilterScriptExecuter17performSEND_EVENTEv                                           
    0c214e28  _ZN21CFilterScriptExecuter18TransformDataBlockEP10StreamBase                              
    0c216eb0  _ZN21CFilterScriptExecuter19performRET_CHANNELSEv                                         
    0c214f78  _ZN21CFilterScriptExecuter20TransformStatusBlockEP10StreamBase                            
    0c217ea8  _ZN21CFilterScriptExecuter21CopyDataToChnVariableEP24VariablesHashElementTypePssi         
    0c215088  _ZN21CFilterScriptExecuter21TransformCommandBlockEP10StreamBase                           
    0c2151d0  _ZN21CFilterScriptExecuter22HandleScriptRunCommandEP10StreamBase                          
    0c218000  _ZN21CFilterScriptExecuter22performSET_STIM_MARKEREv                                      
    0c217378  _ZN21CFilterScriptExecuter23performSTOP_STIMULATIONEv                                     
    0c216d68  _ZN21CFilterScriptExecuter24performSTART_STIMULATIONEv                                    
    0c216ff8  _ZN21CFilterScriptExecuter25performSET_CHANNELS_STATEEv                                   
    0c21730c  _ZN21CFilterScriptExecuter27performSTOP_ALL_STIMULATIONEv                                 
    0c214898  _ZN21CFilterScriptExecuter6CreateEP7AParams                                               
    0c250880  _ZN21CFilterScriptExecuter7AcquireEv                                                      
    0c214900  _ZN21CFilterScriptExecuter7SetDataEPht                                                    
    0c2148f0  _ZN21CFilterScriptExecuter7restartEv                                                      
    0c252420  _ZN21CFilterScriptExecuter9GetParamsEv                                                    
    0c215320  _ZN21CFilterScriptExecuter9GetWaveIDEPc                                                   
    0c214d90  _ZN21CFilterScriptExecuter9SendErrorEPc                                                   
    0c214920  _ZN21CFilterScriptExecuter9SetParamsEP7AParams                                            
    0c21590c  _ZN21CFilterScriptExecuter9performJZEv                                                    
    0c214960  _ZN21CFilterScriptExecuter9runScriptEv                                                    
    0c214760  _ZN21CFilterScriptExecuterC1Ev                                                            
    0c214760  _ZN21CFilterScriptExecuterC2Ev                                                            
    0c2508c0  _ZN21StreamCommandStimStopC1Ev                                                            
    0c250900  _ZN21StreamStatusHWVersionC1Ev                                                            
    0c250940  _ZN22CAOPEngineDriverParamsC1Ev                                                           
    0c250980  _ZN22StreamCommandStimStartC1Ev                                                           
    0c2509c0  _ZN22StreamCommandUD_MapingC1Ev                                                           
    0c24dce0  _ZN22StreamMotorMotorStatusC1Ev                                                           
    0c24f2e0  _ZN22StreamStatusGenMessageC1Ev                                                           
    0c252440  _ZN22StreamStatusGenMessageC2Ev                                                           
    0c250a00  _ZN22StreamStatusStimStatusC1Ev                                                           
    0c24f340  _ZN23StreamCommandGenMessageC1Ev                                                          
    0c250a40  _ZN23StreamCommandMotorSpeedC1Ev                                                          
    0c250a80  _ZN23StreamStatusMotorStatusC1Ev                                                          
    0c21ebb8  _ZN24CAOFilterDetectionParams13StopDetectionEi                                            
    0c21ea64  _ZN24CAOFilterDetectionParams14StartDetectionEii                                          
    0c21e9d4  _ZN24CAOFilterDetectionParams15ClearAllFeatureEi                                          
    0c21e938  _ZN24CAOFilterDetectionParams17AddFeatureChannelEi22E_FeatureDetectionTypePvi             
    0c21e714  _ZN24CAOFilterDetectionParams19AddChannelDetectionEi                                      
    0c21ec94  _ZN24CAOFilterDetectionParams19GetChannelDetectionEi                                      
    0c21e840  _ZN24CAOFilterDetectionParams22RemoveChannelDetectionEi                                   
    0c21e6cc  _ZN24CAOFilterDetectionParamsC1Ev                                                         
    0c21e6cc  _ZN24CAOFilterDetectionParamsC2Ev                                                         
    0c2185e0  _ZN24CFilterPEngineCondParamsC1Ev                                                         
    0c2185e0  _ZN24CFilterPEngineCondParamsC2Ev                                                         
    0c252460  _ZN24StreamCommandElectParams14GetCableLengthEv                                           
    0c250ac0  _ZN24StreamCommandElectParams6IsStimEv                                                    
    0c248a60  _ZN24StreamCommandMotorConfigC1Ev                                                         
    0c250b00  _ZN24StreamCommandMotorMoveUpC1Ev                                                         
    0c250b40  _ZN24StreamCommandMotorSetPosC1Ev                                                         
    0c250b80  _ZN24VariablesHashElementTypeC1Ev                                                         
    0c252480  _ZN25CAODigtalOutPutGeneration4StopEv                                                     
    0c250bc0  _ZN25CAODigtalOutPutGeneration5StartEi                                                    
    0c24dd60  _ZN25CAODigtalOutPutGeneration8GenerateEiiisss                                            
    0c24dde0  _ZN25CAODigtalOutPutGenerationC1Ev                                                        
    0c24f3a0  _ZN25StreamCommand16WordsBlockC1Ev                                                        
    0c24f400  _ZN25StreamCommandFEBoardConfgC1Ev                                                        
    0c24de60  _ZN25StreamCommandImpCalibInfoC1Ev                                                        
    0c24f460  _ZN25StreamCommandUD_StartStopC1Ev                                                        
    0c220d2c  _ZN26CFilterImpedanceMeasurment15ReportImpValuesEv                                        
    0c22070c  _ZN26CFilterImpedanceMeasurment16StartMeasurementEP17CImpedanceChannel                    
    0c2200d8  _ZN26CFilterImpedanceMeasurment17ProcessAnalogDataEP17CImpedanceChannelPst                
    0c220b78  _ZN26CFilterImpedanceMeasurment18InitChannelMappingEv                                     
    0c220c18  _ZN26CFilterImpedanceMeasurment18TransformDataBlockEP10StreamBase                         
    0c220738  _ZN26CFilterImpedanceMeasurment18UpdateChannelEntryEP35CAOFilterImpedanceMeasurementParams
    0c220d00  _ZN26CFilterImpedanceMeasurment20TransformStatusBlockEP10StreamBase                       
    0c220d14  _ZN26CFilterImpedanceMeasurment21TransformCommandBlockEP10StreamBase                      
    0c21fa18  _ZN26CFilterImpedanceMeasurment6CreateEP7AParams                                          
    0c21fb80  _ZN26CFilterImpedanceMeasurment7AcquireEv                                                 
    0c21fa6c  _ZN26CFilterImpedanceMeasurment7SetDataEPht                                               
    0c21fa58  _ZN26CFilterImpedanceMeasurment7restartEv                                                 
    0c21ffc8  _ZN26CFilterImpedanceMeasurment9GetParamsEi                                               
    0c21ff6c  _ZN26CFilterImpedanceMeasurment9GetParamsEv                                               
    0c21fd68  _ZN26CFilterImpedanceMeasurment9SetParamsEP7AParams12E_ActionType                         
    0c21f9c0  _ZN26CFilterImpedanceMeasurmentC1Ev                                                       
    0c21f9c0  _ZN26CFilterImpedanceMeasurmentC2Ev                                                       
    0c250c00  _ZN26StreamCommandMotorMoveDownC1Ev                                                       
    0c250c40  _ZN27StreamStatusAcknowledgementC1Ev                                                      
    0c24f4c0  _ZN27StreamStatusAlabSnRHWStatusC1Ev                                                      
    0c24f520  _ZN28StreamCommandMGPlusImpValuesC1Ev                                                     
    0c24f580  _ZN28StreamCommandSetChannelStateC1Ev                                                     
    0c24cac0  _ZN28StreamStatusAOTimeCalculatorC1Ev                                                     
    0c2524a0  _ZN29CAOFilterScriptExecuterParamsC1Ev                                                    
    0c250c80  _ZN29StreamCommandModuleParamsBaseC1Ev                                                    
    0c2524c0  _ZN29StreamCommandModuleParamsBaseC2Ev                                                    
    0c24f5e0  _ZN30StreamStatusScriptRunningStateC1Ev                                                   
    0c250cc0  _ZN31StreamCommandMGPlusImpStartStopC1Ev                                                  
    0c24f640  _ZN32StreamCommandStimulatorScriptRunC1Ev                                                 
    0c250d00  _ZN33StreamCommandFilterParamsStimulus14SetStimVoltageEi                                  
    0c24dee0  _ZN33StreamCommandFilterParamsStimulusC1Ev                                                
    0c250d40  _ZN35CAOFilterImpedanceMeasurementParamsC1Ev                                              
    0c250d80  _ZN35StreamCommandMGPlusHeadStageWorkingC1Ev                                              
    0c24a0e0  _ZN37StreamCommandWirelessConfigureChannelC1Ev                                            
    0c229e70  _ZN5CPipe16PIP_getFrameSizeEv                                                             
    0c229d60  _ZN5CPipe17PIP_getReaderAddrEv                                                            
    0c229da0  _ZN5CPipe17PIP_getReaderSizeEv                                                            
    0c229de4  _ZN5CPipe17PIP_getWriterAddrEv                                                            
    0c229e30  _ZN5CPipe17PIP_getWriterSizeEv                                                            
    0c229dc0  _ZN5CPipe17PIP_setReaderSizeEi                                                            
    0c229e4c  _ZN5CPipe17PIP_setWriterSizeEi                                                            
    0c229e8c  _ZN5CPipe18PIP_getFramesCountEv                                                           
    0c229d80  _ZN5CPipe22PIP_getReaderNumFramesEv                                                       
    0c229e00  _ZN5CPipe22PIP_getWriterNumFramesEv                                                       
    0c229cec  _ZN5CPipe7PIP_getEv                                                                       
    0c229d40  _ZN5CPipe7PIP_putEv                                                                       
    0c229cd0  _ZN5CPipe8PIP_freeEv                                                                      
    0c229c4c  _ZN5CPipe9PIP_allocEPb                                                                    
    0c229b90  _ZN5CPipeC1Ell                                                                            
    0c229b90  _ZN5CPipeC2Ell                                                                            
    0c229c30  _ZN5CPipeD0Ev                                                                             
    0c229bf8  _ZN5CPipeD1Ev                                                                             
    0c229bf8  _ZN5CPipeD2Ev                                                                             
    0c229600  _ZN5IPipe13PIP_getRWSizeEv                                                                
    0c22958c  _ZN5IPipe18getNotifyReaderFxnEv                                                           
    0c2295c8  _ZN5IPipe18getNotifyWriterFxnEv                                                           
    0c2295ac  _ZN5IPipe18setNotifyReaderFxnEPFivE                                                       
    0c2295e4  _ZN5IPipe18setNotifyWriterFxnEPFivE                                                       
    0c250dc0  _ZN5IPipeC1Ev                                                                             
    0c2524e0  _ZN5IPipeC2Ev                                                                             
    0c229570  _ZN5IPipeD0Ev                                                                             
    0c229560  _ZN5IPipeD1Ev                                                                             
    0c229560  _ZN5IPipeD2Ev                                                                             
    0c201528  _ZN6CMotor10InitParamsEv                                                                  
    0c2013e0  _ZN6CMotor11GetDistanceEv                                                                 
    0c2016d0  _ZN6CMotor11GetPositionEv                                                                 
    0c200e10  _ZN6CMotor11SetNewSpeedEt                                                                 
    0c200b2c  _ZN6CMotor12SafetyChecksEv                                                                
    0c201320  _ZN6CMotor12SetDirectionE4EDIR                                                            
    0c201454  _ZN6CMotor13BeginMovementEl                                                               
    0c200a4c  _ZN6CMotor13RunPIDControlEm                                                               
    0c201428  _ZN6CMotor14FinishMovementEv                                                              
    0c201710  _ZN6CMotor14GetDestinationEv                                                              
    0c2016c0  _ZN6CMotor14SecondFeedBackEv                                                              
    0c201354  _ZN6CMotor15GetFeedbacksDifEv                                                             
    0c200950  _ZN6CMotor16SetGlobalPointerEP11SGlobalVars                                               
    0c200f04  _ZN6CMotor18PrepareBlockStatusEP23StreamStatusMotorStatusl                                
    0c201768  _ZN6CMotor18RunPIDControlMovedEmlli                                                       
    0c2011d8  _ZN6CMotor19SetCalibrationTabelEPti                                                       
    0c201964  _ZN6CMotor20RunPIDControlStoppedEmlli                                                     
    0c2018f4  _ZN6CMotor21RunPIDControlStoppingEmlli                                                    
    0c2016a0  _ZN6CMotor21SendToHostNewPositionEv                                                       
    0c201204  _ZN6CMotor4InitEv                                                                         
    0c200e8c  _ZN6CMotor9GetStatusEPt                                                                   
    0c20096c  _ZN6CMotor9MoveMotorEl                                                                    
    0c201234  _ZN6CMotor9SpeedCalcEl                                                                    
    0c200da0  _ZN6CMotor9StopMotorEv                                                                    
    0c2008d8  _ZN6CMotorC1Ev                                                                            
    0c2008d8  _ZN6CMotorC2Ev                                                                            
    0c252500  _ZN7AFilter13AddSourcePipeEP5CPipe                                                        
    0c252520  _ZN7AFilter13AddTargetPipeEP5CPipe                                                        
    0c252540  _ZN7AFilter6CreateEP7AParams                                                              
    0c252560  _ZN7AFilter7DestroyEv                                                                     
    0c252580  _ZN7AFilter7SetDataEPht                                                                   
    0c2525a0  _ZN7AFilter9SetParamsEP7AParams                                                           
    0c250e00  _ZN7AFilterC1Ev                                                                           
    0c2525c0  _ZN7AFilterC2Ev                                                                           
    0c2525e0  _ZN7AParams13SetParamsTypeE12E_ParamsType                                                 
    0c250e40  _ZN7AParamsC1Ev                                                                           
    0c252600  _ZN7AParamsC2Ev                                                                           
    0c2244a0  _ZN7CFilter10IssueBlockEP10StreamBase                                                     
    0c224788  _ZN7CFilter10IssueFrameEP10StreamBasei                                                    
    0c224ab4  _ZN7CFilter12PreTransformEv                                                               
    0c224060  _ZN7CFilter13AddSourcePipeEP5CPipe                                                        
    0c224080  _ZN7CFilter13AddTargetPipeEP5CPipe                                                        
    0c252620  _ZN7CFilter13GetScanStatusEv                                                              
    0c2245c8  _ZN7CFilter14IssueDataBlockEP10StreamBasePst                                              
    0c224548  _ZN7CFilter14IssueDataBlockEPstjtt                                                        
    0c2241ec  _ZN7CFilter18TransformDataBlockEP10StreamBase                                             
    0c22484c  _ZN7CFilter19ReadAllBLocksInPipeEv                                                        
    0c224218  _ZN7CFilter20TransformStatusBlockEP10StreamBase                                           
    0c22424c  _ZN7CFilter21TransformCommandBlockEP10StreamBase                                          
    0c224294  _ZN7CFilter5FlushEv                                                                       
    0c224280  _ZN7CFilter5IssueEv                                                                       
    0c224098  _ZN7CFilter7AcquireEv                                                                     
    0c2240b4  _ZN7CFilter7restartEv                                                                     
    0c224310  _ZN7CFilter8ReadDataEhPcj                                                                 
    0c22412c  _ZN7CFilter9TransformEv                                                                   
    0c2243b4  _ZN7CFilter9WriteDataEhPcj                                                                
    0c223fc0  _ZN7CFilterC1Ev                                                                           
    0c223fc0  _ZN7CFilterC2Ev                                                                           
    0087620c  _ZN7DDR3Mem10writeIndexE                                                                  
    80000000  _ZN7DDR3Mem11dataBuffersE                                                                 
    0c2489ac  _ZN7DDR3Mem5writeEPsi                                                                     
    00876210  _ZN7DDR3Mem9coreIndexE                                                                    
    0c248960  _ZN7DDR3MemC1Ev                                                                           
    0c248960  _ZN7DDR3MemC2Ev                                                                           
    0c248998  _ZN7DDR3MemD1Ev                                                                           
    0c248998  _ZN7DDR3MemD2Ev                                                                           
    0c252640  _ZN8AO_FLOATC1EPv                                                                         
    0c250e80  _ZN8AO_FLOATaSEf                                                                          
    0c250ec0  _ZN8AO_FLOATcvfEv                                                                         
    0c252660  _ZN8AO_INT32C1EPv                                                                         
    0c250f00  _ZN8AO_INT32aSEi                                                                          
    0c250f40  _ZN8AO_INT32cviEv                                                                         
    0c2435a0  _ZN8CAOStack3PopEv                                                                        
    0c2435c4  _ZN8CAOStack4FullEv                                                                       
    0c243560  _ZN8CAOStack4PushEs                                                                       
    0c2435f0  _ZN8CAOStack5EmptyEv                                                                      
    0c243610  _ZN8CAOStack7isVaildEv                                                                    
    0c24364c  _ZN8CAOStack8SelfTestEv                                                                   
    0c243500  _ZN8CAOStackC1Ei                                                                          
    0c243500  _ZN8CAOStackC2Ei                                                                          
    0c243540  _ZN8CAOStackD1Ev                                                                          
    0c243540  _ZN8CAOStackD2Ev                                                                          
    0c250f80  _ZN8PipeUtilC1EPtii                                                                       
    0c250fc0  _ZN9AO_ResultC1Ev                                                                         
    0c252680  _ZN9AO_UINT32C1EPv                                                                        
    0c251000  _ZN9AO_UINT32aSEj                                                                         
    0c251040  _ZN9AO_UINT32cvjEv                                                                        
    0c23ab18  _ZN9CAODriver12InsertToPipeEP5CPipePti                                                    
    0c2526a0  _ZN9CAODriver13BlockReceivedEv                                                            
    0c23a90c  _ZN9CAODriver4OpenEP5CPipeS1_P25ti_sysbios_knl_Swi_Object                                 
    0c2526c0  _ZN9CAODriver5CloseEv                                                                     
    0c23a950  _ZN9CAODriver5ParseEv                                                                     
    0c2526e0  _ZN9CAODriver6FormatEv                                                                    
    0c252700  _ZN9CAODriver6HandleEPti                                                                  
    0c252720  _ZN9CAODriver8GetBlockEv                                                                  
    0c252740  _ZN9CAODriver9BlockSentEv                                                                 
    0c252760  _ZN9CAODriver9GetParamsEv                                                                 
    0c252780  _ZN9CAODriver9SendBlockEv                                                                 
    0c2527a0  _ZN9CAODriver9SetParamsEP7AParams                                                         
    0c23a8c0  _ZN9CAODriverC1Ev                                                                         
    0c23a8c0  _ZN9CAODriverC2Ev                                                                         
    0c2128b0  _ZN9CAppContr10HandleDataE11ESourceTypeP10StreamBase                                      
    0c2137f4  _ZN9CAppContr10SendUDToAOEP15StreamDataBlock                                              
    0c214054  _ZN9CAppContr11SendLFPToAOEv                                                              
    0c21362c  _ZN9CAppContr11SendRawToAOEP15StreamDataBlock                                             
    0c213be0  _ZN9CAppContr11SendSEGToAOEP15StreamDataBlock                                             
    0c213644  _ZN9CAppContr11SendSPKToAOEP15StreamDataBlock                                             
    0c2127e4  _ZN9CAppContr12HandleStatusE11ESourceTypeP10StreamBase                                    
    0c20ff30  _ZN9CAppContr12InsertToPipeEP5CPipeP10StreamBaseP8PipeUtil                                
    0c2109c0  _ZN9CAppContr13HandleCommandE11ESourceTypeP10StreamBase                                   
    0c213e64  _ZN9CAppContr13UpdateLFPToAOEP15StreamDataBlock                                           
    0c2131c4  _ZN9CAppContr16InitPECondFilterEv                                                         
    0c2132e0  _ZN9CAppContr17InitTemplateMatchEv                                                        
    0c2135f4  _ZN9CAppContr17configureGpioPinsEv                                                        
    0c2132f0  _ZN9CAppContr19InitDetectionFilterEv                                                      
    0c213338  _ZN9CAppContr19InitImpedanceFilterEv                                                      
    0c2132ac  _ZN9CAppContr19InitStimBoardDriverEv                                                      
    0c213990  _ZN9CAppContr19SendLFPCompressToAOEP15StreamDataBlock                                     
    0c20fb80  _ZN9CAppContr20InsertDataToBeginingEv                                                     
    0c2130a0  _ZN9CAppContr21PrepareMSGSnrHwStatusEP27StreamStatusAlabSnRHWStatus                       
    0c213070  _ZN9CAppContr21PrepareMSGStateScriptEP30StreamStatusScriptRunningState                    
    0c210648  _ZN9CAppContr22ReadMemoryToPipeFramesEP5CPipeP17IPC_COMM_MEM_BUFFiiPiPv                   
    0c210524  _ZN9CAppContr22SendPipeFramesToMemoryEP5CPipe                                             
    0c210278  _ZN9CAppContr22SendPipeFramesToMemoryEP5CPipeP17IPC_COMM_MEM_BUFFiiPiPvPt                 
    0c213258  _ZN9CAppContr24InitScriptExecuterFilterEv                                                 
    0c210920  _ZN9CAppContr25TestApplicationControllerEv                                                
    0c213030  _ZN9CAppContr26HandleTemplateMatchCommandEP18StreamCommandBlock                           
    0c213248  _ZN9CAppContr28InitBlocksAccumulationFilterEv                                             
    0c20fd14  _ZN9CAppContr4InitEv                                                                      
    0c20f538  _ZN9CAppContr4LoopEv                                                                      
    0c210894  _ZN9CAppContr5flushEP5CPipeP8PipeUtil                                                     
    0c210930  _ZN9CAppContr6HandleE11ESourceTypeP10StreamBase                                           
    0c2135e4  _ZN9CAppContr9InitCodecEv                                                                 
    0c2100ac  _ZN9CAppContr9ParsePipeE11ESourceTypeP5CPipeP8PipeUtil                                    
    0c20f2b0  _ZN9CAppContrC1Ev                                                                         
    0c20f2b0  _ZN9CAppContrC2Ev                                                                         
    0c229724  _ZN9CPipeFifo10IsLastFreeEv                                                               
    0c229770  _ZN9CPipeFifo14GetElementSizeEv                                                           
    0c22978c  _ZN9CPipeFifo17GetElementsNumberEv                                                        
    0c229ac4  _ZN9CPipeFifo17PIP_getReaderSizeEv                                                        
    0c229af0  _ZN9CPipeFifo17PIP_getWriterSizeEv                                                        
    0c229b28  _ZN9CPipeFifo17PIP_setReaderSizeEi                                                        
    0c229b60  _ZN9CPipeFifo17PIP_setWriterSizeEi                                                        
    0c229a00  _ZN9CPipeFifo3GetEv                                                                       
    0c229988  _ZN9CPipeFifo3PutEv                                                                       
    0c229a60  _ZN9CPipeFifo4FreeEv                                                                      
    0c229930  _ZN9CPipeFifo5AllocEv                                                                     
    0c2297a8  _ZN9CPipeFifo6CreateEll                                                                   
    0c2296f4  _ZN9CPipeFifo6IsFullEv                                                                    
    0c229898  _ZN9CPipeFifo7DestroyEv                                                                   
    0c2296d0  _ZN9CPipeFifo7IsEmptyEv                                                                   
    0c229668  _ZN9CPipeFifo8FifoInitEllRl                                                               
    0c229754  _ZN9CPipeFifo8GetCountEv                                                                  
    0c229618  _ZN9CPipeFifoC1Ell                                                                        
    0c229618  _ZN9CPipeFifoC2Ell                                                                        
    0c22964c  _ZN9CPipeFifoD1Ev                                                                         
    0c22964c  _ZN9CPipeFifoD2Ev                                                                         
    0c2527c0  _ZN9CWatchDog10IsDisabledEv                                                               
    0c2527e0  _ZN9CWatchDog10SetStoppedEv                                                               
    0c23fef0  _ZN9CWatchDog4InitE11EWatchDogIdP14CWatchedObjectP14CMonitorObjectt                       
    0c252800  _ZN9CWatchDog6EnableEv                                                                    
    0c23fd64  _ZN9CWatchDog6StrokeEv                                                                    
    0c252820  _ZN9CWatchDog7DisableEv                                                                   
    0c23fde8  _ZN9CWatchDog8WatchFxnEv                                                                  
    0c252840  _ZN9CWatchDog9IsStoppedEv                                                                 
    0c23fd00  _ZN9CWatchDogC1Ev                                                                         
    0c23fd00  _ZN9CWatchDogC2Ev                                                                         
    0c251080  _ZN9SDevIdentC1Ev                                                                         
    00872a0c  _ZTI13CErrorSupport                                                                       
    00872938  _ZTI16CAOPEngineDriver                                                                    
    00872a14  _ZTI16CCriticalSection                                                                    
    00872944  _ZTI16CFilterDetection                                                                    
    00872950  _ZTI18CFilterPEngineCond                                                                  
    0087295c  _ZTI21CFilterScriptExecuter                                                               
    00872968  _ZTI26CFilterImpedanceMeasurment                                                          
    00872974  _ZTI5CPipe                                                                                
    00872a1c  _ZTI5IPipe                                                                                
    00872714  _ZTI7AFilter                                                                              
    00872980  _ZTI7CFilter                                                                              
    00872a24  _ZTI9CAODriver                                                                            
    00872a2c  _ZTI9CAppContr                                                                            
    00872a34  _ZTI9CWatchDog                                                                            
    0087298c  _ZTIN10__cxxabiv117__class_type_infoE                                                     
    00872998  _ZTIN10__cxxabiv120__si_class_type_infoE                                                  
    008729a4  _ZTIN10__cxxabiv121__vmi_class_type_infoE                                                 
    00872a3c  _ZTISt9type_info                                                                          
    008728c8  _ZTS13CErrorSupport                                                                       
    00872880  _ZTS16CAOPEngineDriver                                                                    
    00872898  _ZTS16CCriticalSection                                                                    
    008728b0  _ZTS16CFilterDetection                                                                    
    00872850  _ZTS18CFilterPEngineCond                                                                  
    00872730  _ZTS21CFilterScriptExecuter                                                               
    008726c0  _ZTS26CFilterImpedanceMeasurment                                                          
    00872a60  _ZTS5CPipe                                                                                
    00872a68  _ZTS5IPipe                                                                                
    008729f0  _ZTS7AFilter                                                                              
    00872a00  _ZTS7CFilter                                                                              
    008729c0  _ZTS9CAODriver                                                                            
    008729d0  _ZTS9CAppContr                                                                            
    008729e0  _ZTS9CWatchDog                                                                            
    00872330  _ZTSN10__cxxabiv117__class_type_infoE                                                     
    00872130  _ZTSN10__cxxabiv120__si_class_type_infoE                                                  
    00872108  _ZTSN10__cxxabiv121__vmi_class_type_infoE                                                 
    00872928  _ZTSSt9type_info                                                                          
    00871d38  _ZTV16CAOPEngineDriver                                                                    
    008728d8  _ZTV16CCriticalSection                                                                    
    00871928  _ZTV16CFilterDetection                                                                    
    00871990  _ZTV18CFilterPEngineCond                                                                  
    008719f8  _ZTV21CFilterScriptExecuter                                                               
    00871a60  _ZTV26CFilterImpedanceMeasurment                                                          
    00871be0  _ZTV5CPipe                                                                                
    00871cf8  _ZTV5IPipe                                                                                
    00871c28  _ZTV7AFilter                                                                              
    00871ac8  _ZTV7CFilter                                                                              
    00871db0  _ZTV9CAODriver                                                                            
    00872380  _ZTV9CAppContr                                                                            
    00871ff0  _ZTV9CWatchDog                                                                            
    008728e8  _ZTVN10__cxxabiv117__class_type_infoE                                                     
    008728f8  _ZTVN10__cxxabiv120__si_class_type_infoE                                                  
    00872908  _ZTVN10__cxxabiv121__vmi_class_type_infoE                                                 
    0c252860  _ZdaPv                                                                                    
    0c252860  _ZdlPv                                                                                    
    0c24b020  _Znaj                                                                                     
    0c24b020  _Znwj                                                                                     
    00800000  __ASM__                                                                                   
    00875eb0  __CIOBUF_                                                                                 
    00800068  __ISA__                                                                                   
    00800080  __PLAT__                                                                                  
    008000a8  __TARG__                                                                                  
    00876e78  __TI_CINIT_Base                                                                           
    00876eb0  __TI_CINIT_Limit                                                                          
    00876e70  __TI_Handler_Table_Base                                                                   
    00876e78  __TI_Handler_Table_Limit                                                                  
    00875fd0  __TI_INITARRAY_Base                                                                       
    00875fd8  __TI_INITARRAY_Limit                                                                      
    00875900  __TI_STACK_END                                                                            
    00001000  __TI_STACK_SIZE                                                                           
    00876200  __TI_STATIC_BASE                                                                          
    UNDEFED   __TI_TLS_INIT_Base                                                                        
    UNDEFED   __TI_TLS_INIT_Limit                                                                       
    0c24cb60  __TI_cleanup                                                                              
    00874760  __TI_cleanup_ptr                                                                          
    0c246de0  __TI_closefile                                                                            
    0c252a40  __TI_decompress_none                                                                      
    0c252a60  __TI_decompress_rle24                                                                     
    0c24b0e0  __TI_doflush                                                                              
    00874764  __TI_dtors_ptr                                                                            
    00874768  __TI_enable_exit_profile_output                                                           
    0c24f6a0  __TI_frcmpyd_div                                                                          
    008745d4  __TI_ft_end                                                                               
    ffffffff  __TI_pprof_out_hndl                                                                       
    0c21aa40  __TI_printfi                                                                              
    ffffffff  __TI_prof_data_size                                                                       
    ffffffff  __TI_prof_data_start                                                                      
    0c24df60  __TI_readmsg                                                                              
    0c24c520  __TI_tls_init                                                                             
    0086c9b0  __TI_tmpnams                                                                              
    0c24f700  __TI_writemsg                                                                             
    0c248c60  __TI_wrt_ok                                                                               
    008000d0  __TRDR__                                                                                  
    0c252880  __abort_execution                                                                         
    ffffffff  __binit__                                                                                 
    0c231840  __c6xabi_divd                                                                             
    0c23f080  __c6xabi_divf                                                                             
    0c24a2a0  __c6xabi_divi                                                                             
    0c24b3e0  __c6xabi_divu                                                                             
    0c243e20  __c6xabi_divul                                                                            
    0c240b00  __c6xabi_divull                                                                           
    0c2528a0  __c6xabi_errno_addr                                                                       
    0c24a1c0  __c6xabi_fixdlli                                                                          
    0c24dfe0  __c6xabi_fixdu                                                                            
    0c248d60  __c6xabi_fixdull                                                                          
    0c24b1a0  __c6xabi_fixflli                                                                          
    0c24cc00  __c6xabi_fixfu                                                                            
    0c24b260  __c6xabi_fltllid                                                                          
    0c24b320  __c6xabi_fltllif                                                                          
    0c24cca0  __c6xabi_fltulld                                                                          
    0c2510c0  __c6xabi_isinf                                                                            
    0c24e060  __c6xabi_llshl                                                                            
    0c24f760  __c6xabi_llshru                                                                           
    0c24b4a0  __c6xabi_remi                                                                             
    0c24cde0  __c6xabi_remu                                                                             
    0c251140  __c6xabi_strasgi_64plus                                                                   
    ffffffff  __c_args__                                                                                
    0c24af60  __cxa_atexit                                                                              
    0c24cd40  __cxa_ia64_exit                                                                           
    0c2528c0  __cxa_pure_virtual                                                                        
    0c247e20  __cxa_vec_ctor                                                                            
    0c24a2a0  __divi                                                                                    
    0c24b3e0  __divu                                                                                    
    00876214  __dso_handle                                                                              
    008746c4  __errno                                                                                   
    0c24b4a0  __remi                                                                                    
    0c24cde0  __remu                                                                                    
    0c214320  __sti___14_AppControl_cpp_681633c3                                                        
    0c20eeac  __sti___19_AOPEngineDriver_cpp_2f1bc575                                                   
    0c251140  __strasgi_64plus                                                                          
    0c251180  _args_main                                                                                
    00000000  _argsize                                                                                  
    0c247f40  _auto_init_elf                                                                            
    0c24ce80  _c_int00                                                                                  
    00871620  _ctypes_                                                                                  
    00874300  _device                                                                                   
    00873738  _ftable                                                                                   
    00873d14  _lock                                                                                     
    008748c0  _new_handler                                                                              
    0c2528e0  _nop                                                                                      
    0c252940  _register_lock                                                                            
    0c252960  _register_synch_api                                                                       
    0c252980  _register_unlock                                                                          
    00874900  _stack                                                                                    
    00873dd0  _stream                                                                                   
    0c2511c0  _subcull                                                                                  
    0087449c  _unlock                                                                                   
    0c2529c0  abort                                                                                     
    0c248e60  atoi                                                                                      
    00876264  bEnableHPFilteration                                                                      
    ffffffff  binit                                                                                     
    00876250  buffEndAddress                                                                            
    0c232440  cbFxn                                                                                     
    0086cbf0  chObj                                                                                     
    0c20efe8  clkGlobalFxn                                                                              
    0c24a380  close                                                                                     
    00876218  edmaContext                                                                               
    0086d228  edmaObj                                                                                   
    008746c4  errno                                                                                     
    0c22a8d4  eventEdmaHandler                                                                          
    0c24a460  exit                                                                                      
    0c24e1e0  finddevice                                                                                
    008762f0  finishedMain                                                                              
    0c241ac0  fputc                                                                                     
    0c2387c0  fputs                                                                                     
    0c251280  free                                                                                      
    0c2456e0  frexp                                                                                     
    0c2456e0  frexpl                                                                                    
    0c2482a0  fseek                                                                                     
    0086730c  g_AOFilterDetectionParams                                                                 
    0086ccd0  g_AOFilterImpedanceMeasurementParams                                                      
    00857500  g_AOPEngineDriver                                                                         
    0086d140  g_AOTimecal_1                                                                             
    00865674  g_FilterDetection                                                                         
    0085b2c0  g_FilterImpedanceMeasurment                                                               
    0086c6f0  g_FilterPECond                                                                            
    0086b9c4  g_FilterScriptExecuter                                                                    
    0086d1c0  g_GlobalVars                                                                              
    0086bef0  g_ImpCalibInfo                                                                            
    00876268  g_LfpSamplingRate                                                                         
    00863368  g_MemoryMange                                                                             
    0087626c  g_SpkSamplingRate                                                                         
    008762f8  g_diffTemp                                                                                
    00876220  g_hEDMA3Module                                                                            
    00876294  g_nLastTimeFormatCalled                                                                   
    00876290  g_nLastWDCValue                                                                           
    00876288  g_nPEMissed                                                                               
    008762f4  g_nTotalDataAllocated                                                                     
    0087628c  g_pMemoryManager                                                                          
    00851100  g_poolData                                                                                
    008762a4  g_resync                                                                                  
    00849400  g_script                                                                                  
    0c246f20  getdevice                                                                                 
    00874628  hQDMAChannel                                                                              
    008762fc  heap0                                                                                     
    0086d2cc  info                                                                                      
    0c20f1ec  insertDataToPipe                                                                          
    00876260  insideBios                                                                                
    00876270  insideLoop                                                                                
    008762dc  intrMask                                                                                  
    008762e0  intrhMask                                                                                 
    0c247060  ldexp                                                                                     
    0c247060  ldexpl                                                                                    
    0c20f1d0  loopTimerTick                                                                             
    0c24f880  lseek                                                                                     
    0c24a540  ltoa                                                                                      
    0083c000  m_pCondChannelMapping                                                                     
    0c24a038  main                                                                                      
    0c24ece0  malloc                                                                                    
    0c24f8e0  memccpy                                                                                   
    0c24d060  memcpy                                                                                    
    0c24a620  memset                                                                                    
    00876274  msCounter                                                                                 
    00876276  msCounter_50Usec                                                                          
    008762b8  nClkCountOld                                                                              
    0086d208  outb                                                                                      
    0086d2d8  parmbuf                                                                                   
    0c24a700  printf                                                                                    
    0c241ac0  putc                                                                                      
    0c22ab34  qdma_xfer_region0                                                                         
    0087621c  received_message                                                                          
    0c24ede0  remove                                                                                    
    0087627c  runI                                                                                      
    00876238  sTCPIPBuf                                                                                 
    0087623c  sTMBuf                                                                                    
    00876254  sTMBufState                                                                               
    0087631c  semHandle                                                                                 
    0c23252c  sendCoreMessageToOtherCores                                                               
    0c232580  sendIPCmessage                                                                            
    0c241ce0  setvbuf                                                                                   
    0c2465a0  sqrt                                                                                      
    0c2465a0  sqrtl                                                                                     
    0c24f940  strcmp                                                                                    
    0c24f9a0  strcpy                                                                                    
    0c24e260  strncpy                                                                                   
    00876318  swiRunPIDControl                                                                          
    0c200438  swiRunPIDControlFxn                                                                       
    00876240  tcpipinBuff                                                                               
    00876244  tcpipoutBuff                                                                              
    0087161c  ti_sdo_ipc_GateMP_A_invalidClose__C                                                       
    00871bdc  ti_sdo_ipc_GateMP_A_invalidDelete__C                                                      
    00871c6c  ti_sdo_ipc_GateMP_E_gateUnavailable__C                                                    
    00871cf4  ti_sdo_ipc_GateMP_E_localGate__C                                                          
    0c22bfe0  ti_sdo_ipc_GateMP_Instance_finalize__E                                                    
    0c21c680  ti_sdo_ipc_GateMP_Instance_init__E                                                        
    00871dac  ti_sdo_ipc_GateMP_LM_create__C                                                            
    00871fc4  ti_sdo_ipc_GateMP_LM_delete__C                                                            
    0087232c  ti_sdo_ipc_GateMP_LM_enter__C                                                             
    00872354  ti_sdo_ipc_GateMP_LM_leave__C                                                             
    0087237c  ti_sdo_ipc_GateMP_LM_open__C                                                              
    00872f38  ti_sdo_ipc_GateMP_Module_State_0_remoteCustom1Gates__A                                    
    00874000  ti_sdo_ipc_GateMP_Module_State_0_remoteSystemGates__A                                     
    0087272c  ti_sdo_ipc_GateMP_Module__diagsEnabled__C                                                 
    0087287c  ti_sdo_ipc_GateMP_Module__diagsIncluded__C                                                
    00872894  ti_sdo_ipc_GateMP_Module__diagsMask__C                                                    
    00871722  ti_sdo_ipc_GateMP_Module__id__C                                                           
    0087212e  ti_sdo_ipc_GateMP_Module__loggerDefined__C                                                
    008728ac  ti_sdo_ipc_GateMP_Module__loggerFxn2__C                                                   
    008728c4  ti_sdo_ipc_GateMP_Module__loggerFxn4__C                                                   
    008729bc  ti_sdo_ipc_GateMP_Module__loggerObj__C                                                    
    008747a8  ti_sdo_ipc_GateMP_Module__root__V                                                         
    0087444c  ti_sdo_ipc_GateMP_Module__state__V                                                        
    008723a0  ti_sdo_ipc_GateMP_Object__DESC__C                                                         
    00871e20  ti_sdo_ipc_GateMP_Object__PARAMS__C                                                       
    0c24fa00  ti_sdo_ipc_GateMP_Object__delete__S                                                       
    0c252a80  ti_sdo_ipc_GateMP_Params__init__S                                                         
    0c251480  ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Handle__label__S                                     
    0c252e80  ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Params__init__S                                      
    0c252aa0  ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Proxy__abstract__S                                   
    0c252ac0  ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Proxy__delegate__S                                   
    0c252ae0  ti_sdo_ipc_GateMP_RemoteCustom1Proxy_create                                               
    0c252b00  ti_sdo_ipc_GateMP_RemoteCustom1Proxy_delete                                               
    0c252ea0  ti_sdo_ipc_GateMP_RemoteCustom1Proxy_getReservedMask__E                                   
    0c252ec0  ti_sdo_ipc_GateMP_RemoteCustom1Proxy_query__E                                             
    0c24fb80  ti_sdo_ipc_GateMP_RemoteCustom1Proxy_sharedMemReq__E                                      
    0c251400  ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Handle__label__S                                     
    0c252e00  ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Params__init__S                                      
    0c252b20  ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Proxy__abstract__S                                   
    0c252b40  ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Proxy__delegate__S                                   
    0c252b60  ti_sdo_ipc_GateMP_RemoteCustom2Proxy_create                                               
    0c252b80  ti_sdo_ipc_GateMP_RemoteCustom2Proxy_delete                                               
    0c252e20  ti_sdo_ipc_GateMP_RemoteCustom2Proxy_getReservedMask__E                                   
    0c252e40  ti_sdo_ipc_GateMP_RemoteCustom2Proxy_query__E                                             
    0c252e60  ti_sdo_ipc_GateMP_RemoteCustom2Proxy_sharedMemReq__E                                      
    0c251340  ti_sdo_ipc_GateMP_RemoteSystemProxy_Handle__label__S                                      
    0c252d60  ti_sdo_ipc_GateMP_RemoteSystemProxy_Params__init__S                                       
    0c252ba0  ti_sdo_ipc_GateMP_RemoteSystemProxy_Proxy__abstract__S                                    
    0c252bc0  ti_sdo_ipc_GateMP_RemoteSystemProxy_Proxy__delegate__S                                    
    0c252be0  ti_sdo_ipc_GateMP_RemoteSystemProxy_create                                                
    0c252c00  ti_sdo_ipc_GateMP_RemoteSystemProxy_delete                                                
    0c252d80  ti_sdo_ipc_GateMP_RemoteSystemProxy_getReservedMask__E                                    
    0c252da0  ti_sdo_ipc_GateMP_RemoteSystemProxy_query__E                                              
    0c252dc0  ti_sdo_ipc_GateMP_RemoteSystemProxy_sharedMemReq__E                                       
    0c23ac20  ti_sdo_ipc_GateMP_attach__E                                                               
    0c23ac20  ti_sdo_ipc_GateMP_attach__F                                                               
    0c24b7a0  ti_sdo_ipc_GateMP_create                                                                  
    0c2459e0  ti_sdo_ipc_GateMP_createLocal__E                                                          
    0c2459e0  ti_sdo_ipc_GateMP_createLocal__F                                                          
    0c252c20  ti_sdo_ipc_GateMP_delete                                                                  
    0c242540  ti_sdo_ipc_GateMP_getRegion0ReservedSize__E                                               
    0c242540  ti_sdo_ipc_GateMP_getRegion0ReservedSize__F                                               
    0c252c40  ti_sdo_ipc_GateMP_getSharedAddr__E                                                        
    0c252c40  ti_sdo_ipc_GateMP_getSharedAddr__F                                                        
    0c23c900  ti_sdo_ipc_GateMP_openRegion0Reserved__E                                                  
    0c23c900  ti_sdo_ipc_GateMP_openRegion0Reserved__F                                                  
    0c225600  ti_sdo_ipc_GateMP_setRegion0Reserved__E                                                   
    0c225600  ti_sdo_ipc_GateMP_setRegion0Reserved__F                                                   
    0c240f80  ti_sdo_ipc_GateMP_start__E                                                                
    0c240f80  ti_sdo_ipc_GateMP_start__F                                                                
    008729cc  ti_sdo_ipc_Ipc_A_addrNotCacheAligned__C                                                   
    008729dc  ti_sdo_ipc_Ipc_A_addrNotInSharedRegion__C                                                 
    008729ec  ti_sdo_ipc_Ipc_A_internal__C                                                              
    008729fc  ti_sdo_ipc_Ipc_A_invArgument__C                                                           
    00872a5c  ti_sdo_ipc_Ipc_A_invParam__C                                                              
    00872a70  ti_sdo_ipc_Ipc_A_nullArgument__C                                                          
    00872a74  ti_sdo_ipc_Ipc_A_nullPointer__C                                                           
    00872a78  ti_sdo_ipc_Ipc_E_internal__C                                                              
    00872a7c  ti_sdo_ipc_Ipc_E_nameFailed__C                                                            
    00872a80  ti_sdo_ipc_Ipc_E_versionMismatch__C                                                       
    008745d8  ti_sdo_ipc_Ipc_Module_State_0_procEntry__A                                                
    00872a84  ti_sdo_ipc_Ipc_Module__diagsEnabled__C                                                    
    00872a88  ti_sdo_ipc_Ipc_Module__diagsIncluded__C                                                   
    00872a8c  ti_sdo_ipc_Ipc_Module__diagsMask__C                                                       
    00872156  ti_sdo_ipc_Ipc_Module__id__C                                                              
    0087476c  ti_sdo_ipc_Ipc_Module__state__V                                                           
    00872352  ti_sdo_ipc_Ipc_generateSlaveDataForHost__C                                                
    00872a90  ti_sdo_ipc_Ipc_numUserFxns__C                                                             
    0c22f280  ti_sdo_ipc_Ipc_procSyncStart__I                                                           
    00872a94  ti_sdo_ipc_Ipc_procSync__C                                                                
    00872a98  ti_sdo_ipc_Ipc_userFxns__C                                                                
    0c2471a0  ti_sdo_ipc_ListMP_Instance_finalize__E                                                    
    0c2280e0  ti_sdo_ipc_ListMP_Instance_init__E                                                        
    00872a9c  ti_sdo_ipc_ListMP_Module__diagsEnabled__C                                                 
    00872aa0  ti_sdo_ipc_ListMP_Module__diagsIncluded__C                                                
    00872aa4  ti_sdo_ipc_ListMP_Module__diagsMask__C                                                    
    0087237a  ti_sdo_ipc_ListMP_Module__id__C                                                           
    008747b0  ti_sdo_ipc_ListMP_Module__root__V                                                         
    008748c4  ti_sdo_ipc_ListMP_Module__state__V                                                        
    008723c0  ti_sdo_ipc_ListMP_Object__DESC__C                                                         
    00871f14  ti_sdo_ipc_ListMP_Object__PARAMS__C                                                       
    0c24fa60  ti_sdo_ipc_ListMP_Object__delete__S                                                       
    0c252c60  ti_sdo_ipc_ListMP_Params__init__S                                                         
    0c24b860  ti_sdo_ipc_ListMP_create                                                                  
    0c252c80  ti_sdo_ipc_ListMP_delete                                                                  
    00872aa8  ti_sdo_ipc_MessageQ_A_invalidMsg__C                                                       
    00872aac  ti_sdo_ipc_MessageQ_A_invalidObj__C                                                       
    00872ab0  ti_sdo_ipc_MessageQ_A_invalidQueueId__C                                                   
    00872ab4  ti_sdo_ipc_MessageQ_A_procIdInvalid__C                                                    
    00872ab8  ti_sdo_ipc_MessageQ_A_unregisteredTransport__C                                            
    00872abc  ti_sdo_ipc_MessageQ_Instance_State_highList__O                                            
    00872ac0  ti_sdo_ipc_MessageQ_Instance_State_normalList__O                                          
    00872ac4  ti_sdo_ipc_MessageQ_LM_putLocal__C                                                        
    00874648  ti_sdo_ipc_MessageQ_Module_State_0_heaps__A                                               
    00874740  ti_sdo_ipc_MessageQ_Module_State_0_transports__A                                          
    00872ac8  ti_sdo_ipc_MessageQ_Module__diagsEnabled__C                                               
    00872acc  ti_sdo_ipc_MessageQ_Module__diagsIncluded__C                                              
    00872ad0  ti_sdo_ipc_MessageQ_Module__diagsMask__C                                                  
    008726de  ti_sdo_ipc_MessageQ_Module__id__C                                                         
    00872866  ti_sdo_ipc_MessageQ_Module__loggerDefined__C                                              
    00872ad4  ti_sdo_ipc_MessageQ_Module__loggerFxn4__C                                                 
    00872ad8  ti_sdo_ipc_MessageQ_Module__loggerObj__C                                                  
    008743e4  ti_sdo_ipc_MessageQ_Module__state__V                                                      
    0c2483c0  ti_sdo_ipc_MessageQ_Module_startup__E                                                     
    00872adc  ti_sdo_ipc_MessageQ_Object__count__C                                                      
    0c252ca0  ti_sdo_ipc_MessageQ_Object__get__S                                                        
    0c23ff60  ti_sdo_ipc_MessageQ_SetupTransportProxy_attach__E                                         
    0c253060  ti_sdo_ipc_MessageQ_SetupTransportProxy_isRegistered__E                                   
    0c245b60  ti_sdo_ipc_MessageQ_SetupTransportProxy_sharedMemReq__E                                   
    0c23a540  ti_sdo_ipc_MessageQ_registerTransport__E                                                  
    0c23a540  ti_sdo_ipc_MessageQ_registerTransport__F                                                  
    0c23af80  ti_sdo_ipc_MessageQ_unregisterTransport__E                                                
    0c23af80  ti_sdo_ipc_MessageQ_unregisterTransport__F                                                
    00872ae0  ti_sdo_ipc_Notify_A_alreadyRegistered__C                                                  
    00872ae4  ti_sdo_ipc_Notify_A_internal__C                                                           
    00872ae8  ti_sdo_ipc_Notify_A_invArgument__C                                                        
    00872aec  ti_sdo_ipc_Notify_A_notRegistered__C                                                      
    00872af0  ti_sdo_ipc_Notify_A_reservedEvent__C                                                      
    0c248f60  ti_sdo_ipc_Notify_Instance_finalize__E                                                    
    0c238ba0  ti_sdo_ipc_Notify_Instance_init__E                                                        
    0c251ac0  ti_sdo_ipc_Notify_Module_GateProxy_Handle__label__S                                       
    0c252cc0  ti_sdo_ipc_Notify_Module_GateProxy_enter__E                                               
    0c252ce0  ti_sdo_ipc_Notify_Module_GateProxy_leave__E                                               
    0c253680  ti_sdo_ipc_Notify_Module_GateProxy_query__E                                               
    008748c8  ti_sdo_ipc_Notify_Module_State_0_notifyHandles_0__A                                       
    008748d0  ti_sdo_ipc_Notify_Module_State_0_notifyHandles_1__A                                       
    008747b8  ti_sdo_ipc_Notify_Module_State_0_notifyHandles__A                                         
    00872af4  ti_sdo_ipc_Notify_Module__diagsEnabled__C                                                 
    00872af8  ti_sdo_ipc_Notify_Module__diagsIncluded__C                                                
    00872afc  ti_sdo_ipc_Notify_Module__diagsMask__C                                                    
    00872b00  ti_sdo_ipc_Notify_Module__gateObj__C                                                      
    00872936  ti_sdo_ipc_Notify_Module__id__C                                                           
    008747c0  ti_sdo_ipc_Notify_Module__root__V                                                         
    008747c8  ti_sdo_ipc_Notify_Module__state__V                                                        
    0c2449e0  ti_sdo_ipc_Notify_Module_startup__E                                                       
    008723e0  ti_sdo_ipc_Notify_Object__DESC__C                                                         
    00872748  ti_sdo_ipc_Notify_Object__PARAMS__C                                                       
    00872b04  ti_sdo_ipc_Notify_Object__heap__C                                                         
    0c24b920  ti_sdo_ipc_Notify_SetupProxy_attach__E                                                    
    0c252d40  ti_sdo_ipc_Notify_SetupProxy_numIntLines__E                                               
    0c24fac0  ti_sdo_ipc_Notify_SetupProxy_sharedMemReq__E                                              
    0c2484e0  ti_sdo_ipc_Notify_create                                                                  
    0c242740  ti_sdo_ipc_Notify_execMany__I                                                             
    0c2472e0  ti_sdo_ipc_Notify_exec__E                                                                 
    0c2472e0  ti_sdo_ipc_Notify_exec__F                                                                 
    00872b08  ti_sdo_ipc_Notify_numEvents__C                                                            
    008729fa  ti_sdo_ipc_Notify_numLines__C                                                             
    00872a0a  ti_sdo_ipc_Notify_reservedEvents__C                                                       
    00872b0c  ti_sdo_ipc_Notify_sendEventPollCount__C                                                   
    00872b10  ti_sdo_ipc_SharedRegion_A_addrOutOfRange__C                                               
    00872b14  ti_sdo_ipc_SharedRegion_A_idTooLarge__C                                                   
    00872b18  ti_sdo_ipc_SharedRegion_A_noHeap__C                                                       
    00872b1c  ti_sdo_ipc_SharedRegion_A_region0Invalid__C                                               
    00872b20  ti_sdo_ipc_SharedRegion_A_regionInvalid__C                                                
    00872b24  ti_sdo_ipc_SharedRegion_A_reserveTooMuch__C                                               
    00872b28  ti_sdo_ipc_SharedRegion_INVALIDSRPTR__C                                                   
    00873e70  ti_sdo_ipc_SharedRegion_Module_State_0_regions__A                                         
    00872b2c  ti_sdo_ipc_SharedRegion_Module__diagsEnabled__C                                           
    00872b30  ti_sdo_ipc_SharedRegion_Module__diagsIncluded__C                                          
    00872b34  ti_sdo_ipc_SharedRegion_Module__diagsMask__C                                              
    00872ed8  ti_sdo_ipc_SharedRegion_Module__id__C                                                     
    008748cc  ti_sdo_ipc_SharedRegion_Module__state__V                                                  
    0c249060  ti_sdo_ipc_SharedRegion_attach__E                                                         
    0c249060  ti_sdo_ipc_SharedRegion_attach__F                                                         
    0c249160  ti_sdo_ipc_SharedRegion_clearReservedMemory__E                                            
    0c249160  ti_sdo_ipc_SharedRegion_clearReservedMemory__F                                            
    00872eda  ti_sdo_ipc_SharedRegion_numEntries__C                                                     
    00872b38  ti_sdo_ipc_SharedRegion_numOffsetBits__C                                                  
    00872b3c  ti_sdo_ipc_SharedRegion_offsetMask__C                                                     
    0c238f80  ti_sdo_ipc_SharedRegion_reserveMemory__E                                                  
    0c238f80  ti_sdo_ipc_SharedRegion_reserveMemory__F                                                  
    0c230c20  ti_sdo_ipc_SharedRegion_start__E                                                          
    0c230c20  ti_sdo_ipc_SharedRegion_start__F                                                          
    00872edc  ti_sdo_ipc_SharedRegion_translate__C                                                      
    00872b40  ti_sdo_ipc_family_c647x_Interrupt_INTERDSPINT__C                                          
    00872b44  ti_sdo_ipc_family_c647x_Interrupt_IPCAR0__C                                               
    00872b48  ti_sdo_ipc_family_c647x_Interrupt_IPCGR0__C                                               
    00872b4c  ti_sdo_ipc_family_c647x_Interrupt_KICK0__C                                                
    00872b50  ti_sdo_ipc_family_c647x_Interrupt_KICK1__C                                                
    008747d0  ti_sdo_ipc_family_c647x_Interrupt_Module_State_0_args__A                                  
    00874778  ti_sdo_ipc_family_c647x_Interrupt_Module__state__V                                        
    0c2411c0  ti_sdo_ipc_family_c647x_Interrupt_Module_startup__E                                       
    00872ede  ti_sdo_ipc_family_c647x_Interrupt_enableKick__C                                           
    0c2512c0  ti_sdo_ipc_family_c647x_Interrupt_intClear__E                                             
    0c252d00  ti_sdo_ipc_family_c647x_Interrupt_intDisable__E                                           
    0c252d20  ti_sdo_ipc_family_c647x_Interrupt_intEnable__E                                            
    0c248600  ti_sdo_ipc_family_c647x_Interrupt_intRegister__E                                          
    0c251300  ti_sdo_ipc_family_c647x_Interrupt_intSend__E                                              
    0c24a7e0  ti_sdo_ipc_family_c647x_Interrupt_intShmStub__I                                           
    0c24d100  ti_sdo_ipc_family_c647x_Interrupt_intUnregister__E                                        
    00872b54  ti_sdo_ipc_family_c647x_MultiProcSetup_A_invalidProcessor__C                              
    00872b58  ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsEnabled__C                            
    00872b5c  ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsIncluded__C                           
    00872b60  ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsMask__C                               
    00872ee0  ti_sdo_ipc_family_c647x_MultiProcSetup_Module__id__C                                      
    0c242940  ti_sdo_ipc_family_c647x_MultiProcSetup_init__I                                            
    00872b68  ti_sdo_ipc_family_c647x_MultiProcSetup_procMap__A                                         
    00872b64  ti_sdo_ipc_family_c647x_MultiProcSetup_procMap__C                                         
    0c24b920  ti_sdo_ipc_family_c647x_NotifySetup_attach__E                                             
    00872b6c  ti_sdo_ipc_family_c647x_NotifySetup_dspIntVectId__C                                       
    0c252d40  ti_sdo_ipc_family_c647x_NotifySetup_numIntLines__E                                        
    0c24fac0  ti_sdo_ipc_family_c647x_NotifySetup_sharedMemReq__E                                       
    00872b70  ti_sdo_ipc_gates_GateHWSem_A_invSemNum__C                                                 
    0c251340  ti_sdo_ipc_gates_GateHWSem_Handle__label__S                                               
    0c246700  ti_sdo_ipc_gates_GateHWSem_Instance_init__E                                               
    00871f40  ti_sdo_ipc_gates_GateHWSem_Module__FXNS__C                                                
    00872b74  ti_sdo_ipc_gates_GateHWSem_Module__diagsEnabled__C                                        
    00872b78  ti_sdo_ipc_gates_GateHWSem_Module__diagsIncluded__C                                       
    00872b7c  ti_sdo_ipc_gates_GateHWSem_Module__diagsMask__C                                           
    00872ee2  ti_sdo_ipc_gates_GateHWSem_Module__id__C                                                  
    008747d8  ti_sdo_ipc_gates_GateHWSem_Module__root__V                                                
    0c249260  ti_sdo_ipc_gates_GateHWSem_Module_startup__E                                              
    00872400  ti_sdo_ipc_gates_GateHWSem_Object__DESC__C                                                
    0087217c  ti_sdo_ipc_gates_GateHWSem_Object__PARAMS__C                                              
    0c24e2e0  ti_sdo_ipc_gates_GateHWSem_Object__create__S                                              
    0c251380  ti_sdo_ipc_gates_GateHWSem_Object__delete__S                                              
    0c252d60  ti_sdo_ipc_gates_GateHWSem_Params__init__S                                                
    00872b80  ti_sdo_ipc_gates_GateHWSem_baseAddr__C                                                    
    0c24e360  ti_sdo_ipc_gates_GateHWSem_create                                                         
    0c249360  ti_sdo_ipc_gates_GateHWSem_enter__E                                                       
    0c252d80  ti_sdo_ipc_gates_GateHWSem_getReservedMask__E                                             
    0c2513c0  ti_sdo_ipc_gates_GateHWSem_leave__E                                                       
    00872b84  ti_sdo_ipc_gates_GateHWSem_numSems__C                                                     
    0c252da0  ti_sdo_ipc_gates_GateHWSem_query__E                                                       
    00872b88  ti_sdo_ipc_gates_GateHWSem_reservedMaskArr__A                                             
    00872b8c  ti_sdo_ipc_gates_GateHWSem_reservedMaskArr__C                                             
    0c252dc0  ti_sdo_ipc_gates_GateHWSem_sharedMemReq__E                                                
    00872b90  ti_sdo_ipc_gates_GateMPSupportNull_A_invalidAction__C                                     
    0c251400  ti_sdo_ipc_gates_GateMPSupportNull_Handle__label__S                                       
    0c252de0  ti_sdo_ipc_gates_GateMPSupportNull_Instance_init__E                                       
    00871f6c  ti_sdo_ipc_gates_GateMPSupportNull_Module__FXNS__C                                        
    00872b94  ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsEnabled__C                                
    00872b98  ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsIncluded__C                               
    00872b9c  ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsMask__C                                   
    00872ee4  ti_sdo_ipc_gates_GateMPSupportNull_Module__id__C                                          
    008747e0  ti_sdo_ipc_gates_GateMPSupportNull_Module__root__V                                        
    00872420  ti_sdo_ipc_gates_GateMPSupportNull_Object__DESC__C                                        
    008721a0  ti_sdo_ipc_gates_GateMPSupportNull_Object__PARAMS__C                                      
    0c24e3e0  ti_sdo_ipc_gates_GateMPSupportNull_Object__create__S                                      
    0c251440  ti_sdo_ipc_gates_GateMPSupportNull_Object__delete__S                                      
    0c252e00  ti_sdo_ipc_gates_GateMPSupportNull_Params__init__S                                        
    00872ba0  ti_sdo_ipc_gates_GateMPSupportNull_action__C                                              
    0c24e460  ti_sdo_ipc_gates_GateMPSupportNull_create                                                 
    0c249460  ti_sdo_ipc_gates_GateMPSupportNull_enter__E                                               
    0c252e20  ti_sdo_ipc_gates_GateMPSupportNull_getReservedMask__E                                     
    0c24a8c0  ti_sdo_ipc_gates_GateMPSupportNull_leave__E                                               
    0c252e40  ti_sdo_ipc_gates_GateMPSupportNull_query__E                                               
    0c252e60  ti_sdo_ipc_gates_GateMPSupportNull_sharedMemReq__E                                        
    00872ba4  ti_sdo_ipc_gates_GatePeterson_E_gateRemotelyOpened__C                                     
    0c251480  ti_sdo_ipc_gates_GatePeterson_Handle__label__S                                            
    0c2514c0  ti_sdo_ipc_gates_GatePeterson_Instance_finalize__E                                        
    0c234cc0  ti_sdo_ipc_gates_GatePeterson_Instance_init__E                                            
    00871f98  ti_sdo_ipc_gates_GatePeterson_Module__FXNS__C                                             
    00872ba8  ti_sdo_ipc_gates_GatePeterson_Module__diagsEnabled__C                                     
    00872bac  ti_sdo_ipc_gates_GatePeterson_Module__diagsIncluded__C                                    
    00872bb0  ti_sdo_ipc_gates_GatePeterson_Module__diagsMask__C                                        
    00872ee6  ti_sdo_ipc_gates_GatePeterson_Module__id__C                                               
    008747e8  ti_sdo_ipc_gates_GatePeterson_Module__root__V                                             
    00872440  ti_sdo_ipc_gates_GatePeterson_Object__DESC__C                                             
    008721c4  ti_sdo_ipc_gates_GatePeterson_Object__PARAMS__C                                           
    0c24b9e0  ti_sdo_ipc_gates_GatePeterson_Object__create__S                                           
    0c24fb20  ti_sdo_ipc_gates_GatePeterson_Object__delete__S                                           
    0c252e80  ti_sdo_ipc_gates_GatePeterson_Params__init__S                                             
    0c24baa0  ti_sdo_ipc_gates_GatePeterson_create                                                      
    0c246860  ti_sdo_ipc_gates_GatePeterson_enter__E                                                    
    0c252ea0  ti_sdo_ipc_gates_GatePeterson_getReservedMask__E                                          
    0c24d1a0  ti_sdo_ipc_gates_GatePeterson_leave__E                                                    
    00872bb4  ti_sdo_ipc_gates_GatePeterson_numInstances__C                                             
    0c252ec0  ti_sdo_ipc_gates_GatePeterson_query__E                                                    
    0c24fb80  ti_sdo_ipc_gates_GatePeterson_sharedMemReq__E                                             
    00872bb8  ti_sdo_ipc_heaps_HeapMemMP_A_align__C                                                     
    00872bbc  ti_sdo_ipc_heaps_HeapMemMP_A_heapSize__C                                                  
    00872bc0  ti_sdo_ipc_heaps_HeapMemMP_A_invalidFree__C                                               
    00872bc4  ti_sdo_ipc_heaps_HeapMemMP_A_zeroBlock__C                                                 
    00872bc8  ti_sdo_ipc_heaps_HeapMemMP_E_memory__C                                                    
    0c251500  ti_sdo_ipc_heaps_HeapMemMP_Handle__label__S                                               
    0c247420  ti_sdo_ipc_heaps_HeapMemMP_Instance_finalize__E                                           
    0c22b7e0  ti_sdo_ipc_heaps_HeapMemMP_Instance_init__E                                               
    00872018  ti_sdo_ipc_heaps_HeapMemMP_Module__FXNS__C                                                
    00872bcc  ti_sdo_ipc_heaps_HeapMemMP_Module__diagsEnabled__C                                        
    00872bd0  ti_sdo_ipc_heaps_HeapMemMP_Module__diagsIncluded__C                                       
    00872bd4  ti_sdo_ipc_heaps_HeapMemMP_Module__diagsMask__C                                           
    00872ee8  ti_sdo_ipc_heaps_HeapMemMP_Module__id__C                                                  
    008747f0  ti_sdo_ipc_heaps_HeapMemMP_Module__root__V                                                
    008748d4  ti_sdo_ipc_heaps_HeapMemMP_Module__state__V                                               
    00872460  ti_sdo_ipc_heaps_HeapMemMP_Object__DESC__C                                                
    00871e88  ti_sdo_ipc_heaps_HeapMemMP_Object__PARAMS__C                                              
    0c24bb60  ti_sdo_ipc_heaps_HeapMemMP_Object__create__S                                              
    0c24fbe0  ti_sdo_ipc_heaps_HeapMemMP_Object__delete__S                                              
    0c252ee0  ti_sdo_ipc_heaps_HeapMemMP_Params__init__S                                                
    0c227660  ti_sdo_ipc_heaps_HeapMemMP_alloc__E                                                       
    0c24bc20  ti_sdo_ipc_heaps_HeapMemMP_create                                                         
    0c226bc0  ti_sdo_ipc_heaps_HeapMemMP_free__E                                                        
    0c237360  ti_sdo_ipc_heaps_HeapMemMP_getStats__E                                                    
    0c252f00  ti_sdo_ipc_heaps_HeapMemMP_isBlocking__E                                                  
    0c237fc0  ti_sdo_ipc_heaps_HeapMemMP_postInit__I                                                    
    00872bd8  ti_sdo_ipc_interfaces_IGateMPSupport_Interface__BASE__C                                   
    00872bdc  ti_sdo_ipc_interfaces_IMessageQTransport_Interface__BASE__C                               
    00872be0  ti_sdo_ipc_interfaces_INetworkTransport_Interface__BASE__C                                
    00872be4  ti_sdo_ipc_interfaces_INotifyDriver_Interface__BASE__C                                    
    00872be8  ti_sdo_ipc_interfaces_ITransport_Interface__BASE__C                                       
    0c251540  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Handle__label__S                                 
    0c24d240  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Instance_finalize__E                             
    0c2360a0  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Instance_init__E                                 
    0c2512c0  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intClear__E                       
    0c252d00  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intDisable__E                     
    0c252d20  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intEnable__E                      
    0c248600  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intRegister__E                    
    0c251300  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intSend__E                        
    0c24d100  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intUnregister__E                  
    00871de8  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__FXNS__C                                  
    00872bec  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsEnabled__C                          
    00872bf0  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsIncluded__C                         
    00872bf4  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsMask__C                             
    00872eea  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__id__C                                    
    008747f8  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__root__V                                  
    00872480  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__DESC__C                                  
    00871e54  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__PARAMS__C                                
    0c24fc40  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__delete__S                                
    00872bf8  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__heap__C                                  
    0c252f20  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Params__init__S                                  
    0c24bce0  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_create                                           
    0c252f40  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_delete                                           
    0c23f580  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_disableEvent__E                                  
    0c252f60  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_disable__E                                       
    0c244b80  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_enableEvent__E                                   
    0c252f80  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_enable__E                                        
    0c23cc00  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_isr__I                                           
    0c243fe0  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_registerEvent__E                                 
    0c242b40  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_sendEvent__E                                     
    0c251580  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_setNotifyHandle__E                               
    0c23e620  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_sharedMemReq__E                                  
    0c23e620  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_sharedMemReq__F                                  
    0c244d20  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_unregisterEvent__E                               
    00872bfc  ti_sdo_ipc_nsremote_NameServerRemoteNotify_A_invalidValueLen__C                           
    00872c00  ti_sdo_ipc_nsremote_NameServerRemoteNotify_A_messageSize__C                               
    0c2515c0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Handle__label__S                               
    00872c04  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_semMultiBlock__O                
    00872c08  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_semRemoteWait__O                
    00872c0c  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_swiRequest__O                   
    00872c10  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_swiResponse__O                  
    0c2469c0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_finalize__E                           
    0c22afc0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_init__E                               
    00872040  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__FXNS__C                                
    00872c14  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsEnabled__C                        
    00872c18  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsIncluded__C                       
    00872c1c  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsMask__C                           
    00872eec  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__id__C                                  
    00874800  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__root__V                                
    008724a0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__DESC__C                                
    008724c0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__PARAMS__C                              
    0c24bda0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__create__S                              
    0c24fca0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__delete__S                              
    0c252fa0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__first__S                               
    0c252fc0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__next__S                                
    0c252fe0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Params__init__S                                
    0c23cf00  ti_sdo_ipc_nsremote_NameServerRemoteNotify_attach__E                                      
    0c244ec0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_cbFxn__I                                       
    0c24be60  ti_sdo_ipc_nsremote_NameServerRemoteNotify_create                                         
    0c253000  ti_sdo_ipc_nsremote_NameServerRemoteNotify_delete                                         
    0c24bf20  ti_sdo_ipc_nsremote_NameServerRemoteNotify_detach__E                                      
    0c2351e0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_get__E                                         
    0c2351e0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_get__F                                         
    00872c20  ti_sdo_ipc_nsremote_NameServerRemoteNotify_notifyEventId__C                               
    0c253020  ti_sdo_ipc_nsremote_NameServerRemoteNotify_sharedMemReq__E                                
    0c23e8c0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_swiFxnRequest__I                               
    0c253040  ti_sdo_ipc_nsremote_NameServerRemoteNotify_swiFxnResponse__I                              
    00872c24  ti_sdo_ipc_nsremote_NameServerRemoteNotify_timeout__C                                     
    00874808  ti_sdo_ipc_transports_TransportShmSetup_Module_State_0_handles__A                         
    008748d8  ti_sdo_ipc_transports_TransportShmSetup_Module__state__V                                  
    0c23ff60  ti_sdo_ipc_transports_TransportShmSetup_attach__E                                         
    0c253060  ti_sdo_ipc_transports_TransportShmSetup_isRegistered__E                                   
    00872c28  ti_sdo_ipc_transports_TransportShmSetup_priority__C                                       
    0c245b60  ti_sdo_ipc_transports_TransportShmSetup_sharedMemReq__E                                   
    0c251600  ti_sdo_ipc_transports_TransportShm_Handle__label__S                                       
    00872c2c  ti_sdo_ipc_transports_TransportShm_Instance_State_swiObj__O                               
    0c242d40  ti_sdo_ipc_transports_TransportShm_Instance_finalize__E                                   
    0c224ae0  ti_sdo_ipc_transports_TransportShm_Instance_init__E                                       
    00872068  ti_sdo_ipc_transports_TransportShm_Module__FXNS__C                                        
    00872c30  ti_sdo_ipc_transports_TransportShm_Module__diagsEnabled__C                                
    00872c34  ti_sdo_ipc_transports_TransportShm_Module__diagsIncluded__C                               
    00872c38  ti_sdo_ipc_transports_TransportShm_Module__diagsMask__C                                   
    00872eee  ti_sdo_ipc_transports_TransportShm_Module__id__C                                          
    00874810  ti_sdo_ipc_transports_TransportShm_Module__root__V                                        
    008724e0  ti_sdo_ipc_transports_TransportShm_Object__DESC__C                                        
    00872090  ti_sdo_ipc_transports_TransportShm_Object__PARAMS__C                                      
    0c24bfe0  ti_sdo_ipc_transports_TransportShm_Object__create__S                                      
    0c24fd00  ti_sdo_ipc_transports_TransportShm_Object__delete__S                                      
    0c253080  ti_sdo_ipc_transports_TransportShm_Params__init__S                                        
    0c2530a0  ti_sdo_ipc_transports_TransportShm_control__E                                             
    0c24c0a0  ti_sdo_ipc_transports_TransportShm_create                                                 
    0c2530c0  ti_sdo_ipc_transports_TransportShm_getStatus__E                                           
    00872ef0  ti_sdo_ipc_transports_TransportShm_notifyEventId__C                                       
    0c2530e0  ti_sdo_ipc_transports_TransportShm_notifyFxn__I                                           
    0c23d200  ti_sdo_ipc_transports_TransportShm_openByAddr__E                                          
    0c233600  ti_sdo_ipc_transports_TransportShm_put__E                                                 
    0c253100  ti_sdo_ipc_transports_TransportShm_setErrFxn__E                                           
    0c231e40  ti_sdo_ipc_transports_TransportShm_swiFxn__I                                              
    00872c3c  ti_sdo_utils_INameServerRemote_Interface__BASE__C                                         
    0c253120  ti_sdo_utils_List_Instance_init__E                                                        
    00874818  ti_sdo_utils_List_Module__root__V                                                         
    00872500  ti_sdo_utils_List_Object__DESC__C                                                         
    00872760  ti_sdo_utils_List_Object__PARAMS__C                                                       
    0c253140  ti_sdo_utils_List_Object__get__S                                                          
    0c24fd60  ti_sdo_utils_List_construct                                                               
    0c253160  ti_sdo_utils_List_destruct                                                                
    0c253180  ti_sdo_utils_List_empty__E                                                                
    0c2531a0  ti_sdo_utils_List_next__E                                                                 
    0c251640  ti_sdo_utils_List_putHead__E                                                              
    0c251680  ti_sdo_utils_List_put__E                                                                  
    00872c40  ti_sdo_utils_MultiProc_A_invalidMultiProcId__C                                            
    008748e0  ti_sdo_utils_MultiProc_Module_State_0_clusterProcList__A                                  
    00872c44  ti_sdo_utils_MultiProc_Module__diagsEnabled__C                                            
    00872c48  ti_sdo_utils_MultiProc_Module__diagsIncluded__C                                           
    00872c4c  ti_sdo_utils_MultiProc_Module__diagsMask__C                                               
    00872ef2  ti_sdo_utils_MultiProc_Module__id__C                                                      
    00874820  ti_sdo_utils_MultiProc_Module__state__V                                                   
    0c2531c0  ti_sdo_utils_MultiProc_getClusterId__E                                                    
    0c2531c0  ti_sdo_utils_MultiProc_getClusterId__F                                                    
    00872ef4  ti_sdo_utils_MultiProc_numProcessors__C                                                   
    00872ef6  ti_sdo_utils_MultiProc_numProcsInCluster__C                                               
    00872c50  ti_sdo_utils_MultiProc_procAddrMode__C                                                    
    00872c54  ti_sdo_utils_NameServer_A_invArgument__C                                                  
    00872c58  ti_sdo_utils_NameServer_A_invalidLen__C                                                   
    00872c5c  ti_sdo_utils_NameServer_E_entryExists__C                                                  
    00872c60  ti_sdo_utils_NameServer_E_maxReached__C                                                   
    00872c64  ti_sdo_utils_NameServer_Instance_State_freeList__O                                        
    00872c68  ti_sdo_utils_NameServer_Instance_State_nameList__O                                        
    00874828  ti_sdo_utils_NameServer_Module_State_0_nsRemoteHandle__A                                  
    00872c6c  ti_sdo_utils_NameServer_Module__diagsEnabled__C                                           
    00872c70  ti_sdo_utils_NameServer_Module__diagsIncluded__C                                          
    00872c74  ti_sdo_utils_NameServer_Module__diagsMask__C                                              
    00872ef8  ti_sdo_utils_NameServer_Module__id__C                                                     
    00874830  ti_sdo_utils_NameServer_Module__root__V                                                   
    0c2531e0  ti_sdo_utils_NameServer_Module__startupDone__F                                            
    0c2531e0  ti_sdo_utils_NameServer_Module__startupDone__S                                            
    00874784  ti_sdo_utils_NameServer_Module__state__V                                                  
    0c247560  ti_sdo_utils_NameServer_Module_startup__E                                                 
    00872c78  ti_sdo_utils_NameServer_Object__count__C                                                  
    0c253200  ti_sdo_utils_NameServer_Object__first__S                                                  
    0c2516c0  ti_sdo_utils_NameServer_Object__get__S                                                    
    0c253220  ti_sdo_utils_NameServer_Object__next__S                                                   
    00873be8  ti_sdo_utils_NameServer_Object__table__V                                                  
    0c2515c0  ti_sdo_utils_NameServer_SetupProxy_Handle__label__S                                       
    0c252fe0  ti_sdo_utils_NameServer_SetupProxy_Params__init__S                                        
    0c23cf00  ti_sdo_utils_NameServer_SetupProxy_attach__E                                              
    0c24bf20  ti_sdo_utils_NameServer_SetupProxy_detach__E                                              
    0c253020  ti_sdo_utils_NameServer_SetupProxy_sharedMemReq__E                                        
    0c23b2e0  ti_sdo_utils_NameServer_isRegistered__E                                                   
    0c239720  ti_sdo_utils_NameServer_registerRemoteDriver__E                                           
    0c245ce0  ti_sdo_utils_NameServer_removeLocal__I                                                    
    0c23b640  ti_sdo_utils_NameServer_unregisterRemoteDriver__E                                         
    00874600  ti_sysbios_BIOS_Module__state__V                                                          
    0c251a00  ti_sysbios_BIOS_RtsGateProxy_Handle__label__S                                             
    0c253240  ti_sysbios_BIOS_RtsGateProxy_enter__E                                                     
    0c253260  ti_sysbios_BIOS_RtsGateProxy_leave__E                                                     
    0c253640  ti_sysbios_BIOS_RtsGateProxy_query__E                                                     
    0c24e4e0  ti_sysbios_BIOS_atExitFunc__I                                                             
    0c24fdc0  ti_sysbios_BIOS_errorRaiseHook__I                                                         
    0c251700  ti_sysbios_BIOS_exitFunc__I                                                               
    0c253280  ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E                                         
    0c2532a0  ti_sysbios_BIOS_nullFunc__I                                                               
    0c24e560  ti_sysbios_BIOS_registerRTSLock__I                                                        
    0c24fe20  ti_sysbios_BIOS_removeRTSLock__I                                                          
    0c251740  ti_sysbios_BIOS_rtsLock__I                                                                
    0c251780  ti_sysbios_BIOS_rtsUnlock__I                                                              
    0c2532c0  ti_sysbios_BIOS_setThreadType__E                                                          
    0c24fe80  ti_sysbios_BIOS_startFunc__I                                                              
    0c2532e0  ti_sysbios_BIOS_start__E                                                                  
    0c253300  ti_sysbios_family_c62_TaskSupport_Module__startupDone__S                                  
    0c251200  ti_sysbios_family_c62_TaskSupport_buildTaskStack                                          
    0c253320  ti_sysbios_family_c62_TaskSupport_checkStack__E                                           
    0c2529a0  ti_sysbios_family_c62_TaskSupport_glue                                                    
    0c24fee0  ti_sysbios_family_c62_TaskSupport_start__E                                                
    0c24e0e0  ti_sysbios_family_c62_TaskSupport_swap__E                                                 
    00872918  ti_sysbios_family_c64p_EventCombiner_EVTMASK__C                                           
    00872c7c  ti_sysbios_family_c64p_EventCombiner_EVTRegs__C                                           
    0c24ff40  ti_sysbios_family_c64p_EventCombiner_Module_startup__E                                    
    00872c80  ti_sysbios_family_c64p_Exception_E_exceptionMax__C                                        
    00872efa  ti_sysbios_family_c64p_Exception_Module__id__C                                            
    00874578  ti_sysbios_family_c64p_Exception_Module__state__V                                         
    0c24d2e0  ti_sysbios_family_c64p_Exception_Module_startup__E                                        
    0c245860  ti_sysbios_family_c64p_Exception_dispatch__E                                              
    00872c84  ti_sysbios_family_c64p_Exception_exceptionHook__C                                         
    00872c88  ti_sysbios_family_c64p_Exception_externalHook__C                                          
    0c22c7a0  ti_sysbios_family_c64p_Exception_handler__I                                               
    0c241400  ti_sysbios_family_c64p_Exception_internalHandler__I                                       
    00872c8c  ti_sysbios_family_c64p_Exception_internalHook__C                                          
    00872c90  ti_sysbios_family_c64p_Exception_nmiHook__C                                               
    00872efc  ti_sysbios_family_c64p_Exception_useInternalBuffer__C                                     
    00876000  ti_sysbios_family_c64p_Hwi0                                                               
    00872c94  ti_sysbios_family_c64p_Hwi_E_alreadyDefined__C                                            
    00872c98  ti_sysbios_family_c64p_Hwi_E_handleNotFound__C                                            
    00872c9c  ti_sysbios_family_c64p_Hwi_E_invalidIntNum__C                                             
    00872ca0  ti_sysbios_family_c64p_Hwi_INTRMUX1Address__C                                             
    0c249560  ti_sysbios_family_c64p_Hwi_Instance_finalize__E                                           
    0c248720  ti_sysbios_family_c64p_Hwi_Instance_init__E                                               
    00872ca4  ti_sysbios_family_c64p_Hwi_LD_end__C                                                      
    00872ca8  ti_sysbios_family_c64p_Hwi_LM_begin__C                                                    
    00872cac  ti_sysbios_family_c64p_Hwi_Module__diagsEnabled__C                                        
    00872cb0  ti_sysbios_family_c64p_Hwi_Module__diagsIncluded__C                                       
    00872cb4  ti_sysbios_family_c64p_Hwi_Module__diagsMask__C                                           
    00872efe  ti_sysbios_family_c64p_Hwi_Module__id__C                                                  
    00872f00  ti_sysbios_family_c64p_Hwi_Module__loggerDefined__C                                       
    00872cb8  ti_sysbios_family_c64p_Hwi_Module__loggerFxn1__C                                          
    00872cbc  ti_sysbios_family_c64p_Hwi_Module__loggerFxn8__C                                          
    00872cc0  ti_sysbios_family_c64p_Hwi_Module__loggerObj__C                                           
    00874838  ti_sysbios_family_c64p_Hwi_Module__root__V                                                
    0c253340  ti_sysbios_family_c64p_Hwi_Module__startupDone__F                                         
    0c253340  ti_sysbios_family_c64p_Hwi_Module__startupDone__S                                         
    00874378  ti_sysbios_family_c64p_Hwi_Module__state__V                                               
    0c2476a0  ti_sysbios_family_c64p_Hwi_Module_startup__E                                              
    00872520  ti_sysbios_family_c64p_Hwi_Object__DESC__C                                                
    00871eb8  ti_sysbios_family_c64p_Hwi_Object__PARAMS__C                                              
    0c24ffa0  ti_sysbios_family_c64p_Hwi_Object__delete__S                                              
    008746c8  ti_sysbios_family_c64p_Hwi_Object__table__V                                               
    0c253360  ti_sysbios_family_c64p_Hwi_Params__init__S                                                
    0c253380  ti_sysbios_family_c64p_Hwi_clearInterrupt__E                                              
    0c24c160  ti_sysbios_family_c64p_Hwi_create                                                         
    0c2533a0  ti_sysbios_family_c64p_Hwi_delete                                                         
    0c2517c0  ti_sysbios_family_c64p_Hwi_disableInterrupt__E                                            
    0c242340  ti_sysbios_family_c64p_Hwi_dispatchAlways                                                 
    0c24d380  ti_sysbios_family_c64p_Hwi_dispatchC__I                                                   
    0c2401c0  ti_sysbios_family_c64p_Hwi_dispatchCore__I                                                
    0c251800  ti_sysbios_family_c64p_Hwi_enableInterrupt__E                                             
    0c2533c0  ti_sysbios_family_c64p_Hwi_getHandle__E                                                   
    0c24d420  ti_sysbios_family_c64p_Hwi_getStackInfo__E                                                
    00876000  ti_sysbios_family_c64p_Hwi_int0                                                           
    00876020  ti_sysbios_family_c64p_Hwi_int1                                                           
    00876140  ti_sysbios_family_c64p_Hwi_int10                                                          
    00876160  ti_sysbios_family_c64p_Hwi_int11                                                          
    00876180  ti_sysbios_family_c64p_Hwi_int12                                                          
    008761a0  ti_sysbios_family_c64p_Hwi_int13                                                          
    008761c0  ti_sysbios_family_c64p_Hwi_int14                                                          
    008761e0  ti_sysbios_family_c64p_Hwi_int15                                                          
    00876040  ti_sysbios_family_c64p_Hwi_int2                                                           
    00876060  ti_sysbios_family_c64p_Hwi_int3                                                           
    00876080  ti_sysbios_family_c64p_Hwi_int4                                                           
    008760a0  ti_sysbios_family_c64p_Hwi_int5                                                           
    008760c0  ti_sysbios_family_c64p_Hwi_int6                                                           
    008760e0  ti_sysbios_family_c64p_Hwi_int7                                                           
    00876100  ti_sysbios_family_c64p_Hwi_int8                                                           
    00876120  ti_sysbios_family_c64p_Hwi_int9                                                           
    0c24cf20  ti_sysbios_family_c64p_Hwi_plug__E                                                        
    0c23f800  ti_sysbios_family_c64p_Hwi_reconfig__E                                                    
    0c2533e0  ti_sysbios_family_c64p_Hwi_startup__E                                                     
    0c24f7c0  ti_sysbios_family_c64p_Hwi_switchAndDispatch__I                                           
    0c253400  ti_sysbios_family_c64p_Hwi_switchFromBootStack__E                                         
    0c253420  ti_sysbios_family_c64p_Hwi_unPluggedInterrupt__I                                          
    0c253440  ti_sysbios_family_c64p_tci6488_TimerSupport_enable__E                                     
    00872cc4  ti_sysbios_family_c66_Cache_E_invalidL1CacheSize__C                                       
    00872cc8  ti_sysbios_family_c66_Cache_E_invalidL2CacheSize__C                                       
    00872f02  ti_sysbios_family_c66_Cache_Module__id__C                                                 
    0c250000  ti_sysbios_family_c66_Cache_Module_startup__E                                             
    0c253460  ti_sysbios_family_c66_Cache_RTSSynchInv__I                                                
    0c253480  ti_sysbios_family_c66_Cache_RTSSynchWbInv__I                                              
    0c2534a0  ti_sysbios_family_c66_Cache_RTSSynchWb__I                                                 
    00872ccc  ti_sysbios_family_c66_Cache_atomicBlockSize__C                                            
    0c245060  ti_sysbios_family_c66_Cache_block__I                                                      
    0c24e5e0  ti_sysbios_family_c66_Cache_invL1pAll__E                                                  
    0c2534c0  ti_sysbios_family_c66_Cache_inv__E                                                        
    00008000  ti_sysbios_family_c66_Cache_l1dSize                                                       
    00008000  ti_sysbios_family_c66_Cache_l1pSize                                                       
    00000000  ti_sysbios_family_c66_Cache_l2Size                                                        
    00870f38  ti_sysbios_family_c66_Cache_marvalues__C                                                  
    00872f04  ti_sysbios_family_c66_Cache_registerRTSSynch__C                                           
    0c236580  ti_sysbios_family_c66_Cache_startup__I                                                    
    0c2534e0  ti_sysbios_family_c66_Cache_wait__E                                                       
    0c253500  ti_sysbios_family_c66_Cache_wbInv__E                                                      
    0c24f820  ti_sysbios_family_xxx_Hwi_switchAndRunFunc                                                
    0c251840  ti_sysbios_gates_GateAll_Handle__label__S                                                 
    0c253520  ti_sysbios_gates_GateAll_Instance_init__E                                                 
    008721e8  ti_sysbios_gates_GateAll_Module__FXNS__C                                                  
    00874840  ti_sysbios_gates_GateAll_Module__root__V                                                  
    00872540  ti_sysbios_gates_GateAll_Object__DESC__C                                                  
    00872778  ti_sysbios_gates_GateAll_Object__PARAMS__C                                                
    0c24e660  ti_sysbios_gates_GateAll_Object__create__S                                                
    0c251880  ti_sysbios_gates_GateAll_Object__delete__S                                                
    00874750  ti_sysbios_gates_GateAll_Object__table__V                                                 
    0c250060  ti_sysbios_gates_GateAll_enter__E                                                         
    0c24c220  ti_sysbios_gates_GateAll_leave__E                                                         
    0c253540  ti_sysbios_gates_GateAll_query__E                                                         
    0c2518c0  ti_sysbios_gates_GateHwi_Handle__label__S                                                 
    0c253560  ti_sysbios_gates_GateHwi_Instance_init__E                                                 
    0087220c  ti_sysbios_gates_GateHwi_Module__FXNS__C                                                  
    00874848  ti_sysbios_gates_GateHwi_Module__root__V                                                  
    00872560  ti_sysbios_gates_GateHwi_Object__DESC__C                                                  
    00872790  ti_sysbios_gates_GateHwi_Object__PARAMS__C                                                
    0c24e6e0  ti_sysbios_gates_GateHwi_Object__create__S                                                
    0c251900  ti_sysbios_gates_GateHwi_Object__delete__S                                                
    008748e8  ti_sysbios_gates_GateHwi_Object__table__V                                                 
    0c253580  ti_sysbios_gates_GateHwi_enter__E                                                         
    0c2535a0  ti_sysbios_gates_GateHwi_leave__E                                                         
    0c2535c0  ti_sysbios_gates_GateHwi_query__E                                                         
    00872cd0  ti_sysbios_gates_GateMutexPri_A_badContext__C                                             
    00872cd4  ti_sysbios_gates_GateMutexPri_A_enterTaskDisabled__C                                      
    0c251940  ti_sysbios_gates_GateMutexPri_Handle__label__S                                            
    00872cd8  ti_sysbios_gates_GateMutexPri_Instance_State_pendQ__O                                     
    0c2535e0  ti_sysbios_gates_GateMutexPri_Instance_finalize__E                                        
    0c251980  ti_sysbios_gates_GateMutexPri_Instance_init__E                                            
    00872230  ti_sysbios_gates_GateMutexPri_Module__FXNS__C                                             
    00872cdc  ti_sysbios_gates_GateMutexPri_Module__diagsEnabled__C                                     
    00872ce0  ti_sysbios_gates_GateMutexPri_Module__diagsIncluded__C                                    
    00872ce4  ti_sysbios_gates_GateMutexPri_Module__diagsMask__C                                        
    00872f06  ti_sysbios_gates_GateMutexPri_Module__id__C                                               
    00874850  ti_sysbios_gates_GateMutexPri_Module__root__V                                             
    00872580  ti_sysbios_gates_GateMutexPri_Object__DESC__C                                             
    008727a8  ti_sysbios_gates_GateMutexPri_Object__PARAMS__C                                           
    0c24e760  ti_sysbios_gates_GateMutexPri_Object__create__S                                           
    0c2500c0  ti_sysbios_gates_GateMutexPri_Object__delete__S                                           
    008746e0  ti_sysbios_gates_GateMutexPri_Object__table__V                                            
    0c250120  ti_sysbios_gates_GateMutexPri_construct                                                   
    0c2519c0  ti_sysbios_gates_GateMutexPri_destruct                                                    
    0c2377a0  ti_sysbios_gates_GateMutexPri_enter__E                                                    
    0c249660  ti_sysbios_gates_GateMutexPri_leave__E                                                    
    0c253600  ti_sysbios_gates_GateMutexPri_query__E                                                    
    00872ce8  ti_sysbios_gates_GateMutex_A_badContext__C                                                
    0c251a00  ti_sysbios_gates_GateMutex_Handle__label__S                                               
    00872cec  ti_sysbios_gates_GateMutex_Instance_State_sem__O                                          
    0c253620  ti_sysbios_gates_GateMutex_Instance_finalize__E                                           
    0c251a40  ti_sysbios_gates_GateMutex_Instance_init__E                                               
    00872254  ti_sysbios_gates_GateMutex_Module__FXNS__C                                                
    00872cf0  ti_sysbios_gates_GateMutex_Module__diagsEnabled__C                                        
    00872cf4  ti_sysbios_gates_GateMutex_Module__diagsIncluded__C                                       
    00872cf8  ti_sysbios_gates_GateMutex_Module__diagsMask__C                                           
    00872f08  ti_sysbios_gates_GateMutex_Module__id__C                                                  
    00874858  ti_sysbios_gates_GateMutex_Module__root__V                                                
    008725a0  ti_sysbios_gates_GateMutex_Object__DESC__C                                                
    008727c0  ti_sysbios_gates_GateMutex_Object__PARAMS__C                                              
    0c24e7e0  ti_sysbios_gates_GateMutex_Object__create__S                                              
    0c250180  ti_sysbios_gates_GateMutex_Object__delete__S                                              
    00874538  ti_sysbios_gates_GateMutex_Object__table__V                                               
    0c2436e0  ti_sysbios_gates_GateMutex_enter__E                                                       
    0c251a80  ti_sysbios_gates_GateMutex_leave__E                                                       
    0c253640  ti_sysbios_gates_GateMutex_query__E                                                       
    00872cfc  ti_sysbios_gates_GateSwi_A_badContext__C                                                  
    0c251ac0  ti_sysbios_gates_GateSwi_Handle__label__S                                                 
    0c253660  ti_sysbios_gates_GateSwi_Instance_init__E                                                 
    00872278  ti_sysbios_gates_GateSwi_Module__FXNS__C                                                  
    00872d00  ti_sysbios_gates_GateSwi_Module__diagsEnabled__C                                          
    00872d04  ti_sysbios_gates_GateSwi_Module__diagsIncluded__C                                         
    00872d08  ti_sysbios_gates_GateSwi_Module__diagsMask__C                                             
    00872f0a  ti_sysbios_gates_GateSwi_Module__id__C                                                    
    00874860  ti_sysbios_gates_GateSwi_Module__root__V                                                  
    008725c0  ti_sysbios_gates_GateSwi_Object__DESC__C                                                  
    008727d8  ti_sysbios_gates_GateSwi_Object__PARAMS__C                                                
    0c24e860  ti_sysbios_gates_GateSwi_Object__create__S                                                
    0c251b00  ti_sysbios_gates_GateSwi_Object__delete__S                                                
    00874790  ti_sysbios_gates_GateSwi_Object__table__V                                                 
    0c2477e0  ti_sysbios_gates_GateSwi_enter__E                                                         
    0c24d4c0  ti_sysbios_gates_GateSwi_leave__E                                                         
    0c253680  ti_sysbios_gates_GateSwi_query__E                                                         
    0c2534c0  ti_sysbios_hal_Cache_CacheProxy_inv__E                                                    
    0c2534e0  ti_sysbios_hal_Cache_CacheProxy_wait__E                                                   
    0c253500  ti_sysbios_hal_Cache_CacheProxy_wbInv__E                                                  
    00872d0c  ti_sysbios_hal_Hwi_E_stackOverflow__C                                                     
    0c253340  ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S                                        
    0c253360  ti_sysbios_hal_Hwi_HwiProxy_Params__init__S                                               
    0c253380  ti_sysbios_hal_Hwi_HwiProxy_clearInterrupt__E                                             
    0c2517c0  ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E                                           
    0c251800  ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E                                            
    0c24d420  ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E                                               
    0c2533e0  ti_sysbios_hal_Hwi_HwiProxy_startup__E                                                    
    0c253400  ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E                                        
    00872f0c  ti_sysbios_hal_Hwi_Module__id__C                                                          
    0c2536a0  ti_sysbios_hal_Hwi_Module_startup__E                                                      
    00874868  ti_sysbios_hal_Hwi_Object__table__V                                                       
    0c24e8e0  ti_sysbios_hal_Hwi_checkStack                                                             
    0c24e960  ti_sysbios_hal_Hwi_initStack                                                              
    00872d10  ti_sysbios_heaps_HeapBuf_Instance_State_freeList__O                                       
    008748dc  ti_sysbios_heaps_HeapBuf_Module__state__V                                                 
    0c245200  ti_sysbios_heaps_HeapBuf_Module_startup__E                                                
    00872d14  ti_sysbios_heaps_HeapBuf_Object__count__C                                                 
    0c2536c0  ti_sysbios_heaps_HeapBuf_Object__get__S                                                   
    00872d18  ti_sysbios_heaps_HeapBuf_numConstructedHeaps__C                                           
    00872d1c  ti_sysbios_heaps_HeapMem_A_align__C                                                       
    00872d20  ti_sysbios_heaps_HeapMem_A_heapSize__C                                                    
    00872d24  ti_sysbios_heaps_HeapMem_A_invalidFree__C                                                 
    00872d28  ti_sysbios_heaps_HeapMem_A_zeroBlock__C                                                   
    00872d2c  ti_sysbios_heaps_HeapMem_E_memory__C                                                      
    0c251b40  ti_sysbios_heaps_HeapMem_Handle__label__S                                                 
    00800000  ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A                                          
    0c23e0a0  ti_sysbios_heaps_HeapMem_Instance_init__E                                                 
    0c251a00  ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S                                
    0c2536e0  ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E                                        
    0c253700  ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E                                        
    0c253640  ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E                                        
    008720b8  ti_sysbios_heaps_HeapMem_Module__FXNS__C                                                  
    00872d30  ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C                                          
    00872d34  ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C                                         
    00872d38  ti_sysbios_heaps_HeapMem_Module__diagsMask__C                                             
    00872d3c  ti_sysbios_heaps_HeapMem_Module__gateObj__C                                               
    00872f0e  ti_sysbios_heaps_HeapMem_Module__id__C                                                    
    00874870  ti_sysbios_heaps_HeapMem_Module__root__V                                                  
    008725e0  ti_sysbios_heaps_HeapMem_Object__DESC__C                                                  
    0087229c  ti_sysbios_heaps_HeapMem_Object__PARAMS__C                                                
    00872d40  ti_sysbios_heaps_HeapMem_Object__count__C                                                 
    0c24e9e0  ti_sysbios_heaps_HeapMem_Object__create__S                                                
    0c251b80  ti_sysbios_heaps_HeapMem_Object__delete__S                                                
    0c251bc0  ti_sysbios_heaps_HeapMem_Object__get__S                                                   
    008746f8  ti_sysbios_heaps_HeapMem_Object__table__V                                                 
    0c22ffc0  ti_sysbios_heaps_HeapMem_allocUnprotected__E                                              
    0c24a9a0  ti_sysbios_heaps_HeapMem_alloc__E                                                         
    0c2341a0  ti_sysbios_heaps_HeapMem_freeUnprotected__E                                               
    0c2501e0  ti_sysbios_heaps_HeapMem_free__E                                                          
    0c24c2e0  ti_sysbios_heaps_HeapMem_getStats__E                                                      
    0c24d560  ti_sysbios_heaps_HeapMem_init__I                                                          
    0c253720  ti_sysbios_heaps_HeapMem_isBlocking__E                                                    
    00872d44  ti_sysbios_heaps_HeapMem_reqAlign__C                                                      
    00872d48  ti_sysbios_knl_Clock_LM_begin__C                                                          
    00872d4c  ti_sysbios_knl_Clock_LM_tick__C                                                           
    00872d50  ti_sysbios_knl_Clock_LW_delayed__C                                                        
    00872d54  ti_sysbios_knl_Clock_Module_State_clockQ__O                                               
    00872d58  ti_sysbios_knl_Clock_Module__diagsEnabled__C                                              
    00872d5c  ti_sysbios_knl_Clock_Module__diagsIncluded__C                                             
    00872d60  ti_sysbios_knl_Clock_Module__diagsMask__C                                                 
    00872f10  ti_sysbios_knl_Clock_Module__id__C                                                        
    00872f12  ti_sysbios_knl_Clock_Module__loggerDefined__C                                             
    00872d64  ti_sysbios_knl_Clock_Module__loggerFxn1__C                                                
    00872d68  ti_sysbios_knl_Clock_Module__loggerFxn2__C                                                
    00872d6c  ti_sysbios_knl_Clock_Module__loggerObj__C                                                 
    008745a8  ti_sysbios_knl_Clock_Module__state__V                                                     
    0c250240  ti_sysbios_knl_Clock_Module_startup__E                                                    
    0c2538c0  ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S                                    
    0c253740  ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E                                            
    0c24ab60  ti_sysbios_knl_Clock_TimerProxy_startup__E                                                
    0c24ea60  ti_sysbios_knl_Clock_doTick__I                                                            
    0c24c3a0  ti_sysbios_knl_Clock_logTick__E                                                           
    0c23eb60  ti_sysbios_knl_Clock_workFunc__E                                                          
    00872d70  ti_sysbios_knl_Idle_funcList__A                                                           
    00872a44  ti_sysbios_knl_Idle_funcList__C                                                           
    0c253760  ti_sysbios_knl_Idle_loop__E                                                               
    0c24eae0  ti_sysbios_knl_Idle_run__E                                                                
    0c253780  ti_sysbios_knl_Queue_Instance_init__E                                                     
    00874878  ti_sysbios_knl_Queue_Module__root__V                                                      
    00872600  ti_sysbios_knl_Queue_Object__DESC__C                                                      
    008727f0  ti_sysbios_knl_Queue_Object__PARAMS__C                                                    
    0c2537a0  ti_sysbios_knl_Queue_Object__get__S                                                       
    0c2502a0  ti_sysbios_knl_Queue_construct                                                            
    0c2537c0  ti_sysbios_knl_Queue_destruct                                                             
    0c2537e0  ti_sysbios_knl_Queue_empty__E                                                             
    00872d74  ti_sysbios_knl_Semaphore_A_badContext__C                                                  
    00872d78  ti_sysbios_knl_Semaphore_A_noEvents__C                                                    
    00872d7c  ti_sysbios_knl_Semaphore_A_overflow__C                                                    
    00872d80  ti_sysbios_knl_Semaphore_A_pendTaskDisabled__C                                            
    00872d84  ti_sysbios_knl_Semaphore_Instance_State_pendQ__O                                          
    0c253800  ti_sysbios_knl_Semaphore_Instance_finalize__E                                             
    0c247920  ti_sysbios_knl_Semaphore_Instance_init__E                                                 
    00872d88  ti_sysbios_knl_Semaphore_LM_pend__C                                                       
    00872d8c  ti_sysbios_knl_Semaphore_LM_post__C                                                       
    00872d90  ti_sysbios_knl_Semaphore_Module__diagsEnabled__C                                          
    00872d94  ti_sysbios_knl_Semaphore_Module__diagsIncluded__C                                         
    00872d98  ti_sysbios_knl_Semaphore_Module__diagsMask__C                                             
    00872f14  ti_sysbios_knl_Semaphore_Module__id__C                                                    
    00872f16  ti_sysbios_knl_Semaphore_Module__loggerDefined__C                                         
    00872d9c  ti_sysbios_knl_Semaphore_Module__loggerFxn2__C                                            
    00872da0  ti_sysbios_knl_Semaphore_Module__loggerFxn4__C                                            
    00872da4  ti_sysbios_knl_Semaphore_Module__loggerObj__C                                             
    00874880  ti_sysbios_knl_Semaphore_Module__root__V                                                  
    00872620  ti_sysbios_knl_Semaphore_Object__DESC__C                                                  
    008722c0  ti_sysbios_knl_Semaphore_Object__PARAMS__C                                                
    00874710  ti_sysbios_knl_Semaphore_Object__table__V                                                 
    0c253820  ti_sysbios_knl_Semaphore_Params__init__S                                                  
    0c250300  ti_sysbios_knl_Semaphore_construct                                                        
    0c251c00  ti_sysbios_knl_Semaphore_destruct                                                         
    0c24eb60  ti_sysbios_knl_Semaphore_pendTimeout__I                                                   
    0c22cf20  ti_sysbios_knl_Semaphore_pend__E                                                          
    0c23fa80  ti_sysbios_knl_Semaphore_post__E                                                          
    00872da8  ti_sysbios_knl_Swi_A_badPriority__C                                                       
    0c24aa80  ti_sysbios_knl_Swi_Instance_finalize__E                                                   
    0c245e60  ti_sysbios_knl_Swi_Instance_init__E                                                       
    00872dac  ti_sysbios_knl_Swi_LD_end__C                                                              
    00872db0  ti_sysbios_knl_Swi_LM_begin__C                                                            
    00872db4  ti_sysbios_knl_Swi_LM_post__C                                                             
    00874080  ti_sysbios_knl_Swi_Module_State_0_readyQ__A                                               
    00872db8  ti_sysbios_knl_Swi_Module__diagsEnabled__C                                                
    00872dbc  ti_sysbios_knl_Swi_Module__diagsIncluded__C                                               
    00872dc0  ti_sysbios_knl_Swi_Module__diagsMask__C                                                   
    00872f18  ti_sysbios_knl_Swi_Module__id__C                                                          
    00872f1a  ti_sysbios_knl_Swi_Module__loggerDefined__C                                               
    00872dc4  ti_sysbios_knl_Swi_Module__loggerFxn1__C                                                  
    00872dc8  ti_sysbios_knl_Swi_Module__loggerFxn4__C                                                  
    00872dcc  ti_sysbios_knl_Swi_Module__loggerObj__C                                                   
    00874888  ti_sysbios_knl_Swi_Module__root__V                                                        
    008746a8  ti_sysbios_knl_Swi_Module__state__V                                                       
    0c250360  ti_sysbios_knl_Swi_Module_startup__E                                                      
    00872640  ti_sysbios_knl_Swi_Object__DESC__C                                                        
    008720e0  ti_sysbios_knl_Swi_Object__PARAMS__C                                                      
    00872dd0  ti_sysbios_knl_Swi_Object__count__C                                                       
    0c251c40  ti_sysbios_knl_Swi_Object__get__S                                                         
    00873a98  ti_sysbios_knl_Swi_Object__table__V                                                       
    0c253840  ti_sysbios_knl_Swi_Params__init__S                                                        
    0c24d600  ti_sysbios_knl_Swi_construct                                                              
    0c251c80  ti_sysbios_knl_Swi_destruct                                                               
    0c253860  ti_sysbios_knl_Swi_disable__E                                                             
    0c246b20  ti_sysbios_knl_Swi_post__E                                                                
    0c249760  ti_sysbios_knl_Swi_restoreHwi__E                                                          
    0c23d500  ti_sysbios_knl_Swi_runLoop__I                                                             
    0c241f00  ti_sysbios_knl_Swi_run__I                                                                 
    0c24c460  ti_sysbios_knl_Swi_schedule__I                                                            
    0c24ebe0  ti_sysbios_knl_Swi_startup__E                                                             
    00872dd4  ti_sysbios_knl_Task_A_badPriority__C                                                      
    00872dd8  ti_sysbios_knl_Task_E_spOutOfBounds__C                                                    
    00872ddc  ti_sysbios_knl_Task_E_stackOverflow__C                                                    
    00868f70  ti_sysbios_knl_Task_Instance_State_0_stack__A                                             
    00869f70  ti_sysbios_knl_Task_Instance_State_1_stack__A                                             
    00872de0  ti_sysbios_knl_Task_LD_block__C                                                           
    00872de4  ti_sysbios_knl_Task_LD_exit__C                                                            
    00872de8  ti_sysbios_knl_Task_LD_ready__C                                                           
    00872dec  ti_sysbios_knl_Task_LM_setPri__C                                                          
    00872df0  ti_sysbios_knl_Task_LM_switch__C                                                          
    008748f0  ti_sysbios_knl_Task_Module_State_0_idleTask__A                                            
    00874100  ti_sysbios_knl_Task_Module_State_0_readyQ__A                                              
    00872df4  ti_sysbios_knl_Task_Module_State_inactiveQ__O                                             
    00872df8  ti_sysbios_knl_Task_Module__diagsEnabled__C                                               
    00872dfc  ti_sysbios_knl_Task_Module__diagsIncluded__C                                              
    00872e00  ti_sysbios_knl_Task_Module__diagsMask__C                                                  
    00872f1c  ti_sysbios_knl_Task_Module__id__C                                                         
    00872f1e  ti_sysbios_knl_Task_Module__loggerDefined__C                                              
    00872e04  ti_sysbios_knl_Task_Module__loggerFxn2__C                                                 
    00872e08  ti_sysbios_knl_Task_Module__loggerFxn4__C                                                 
    00872e0c  ti_sysbios_knl_Task_Module__loggerObj__C                                                  
    008744f0  ti_sysbios_knl_Task_Module__state__V                                                      
    0c23e360  ti_sysbios_knl_Task_Module_startup__E                                                     
    00872e10  ti_sysbios_knl_Task_Object__count__C                                                      
    0c251cc0  ti_sysbios_knl_Task_Object__get__S                                                        
    00873d18  ti_sysbios_knl_Task_Object__table__V                                                      
    0c253300  ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S                                   
    0c253320  ti_sysbios_knl_Task_SupportProxy_checkStack__E                                            
    0c24fee0  ti_sysbios_knl_Task_SupportProxy_start__E                                                 
    0c24e0e0  ti_sysbios_knl_Task_SupportProxy_swap__E                                                  
    00872e14  ti_sysbios_knl_Task_allBlockedFunc__C                                                     
    0c24d6a0  ti_sysbios_knl_Task_allBlockedFunction__I                                                 
    0c247a60  ti_sysbios_knl_Task_blockI__E                                                             
    0c253880  ti_sysbios_knl_Task_disable__E                                                            
    0c2503c0  ti_sysbios_knl_Task_enter__I                                                              
    0c245fe0  ti_sysbios_knl_Task_exit__E                                                               
    00872e18  ti_sysbios_knl_Task_numConstructedTasks__C                                                
    0c24ec60  ti_sysbios_knl_Task_restore__E                                                            
    0c23b9a0  ti_sysbios_knl_Task_schedule__I                                                           
    0c2383c0  ti_sysbios_knl_Task_setPri__E                                                             
    0c246160  ti_sysbios_knl_Task_startCore__E                                                          
    0c2538a0  ti_sysbios_knl_Task_startup__E                                                            
    0c248840  ti_sysbios_knl_Task_unblockI__E                                                           
    00872e1c  ti_sysbios_timers_timer64_Timer_A_notAvailable__C                                         
    00872e20  ti_sysbios_timers_timer64_Timer_E_cannotSupport__C                                        
    00873918  ti_sysbios_timers_timer64_Timer_Module_State_0_device__A                                  
    00874180  ti_sysbios_timers_timer64_Timer_Module_State_0_gctrl__A                                   
    00874200  ti_sysbios_timers_timer64_Timer_Module_State_0_handles__A                                 
    00874280  ti_sysbios_timers_timer64_Timer_Module_State_0_intFreqs__A                                
    00872e24  ti_sysbios_timers_timer64_Timer_Module__diagsEnabled__C                                   
    00872e28  ti_sysbios_timers_timer64_Timer_Module__diagsIncluded__C                                  
    00872e2c  ti_sysbios_timers_timer64_Timer_Module__diagsMask__C                                      
    00872f20  ti_sysbios_timers_timer64_Timer_Module__id__C                                             
    0c2538c0  ti_sysbios_timers_timer64_Timer_Module__startupDone__F                                    
    0c2538c0  ti_sysbios_timers_timer64_Timer_Module__startupDone__S                                    
    00874728  ti_sysbios_timers_timer64_Timer_Module__state__V                                          
    0c22eba0  ti_sysbios_timers_timer64_Timer_Module_startup__E                                         
    008744a0  ti_sysbios_timers_timer64_Timer_Object__table__V                                          
    0c253440  ti_sysbios_timers_timer64_Timer_TimerSupportProxy_enable__E                               
    00872e30  ti_sysbios_timers_timer64_Timer_anyMaskHigh__C                                            
    00872e34  ti_sysbios_timers_timer64_Timer_anyMask__C                                                
    0c23bce0  ti_sysbios_timers_timer64_Timer_deviceConfig__I                                           
    00872e38  ti_sysbios_timers_timer64_Timer_freqDivisor__C                                            
    0c2441a0  ti_sysbios_timers_timer64_Timer_getFreq__E                                                
    0c2538e0  ti_sysbios_timers_timer64_Timer_getMaxTicks__E                                            
    0c249860  ti_sysbios_timers_timer64_Timer_initDevice__I                                             
    00870a1b  ti_sysbios_timers_timer64_Timer_localTimerBaseId__C                                       
    00872e3c  ti_sysbios_timers_timer64_Timer_numLocalTimers__C                                         
    00872e40  ti_sysbios_timers_timer64_Timer_numTimerDevices__C                                        
    0c242120  ti_sysbios_timers_timer64_Timer_setPeriodMicroSecs__E                                     
    0c2453a0  ti_sysbios_timers_timer64_Timer_start__E                                                  
    00872f22  ti_sysbios_timers_timer64_Timer_startupNeeded__C                                          
    0c24ab60  ti_sysbios_timers_timer64_Timer_startup__E                                                
    0c24d740  ti_sysbios_timers_timer64_Timer_stop__E                                                   
    00872f24  ti_sysbios_timers_timer64_Timer_useTimer64pRegMap__C                                      
    00872e44  ti_sysbios_xdcruntime_GateThreadSupport_Instance_State_gate__O                            
    0c253900  ti_sysbios_xdcruntime_GateThreadSupport_Instance_finalize__E                              
    0c253920  ti_sysbios_xdcruntime_GateThreadSupport_Instance_init__E                                  
    00874890  ti_sysbios_xdcruntime_GateThreadSupport_Module__root__V                                   
    00872660  ti_sysbios_xdcruntime_GateThreadSupport_Object__DESC__C                                   
    00872808  ti_sysbios_xdcruntime_GateThreadSupport_Object__PARAMS__C                                 
    0c250420  ti_sysbios_xdcruntime_GateThreadSupport_Object__delete__S                                 
    0c24ed60  ti_sysbios_xdcruntime_GateThreadSupport_create                                            
    0c253940  ti_sysbios_xdcruntime_GateThreadSupport_enter__E                                          
    0c249960  ti_sysbios_xdcruntime_GateThreadSupport_leave__E                                          
    0c253600  ti_sysbios_xdcruntime_GateThreadSupport_query__E                                          
    0c24ede0  unlink                                                                                    
    0c232a28  wait_qdma                                                                                 
    0c250480  write                                                                                     
    00872e48  xdc_runtime_Assert_E_assertFailed__C                                                      
    0c24c5e0  xdc_runtime_Assert_raise__I                                                               
    00872e4c  xdc_runtime_Core_A_initializedParams__C                                                   
    00872e50  xdc_runtime_Core_Module__diagsEnabled__C                                                  
    00872e54  xdc_runtime_Core_Module__diagsIncluded__C                                                 
    00872e58  xdc_runtime_Core_Module__diagsMask__C                                                     
    00872f26  xdc_runtime_Core_Module__id__C                                                            
    0c24ee60  xdc_runtime_Core_assignLabel__I                                                           
    0c24d7e0  xdc_runtime_Core_assignParams__I                                                          
    0c245540  xdc_runtime_Core_constructObject__I                                                       
    0c241640  xdc_runtime_Core_createObject__I                                                          
    0c247ba0  xdc_runtime_Core_deleteObject__I                                                          
    00872e5c  xdc_runtime_Error_E_memory__C                                                             
    00874668  xdc_runtime_Error_IgnoreBlock                                                             
    00872e60  xdc_runtime_Error_Module__diagsEnabled__C                                                 
    00872e64  xdc_runtime_Error_Module__diagsIncluded__C                                                
    00872e68  xdc_runtime_Error_Module__diagsMask__C                                                    
    00872f28  xdc_runtime_Error_Module__loggerDefined__C                                                
    00872e6c  xdc_runtime_Error_Module__loggerFxn8__C                                                   
    00872e70  xdc_runtime_Error_Module__loggerObj__C                                                    
    008748ec  xdc_runtime_Error_Module__state__V                                                        
    0c251d00  xdc_runtime_Error_check__E                                                                
    0c253960  xdc_runtime_Error_getSite__E                                                              
    0c251d40  xdc_runtime_Error_init__E                                                                 
    00872f2a  xdc_runtime_Error_maxDepth__C                                                             
    0c242f40  xdc_runtime_Error_policyDefault__E                                                        
    00872e74  xdc_runtime_Error_policyFxn__C                                                            
    00872e78  xdc_runtime_Error_policy__C                                                               
    0c249a60  xdc_runtime_Error_print__E                                                                
    00872e7c  xdc_runtime_Error_raiseHook__C                                                            
    0c253980  xdc_runtime_Error_raiseX__E                                                               
    0c24c6a0  xdc_runtime_Error_setX__E                                                                 
    0c251d80  xdc_runtime_GateNull_Handle__label__S                                                     
    008722e4  xdc_runtime_GateNull_Module__FXNS__C                                                      
    00874898  xdc_runtime_GateNull_Module__root__V                                                      
    00872680  xdc_runtime_GateNull_Object__DESC__C                                                      
    00872820  xdc_runtime_GateNull_Object__PARAMS__C                                                    
    0c251dc0  xdc_runtime_GateNull_Object__create__S                                                    
    0c251e00  xdc_runtime_GateNull_Object__delete__S                                                    
    008748f8  xdc_runtime_GateNull_Object__table__V                                                     
    0c2539a0  xdc_runtime_GateNull_enter__E                                                             
    0c2539c0  xdc_runtime_GateNull_leave__E                                                             
    0c2539e0  xdc_runtime_GateNull_query__E                                                             
    0c253a00  xdc_runtime_Gate_enterSystem__E                                                           
    0c253a20  xdc_runtime_Gate_leaveSystem__E                                                           
    00872e80  xdc_runtime_IGateProvider_Interface__BASE__C                                              
    00872e84  xdc_runtime_IHeap_Interface__BASE__C                                                      
    00872e88  xdc_runtime_IModule_Interface__BASE__C                                                    
    00872e8c  xdc_runtime_Log_L_error__C                                                                
    0c2518c0  xdc_runtime_Main_Module_GateProxy_Handle__label__S                                        
    0c2535c0  xdc_runtime_Main_Module_GateProxy_query__E                                                
    0c251b40  xdc_runtime_Memory_HeapProxy_Handle__label__S                                             
    0c253a40  xdc_runtime_Memory_HeapProxy_alloc__E                                                     
    0c253a60  xdc_runtime_Memory_HeapProxy_free__E                                                      
    00872f2c  xdc_runtime_Memory_Module__id__C                                                          
    008748e4  xdc_runtime_Memory_Module__state__V                                                       
    0c249b60  xdc_runtime_Memory_alloc__E                                                               
    0c253a80  xdc_runtime_Memory_calloc__E                                                              
    00872e90  xdc_runtime_Memory_defaultHeapInstance__C                                                 
    0c253aa0  xdc_runtime_Memory_free__E                                                                
    0c253ac0  xdc_runtime_Memory_getMaxDefaultTypeAlign__E                                              
    0c2504e0  xdc_runtime_Memory_valloc__E                                                              
    008748a0  xdc_runtime_Registry_Module__state__V                                                     
    0c251e40  xdc_runtime_Registry_findById__E                                                          
    0c253ae0  xdc_runtime_Startup_Module__startupDone__S                                                
    008748a8  xdc_runtime_Startup_Module__state__V                                                      
    00000001  xdc_runtime_Startup__EXECFXN__C                                                           
    00000001  xdc_runtime_Startup__RESETFXN__C                                                          
    00872e94  xdc_runtime_Startup_execImpl__C                                                           
    0c249c60  xdc_runtime_Startup_exec__E                                                               
    0c253b00  xdc_runtime_Startup_exec__I                                                               
    008729b0  xdc_runtime_Startup_firstFxns__A                                                          
    00872a4c  xdc_runtime_Startup_firstFxns__C                                                          
    00872a54  xdc_runtime_Startup_lastFxns__C                                                           
    00872e98  xdc_runtime_Startup_maxPasses__C                                                          
    0c236580  xdc_runtime_Startup_reset__I                                                              
    0c253b20  xdc_runtime_Startup_rtsDone__E                                                            
    00872358  xdc_runtime_Startup_sfxnRts__A                                                            
    00872e9c  xdc_runtime_Startup_sfxnRts__C                                                            
    00871c70  xdc_runtime_Startup_sfxnTab__A                                                            
    00872ea0  xdc_runtime_Startup_sfxnTab__C                                                            
    0c240420  xdc_runtime_Startup_startMods__I                                                          
    0086c2f0  xdc_runtime_SysMin_Module_State_0_outbuf__A                                               
    0087479c  xdc_runtime_SysMin_Module__state__V                                                       
    0c251e80  xdc_runtime_SysMin_Module_startup__E                                                      
    0c24c760  xdc_runtime_SysMin_abort__E                                                               
    00872ea4  xdc_runtime_SysMin_bufSize__C                                                             
    0c251ec0  xdc_runtime_SysMin_exit__E                                                                
    00872f2e  xdc_runtime_SysMin_flushAtExit__C                                                         
    0c24c820  xdc_runtime_SysMin_flush__E                                                               
    00872ea8  xdc_runtime_SysMin_outputFunc__C                                                          
    0c24eee0  xdc_runtime_SysMin_output__I                                                              
    0c24d880  xdc_runtime_SysMin_putch__E                                                               
    0c253b40  xdc_runtime_SysMin_ready__E                                                               
    0c2518c0  xdc_runtime_System_Module_GateProxy_Handle__label__S                                      
    0c253b60  xdc_runtime_System_Module_GateProxy_enter__E                                              
    0c253b80  xdc_runtime_System_Module_GateProxy_leave__E                                              
    0c2535c0  xdc_runtime_System_Module_GateProxy_query__E                                              
    00874688  xdc_runtime_System_Module_State_0_atexitHandlers__A                                       
    00872eac  xdc_runtime_System_Module__gateObj__C                                                     
    008748b0  xdc_runtime_System_Module__state__V                                                       
    0c253ba0  xdc_runtime_System_Module_startup__E                                                      
    0c24c760  xdc_runtime_System_SupportProxy_abort__E                                                  
    0c251ec0  xdc_runtime_System_SupportProxy_exit__E                                                   
    0c24c820  xdc_runtime_System_SupportProxy_flush__E                                                  
    0c24d880  xdc_runtime_System_SupportProxy_putch__E                                                  
    0c253b40  xdc_runtime_System_SupportProxy_ready__E                                                  
    00872eb0  xdc_runtime_System_abortFxn__C                                                            
    0c2529c0  xdc_runtime_System_abortStd__E                                                            
    0c251f00  xdc_runtime_System_abort__E                                                               
    0c251f40  xdc_runtime_System_aprintf__E                                                             
    0c24efe0  xdc_runtime_System_aprintf_va__E                                                          
    0c24efe0  xdc_runtime_System_aprintf_va__F                                                          
    0c24ef60  xdc_runtime_System_atexit__E                                                              
    0c24efe0  xdc_runtime_System_avprintf__E                                                            
    0c229ec0  xdc_runtime_System_doPrint__I                                                             
    00872eb4  xdc_runtime_System_exitFxn__C                                                             
    0c24a460  xdc_runtime_System_exitStd__E                                                             
    0c251f80  xdc_runtime_System_exit__E                                                                
    00872eb8  xdc_runtime_System_extendFxn__C                                                           
    0c24d920  xdc_runtime_System_formatNum__I                                                           
    00872ebc  xdc_runtime_System_maxAtexitHandlers__C                                                   
    0c241880  xdc_runtime_System_printfExtend__I                                                        
    0c251fc0  xdc_runtime_System_printf__E                                                              
    0c24f0e0  xdc_runtime_System_printf_va__E                                                           
    0c24f0e0  xdc_runtime_System_printf_va__F                                                           
    0c24f060  xdc_runtime_System_processAtExit__E                                                       
    0c24d9c0  xdc_runtime_System_putchar__I                                                             
    0c253bc0  xdc_runtime_System_snprintf_va__E                                                         
    0c253bc0  xdc_runtime_System_snprintf_va__F                                                         
    0c24f0e0  xdc_runtime_System_vprintf__E                                                             
    0c253bc0  xdc_runtime_System_vsnprintf__E                                                           
    00872f30  xdc_runtime_Text_charCnt__C                                                               
    0086d2e0  xdc_runtime_Text_charTab__A                                                               
    00872ec0  xdc_runtime_Text_charTab__C                                                               
    0c250540  xdc_runtime_Text_cordText__E                                                              
    00872f32  xdc_runtime_Text_isLoaded__C                                                              
    00872ec4  xdc_runtime_Text_nameEmpty__C                                                             
    00872ec8  xdc_runtime_Text_nameStatic__C                                                            
    00872ecc  xdc_runtime_Text_nameUnknown__C                                                           
    00871338  xdc_runtime_Text_nodeTab__A                                                               
    00872ed0  xdc_runtime_Text_nodeTab__C                                                               
    0c24da60  xdc_runtime_Text_printVisFxn__I                                                           
    0c247ce0  xdc_runtime_Text_putLab__E                                                                
    0c246c80  xdc_runtime_Text_putMod__E                                                                
    0c2438c0  xdc_runtime_Text_putSite__E                                                               
    00872f34  xdc_runtime_Text_registryModsLastId__C                                                    
    0c253be0  xdc_runtime_Text_ropeText__E                                                              
    00872f36  xdc_runtime_Text_unnamedModsLastId__C                                                     
    0c24ac40  xdc_runtime_Text_visitRope2__I                                                            
    00872ed4  xdc_runtime_Text_visitRopeFxn__C                                                          
    0c253c00  xdc_runtime_Text_visitRope__I                                                             
    0c24db00  xdc_runtime_Text_xprintf__I                                                               
    0c252000  xdc_runtime_knl_GateThread_Handle__label__S                                               
    0c253c20  xdc_runtime_knl_GateThread_Instance_finalize__E                                           
    0c252040  xdc_runtime_knl_GateThread_Instance_init__E                                               
    00872308  xdc_runtime_knl_GateThread_Module__FXNS__C                                                
    008748b8  xdc_runtime_knl_GateThread_Module__root__V                                                
    0c253c40  xdc_runtime_knl_GateThread_Module__startupDone__S                                         
    008726a0  xdc_runtime_knl_GateThread_Object__DESC__C                                                
    00872838  xdc_runtime_knl_GateThread_Object__PARAMS__C                                              
    0c24dba0  xdc_runtime_knl_GateThread_Object__create__S                                              
    0c2505a0  xdc_runtime_knl_GateThread_Object__delete__S                                              
    0c253c60  xdc_runtime_knl_GateThread_Proxy_create                                                   
    0c253c80  xdc_runtime_knl_GateThread_Proxy_delete                                                   
    0c253ca0  xdc_runtime_knl_GateThread_Proxy_enter__E                                                 
    0c253cc0  xdc_runtime_knl_GateThread_Proxy_leave__E                                                 
    0c253600  xdc_runtime_knl_GateThread_Proxy_query__E                                                 
    0c24dc40  xdc_runtime_knl_GateThread_create                                                         
    0c253ce0  xdc_runtime_knl_GateThread_enter__E                                                       
    0c253d00  xdc_runtime_knl_GateThread_leave__E                                                       
    
    
    GLOBAL SYMBOLS: SORTED BY Symbol Address 
    
    address   name                                                                                      
    -------   ----                                                                                      
    00000000  _argsize                                                                                  
    00000000  ti_sysbios_family_c66_Cache_l2Size                                                        
    00000001  xdc_runtime_Startup__EXECFXN__C                                                           
    00000001  xdc_runtime_Startup__RESETFXN__C                                                          
    00001000  __TI_STACK_SIZE                                                                           
    00008000  ti_sysbios_family_c66_Cache_l1dSize                                                       
    00008000  ti_sysbios_family_c66_Cache_l1pSize                                                       
    00800000  __ASM__                                                                                   
    00800000  ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A                                          
    00800068  __ISA__                                                                                   
    00800080  __PLAT__                                                                                  
    008000a8  __TARG__                                                                                  
    008000d0  __TRDR__                                                                                  
    0083c000  m_pCondChannelMapping                                                                     
    00849400  g_script                                                                                  
    00851100  g_poolData                                                                                
    00857500  g_AOPEngineDriver                                                                         
    0085b2c0  g_FilterImpedanceMeasurment                                                               
    0085e368  PE_rcv                                                                                    
    00860b68  PE_xmt                                                                                    
    00863368  g_MemoryMange                                                                             
    00865674  g_FilterDetection                                                                         
    0086730c  g_AOFilterDetectionParams                                                                 
    00868f70  ti_sysbios_knl_Task_Instance_State_0_stack__A                                             
    00869f70  ti_sysbios_knl_Task_Instance_State_1_stack__A                                             
    0086a770  AppContrPE                                                                                
    0086b9c4  g_FilterScriptExecuter                                                                    
    0086bef0  g_ImpCalibInfo                                                                            
    0086c2f0  xdc_runtime_SysMin_Module_State_0_outbuf__A                                               
    0086c6f0  g_FilterPECond                                                                            
    0086c9b0  __TI_tmpnams                                                                              
    0086caf0  TccHandlerTable                                                                           
    0086cbf0  chObj                                                                                     
    0086ccd0  g_AOFilterImpedanceMeasurementParams                                                      
    0086cd30  PipeADIn                                                                                  
    0086cd80  PipeADOut                                                                                 
    0086cdd0  PipeBlocksAccumulatorIn                                                                   
    0086ce20  PipeCodecIn                                                                               
    0086ce70  PipeCondOut                                                                               
    0086cec0  PipeDetectionOut                                                                          
    0086cf10  PipeImpOut                                                                                
    0086cf60  PipePCIIn                                                                                 
    0086cfb0  PipePCIOut                                                                                
    0086d000  PipeScriptExecuterIn                                                                      
    0086d050  PipeScriptExecuterOut                                                                     
    0086d0a0  PipeTMIn                                                                                  
    0086d0f0  PipeTMOut                                                                                 
    0086d140  g_AOTimecal_1                                                                             
    0086d190  PS                                                                                        
    0086d1c0  g_GlobalVars                                                                              
    0086d1e8  CORES_STATUS                                                                              
    0086d208  outb                                                                                      
    0086d228  edmaObj                                                                                   
    0086d23c  PipeADInUtil                                                                              
    0086d248  PipeADOutUtil                                                                             
    0086d254  PipeBlocksAccumulatorInUtil                                                               
    0086d260  PipeCodecInUtil                                                                           
    0086d26c  PipeCondOutUtil                                                                           
    0086d278  PipeDetectionOutUtil                                                                      
    0086d284  PipeImpOutUtil                                                                            
    0086d290  PipePCIOutUtil                                                                            
    0086d29c  PipeScriptExecuterInUtil                                                                  
    0086d2a8  PipeScriptExecuterOutUtil                                                                 
    0086d2b4  PipeTMInUtil                                                                              
    0086d2c0  PipeTMOutUtil                                                                             
    0086d2cc  info                                                                                      
    0086d2d8  parmbuf                                                                                   
    0086d2e0  xdc_runtime_Text_charTab__A                                                               
    00870a1b  ti_sysbios_timers_timer64_Timer_localTimerBaseId__C                                       
    00870f38  ti_sysbios_family_c66_Cache_marvalues__C                                                  
    00871338  xdc_runtime_Text_nodeTab__A                                                               
    0087161c  ti_sdo_ipc_GateMP_A_invalidClose__C                                                       
    00871620  _ctypes_                                                                                  
    00871722  ti_sdo_ipc_GateMP_Module__id__C                                                           
    008718b8  _ZN16CAOPEngineDriver24m_arrAnalogOutputMappingE                                          
    00871928  _ZTV16CFilterDetection                                                                    
    00871990  _ZTV18CFilterPEngineCond                                                                  
    008719f8  _ZTV21CFilterScriptExecuter                                                               
    00871a60  _ZTV26CFilterImpedanceMeasurment                                                          
    00871ac8  _ZTV7CFilter                                                                              
    00871bdc  ti_sdo_ipc_GateMP_A_invalidDelete__C                                                      
    00871be0  _ZTV5CPipe                                                                                
    00871c28  _ZTV7AFilter                                                                              
    00871c6c  ti_sdo_ipc_GateMP_E_gateUnavailable__C                                                    
    00871c70  xdc_runtime_Startup_sfxnTab__A                                                            
    00871cf4  ti_sdo_ipc_GateMP_E_localGate__C                                                          
    00871cf8  _ZTV5IPipe                                                                                
    00871d38  _ZTV16CAOPEngineDriver                                                                    
    00871dac  ti_sdo_ipc_GateMP_LM_create__C                                                            
    00871db0  _ZTV9CAODriver                                                                            
    00871de8  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__FXNS__C                                  
    00871e20  ti_sdo_ipc_GateMP_Object__PARAMS__C                                                       
    00871e54  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__PARAMS__C                                
    00871e88  ti_sdo_ipc_heaps_HeapMemMP_Object__PARAMS__C                                              
    00871eb8  ti_sysbios_family_c64p_Hwi_Object__PARAMS__C                                              
    00871f14  ti_sdo_ipc_ListMP_Object__PARAMS__C                                                       
    00871f40  ti_sdo_ipc_gates_GateHWSem_Module__FXNS__C                                                
    00871f6c  ti_sdo_ipc_gates_GateMPSupportNull_Module__FXNS__C                                        
    00871f98  ti_sdo_ipc_gates_GatePeterson_Module__FXNS__C                                             
    00871fc4  ti_sdo_ipc_GateMP_LM_delete__C                                                            
    00871ff0  _ZTV9CWatchDog                                                                            
    00872018  ti_sdo_ipc_heaps_HeapMemMP_Module__FXNS__C                                                
    00872040  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__FXNS__C                                
    00872068  ti_sdo_ipc_transports_TransportShm_Module__FXNS__C                                        
    00872090  ti_sdo_ipc_transports_TransportShm_Object__PARAMS__C                                      
    008720b8  ti_sysbios_heaps_HeapMem_Module__FXNS__C                                                  
    008720e0  ti_sysbios_knl_Swi_Object__PARAMS__C                                                      
    00872108  _ZTSN10__cxxabiv121__vmi_class_type_infoE                                                 
    0087212e  ti_sdo_ipc_GateMP_Module__loggerDefined__C                                                
    00872130  _ZTSN10__cxxabiv120__si_class_type_infoE                                                  
    00872156  ti_sdo_ipc_Ipc_Module__id__C                                                              
    0087217c  ti_sdo_ipc_gates_GateHWSem_Object__PARAMS__C                                              
    008721a0  ti_sdo_ipc_gates_GateMPSupportNull_Object__PARAMS__C                                      
    008721c4  ti_sdo_ipc_gates_GatePeterson_Object__PARAMS__C                                           
    008721e8  ti_sysbios_gates_GateAll_Module__FXNS__C                                                  
    0087220c  ti_sysbios_gates_GateHwi_Module__FXNS__C                                                  
    00872230  ti_sysbios_gates_GateMutexPri_Module__FXNS__C                                             
    00872254  ti_sysbios_gates_GateMutex_Module__FXNS__C                                                
    00872278  ti_sysbios_gates_GateSwi_Module__FXNS__C                                                  
    0087229c  ti_sysbios_heaps_HeapMem_Object__PARAMS__C                                                
    008722c0  ti_sysbios_knl_Semaphore_Object__PARAMS__C                                                
    008722e4  xdc_runtime_GateNull_Module__FXNS__C                                                      
    00872308  xdc_runtime_knl_GateThread_Module__FXNS__C                                                
    0087232c  ti_sdo_ipc_GateMP_LM_enter__C                                                             
    00872330  _ZTSN10__cxxabiv117__class_type_infoE                                                     
    00872352  ti_sdo_ipc_Ipc_generateSlaveDataForHost__C                                                
    00872354  ti_sdo_ipc_GateMP_LM_leave__C                                                             
    00872358  xdc_runtime_Startup_sfxnRts__A                                                            
    0087237a  ti_sdo_ipc_ListMP_Module__id__C                                                           
    0087237c  ti_sdo_ipc_GateMP_LM_open__C                                                              
    00872380  _ZTV9CAppContr                                                                            
    008723a0  ti_sdo_ipc_GateMP_Object__DESC__C                                                         
    008723c0  ti_sdo_ipc_ListMP_Object__DESC__C                                                         
    008723e0  ti_sdo_ipc_Notify_Object__DESC__C                                                         
    00872400  ti_sdo_ipc_gates_GateHWSem_Object__DESC__C                                                
    00872420  ti_sdo_ipc_gates_GateMPSupportNull_Object__DESC__C                                        
    00872440  ti_sdo_ipc_gates_GatePeterson_Object__DESC__C                                             
    00872460  ti_sdo_ipc_heaps_HeapMemMP_Object__DESC__C                                                
    00872480  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__DESC__C                                  
    008724a0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__DESC__C                                
    008724c0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__PARAMS__C                              
    008724e0  ti_sdo_ipc_transports_TransportShm_Object__DESC__C                                        
    00872500  ti_sdo_utils_List_Object__DESC__C                                                         
    00872520  ti_sysbios_family_c64p_Hwi_Object__DESC__C                                                
    00872540  ti_sysbios_gates_GateAll_Object__DESC__C                                                  
    00872560  ti_sysbios_gates_GateHwi_Object__DESC__C                                                  
    00872580  ti_sysbios_gates_GateMutexPri_Object__DESC__C                                             
    008725a0  ti_sysbios_gates_GateMutex_Object__DESC__C                                                
    008725c0  ti_sysbios_gates_GateSwi_Object__DESC__C                                                  
    008725e0  ti_sysbios_heaps_HeapMem_Object__DESC__C                                                  
    00872600  ti_sysbios_knl_Queue_Object__DESC__C                                                      
    00872620  ti_sysbios_knl_Semaphore_Object__DESC__C                                                  
    00872640  ti_sysbios_knl_Swi_Object__DESC__C                                                        
    00872660  ti_sysbios_xdcruntime_GateThreadSupport_Object__DESC__C                                   
    00872680  xdc_runtime_GateNull_Object__DESC__C                                                      
    008726a0  xdc_runtime_knl_GateThread_Object__DESC__C                                                
    008726c0  _ZTS26CFilterImpedanceMeasurment                                                          
    008726de  ti_sdo_ipc_MessageQ_Module__id__C                                                         
    00872714  _ZTI7AFilter                                                                              
    0087272c  ti_sdo_ipc_GateMP_Module__diagsEnabled__C                                                 
    00872730  _ZTS21CFilterScriptExecuter                                                               
    00872748  ti_sdo_ipc_Notify_Object__PARAMS__C                                                       
    00872760  ti_sdo_utils_List_Object__PARAMS__C                                                       
    00872778  ti_sysbios_gates_GateAll_Object__PARAMS__C                                                
    00872790  ti_sysbios_gates_GateHwi_Object__PARAMS__C                                                
    008727a8  ti_sysbios_gates_GateMutexPri_Object__PARAMS__C                                           
    008727c0  ti_sysbios_gates_GateMutex_Object__PARAMS__C                                              
    008727d8  ti_sysbios_gates_GateSwi_Object__PARAMS__C                                                
    008727f0  ti_sysbios_knl_Queue_Object__PARAMS__C                                                    
    00872808  ti_sysbios_xdcruntime_GateThreadSupport_Object__PARAMS__C                                 
    00872820  xdc_runtime_GateNull_Object__PARAMS__C                                                    
    00872838  xdc_runtime_knl_GateThread_Object__PARAMS__C                                              
    00872850  _ZTS18CFilterPEngineCond                                                                  
    00872866  ti_sdo_ipc_MessageQ_Module__loggerDefined__C                                              
    0087287c  ti_sdo_ipc_GateMP_Module__diagsIncluded__C                                                
    00872880  _ZTS16CAOPEngineDriver                                                                    
    00872894  ti_sdo_ipc_GateMP_Module__diagsMask__C                                                    
    00872898  _ZTS16CCriticalSection                                                                    
    008728ac  ti_sdo_ipc_GateMP_Module__loggerFxn2__C                                                   
    008728b0  _ZTS16CFilterDetection                                                                    
    008728c4  ti_sdo_ipc_GateMP_Module__loggerFxn4__C                                                   
    008728c8  _ZTS13CErrorSupport                                                                       
    008728d8  _ZTV16CCriticalSection                                                                    
    008728e8  _ZTVN10__cxxabiv117__class_type_infoE                                                     
    008728f8  _ZTVN10__cxxabiv120__si_class_type_infoE                                                  
    00872908  _ZTVN10__cxxabiv121__vmi_class_type_infoE                                                 
    00872918  ti_sysbios_family_c64p_EventCombiner_EVTMASK__C                                           
    00872928  _ZTSSt9type_info                                                                          
    00872936  ti_sdo_ipc_Notify_Module__id__C                                                           
    00872938  _ZTI16CAOPEngineDriver                                                                    
    00872944  _ZTI16CFilterDetection                                                                    
    00872950  _ZTI18CFilterPEngineCond                                                                  
    0087295c  _ZTI21CFilterScriptExecuter                                                               
    00872968  _ZTI26CFilterImpedanceMeasurment                                                          
    00872974  _ZTI5CPipe                                                                                
    00872980  _ZTI7CFilter                                                                              
    0087298c  _ZTIN10__cxxabiv117__class_type_infoE                                                     
    00872998  _ZTIN10__cxxabiv120__si_class_type_infoE                                                  
    008729a4  _ZTIN10__cxxabiv121__vmi_class_type_infoE                                                 
    008729b0  xdc_runtime_Startup_firstFxns__A                                                          
    008729bc  ti_sdo_ipc_GateMP_Module__loggerObj__C                                                    
    008729c0  _ZTS9CAODriver                                                                            
    008729cc  ti_sdo_ipc_Ipc_A_addrNotCacheAligned__C                                                   
    008729d0  _ZTS9CAppContr                                                                            
    008729dc  ti_sdo_ipc_Ipc_A_addrNotInSharedRegion__C                                                 
    008729e0  _ZTS9CWatchDog                                                                            
    008729ec  ti_sdo_ipc_Ipc_A_internal__C                                                              
    008729f0  _ZTS7AFilter                                                                              
    008729fa  ti_sdo_ipc_Notify_numLines__C                                                             
    008729fc  ti_sdo_ipc_Ipc_A_invArgument__C                                                           
    00872a00  _ZTS7CFilter                                                                              
    00872a0a  ti_sdo_ipc_Notify_reservedEvents__C                                                       
    00872a0c  _ZTI13CErrorSupport                                                                       
    00872a14  _ZTI16CCriticalSection                                                                    
    00872a1c  _ZTI5IPipe                                                                                
    00872a24  _ZTI9CAODriver                                                                            
    00872a2c  _ZTI9CAppContr                                                                            
    00872a34  _ZTI9CWatchDog                                                                            
    00872a3c  _ZTISt9type_info                                                                          
    00872a44  ti_sysbios_knl_Idle_funcList__C                                                           
    00872a4c  xdc_runtime_Startup_firstFxns__C                                                          
    00872a54  xdc_runtime_Startup_lastFxns__C                                                           
    00872a5c  ti_sdo_ipc_Ipc_A_invParam__C                                                              
    00872a60  _ZTS5CPipe                                                                                
    00872a68  _ZTS5IPipe                                                                                
    00872a70  ti_sdo_ipc_Ipc_A_nullArgument__C                                                          
    00872a74  ti_sdo_ipc_Ipc_A_nullPointer__C                                                           
    00872a78  ti_sdo_ipc_Ipc_E_internal__C                                                              
    00872a7c  ti_sdo_ipc_Ipc_E_nameFailed__C                                                            
    00872a80  ti_sdo_ipc_Ipc_E_versionMismatch__C                                                       
    00872a84  ti_sdo_ipc_Ipc_Module__diagsEnabled__C                                                    
    00872a88  ti_sdo_ipc_Ipc_Module__diagsIncluded__C                                                   
    00872a8c  ti_sdo_ipc_Ipc_Module__diagsMask__C                                                       
    00872a90  ti_sdo_ipc_Ipc_numUserFxns__C                                                             
    00872a94  ti_sdo_ipc_Ipc_procSync__C                                                                
    00872a98  ti_sdo_ipc_Ipc_userFxns__C                                                                
    00872a9c  ti_sdo_ipc_ListMP_Module__diagsEnabled__C                                                 
    00872aa0  ti_sdo_ipc_ListMP_Module__diagsIncluded__C                                                
    00872aa4  ti_sdo_ipc_ListMP_Module__diagsMask__C                                                    
    00872aa8  ti_sdo_ipc_MessageQ_A_invalidMsg__C                                                       
    00872aac  ti_sdo_ipc_MessageQ_A_invalidObj__C                                                       
    00872ab0  ti_sdo_ipc_MessageQ_A_invalidQueueId__C                                                   
    00872ab4  ti_sdo_ipc_MessageQ_A_procIdInvalid__C                                                    
    00872ab8  ti_sdo_ipc_MessageQ_A_unregisteredTransport__C                                            
    00872abc  ti_sdo_ipc_MessageQ_Instance_State_highList__O                                            
    00872ac0  ti_sdo_ipc_MessageQ_Instance_State_normalList__O                                          
    00872ac4  ti_sdo_ipc_MessageQ_LM_putLocal__C                                                        
    00872ac8  ti_sdo_ipc_MessageQ_Module__diagsEnabled__C                                               
    00872acc  ti_sdo_ipc_MessageQ_Module__diagsIncluded__C                                              
    00872ad0  ti_sdo_ipc_MessageQ_Module__diagsMask__C                                                  
    00872ad4  ti_sdo_ipc_MessageQ_Module__loggerFxn4__C                                                 
    00872ad8  ti_sdo_ipc_MessageQ_Module__loggerObj__C                                                  
    00872adc  ti_sdo_ipc_MessageQ_Object__count__C                                                      
    00872ae0  ti_sdo_ipc_Notify_A_alreadyRegistered__C                                                  
    00872ae4  ti_sdo_ipc_Notify_A_internal__C                                                           
    00872ae8  ti_sdo_ipc_Notify_A_invArgument__C                                                        
    00872aec  ti_sdo_ipc_Notify_A_notRegistered__C                                                      
    00872af0  ti_sdo_ipc_Notify_A_reservedEvent__C                                                      
    00872af4  ti_sdo_ipc_Notify_Module__diagsEnabled__C                                                 
    00872af8  ti_sdo_ipc_Notify_Module__diagsIncluded__C                                                
    00872afc  ti_sdo_ipc_Notify_Module__diagsMask__C                                                    
    00872b00  ti_sdo_ipc_Notify_Module__gateObj__C                                                      
    00872b04  ti_sdo_ipc_Notify_Object__heap__C                                                         
    00872b08  ti_sdo_ipc_Notify_numEvents__C                                                            
    00872b0c  ti_sdo_ipc_Notify_sendEventPollCount__C                                                   
    00872b10  ti_sdo_ipc_SharedRegion_A_addrOutOfRange__C                                               
    00872b14  ti_sdo_ipc_SharedRegion_A_idTooLarge__C                                                   
    00872b18  ti_sdo_ipc_SharedRegion_A_noHeap__C                                                       
    00872b1c  ti_sdo_ipc_SharedRegion_A_region0Invalid__C                                               
    00872b20  ti_sdo_ipc_SharedRegion_A_regionInvalid__C                                                
    00872b24  ti_sdo_ipc_SharedRegion_A_reserveTooMuch__C                                               
    00872b28  ti_sdo_ipc_SharedRegion_INVALIDSRPTR__C                                                   
    00872b2c  ti_sdo_ipc_SharedRegion_Module__diagsEnabled__C                                           
    00872b30  ti_sdo_ipc_SharedRegion_Module__diagsIncluded__C                                          
    00872b34  ti_sdo_ipc_SharedRegion_Module__diagsMask__C                                              
    00872b38  ti_sdo_ipc_SharedRegion_numOffsetBits__C                                                  
    00872b3c  ti_sdo_ipc_SharedRegion_offsetMask__C                                                     
    00872b40  ti_sdo_ipc_family_c647x_Interrupt_INTERDSPINT__C                                          
    00872b44  ti_sdo_ipc_family_c647x_Interrupt_IPCAR0__C                                               
    00872b48  ti_sdo_ipc_family_c647x_Interrupt_IPCGR0__C                                               
    00872b4c  ti_sdo_ipc_family_c647x_Interrupt_KICK0__C                                                
    00872b50  ti_sdo_ipc_family_c647x_Interrupt_KICK1__C                                                
    00872b54  ti_sdo_ipc_family_c647x_MultiProcSetup_A_invalidProcessor__C                              
    00872b58  ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsEnabled__C                            
    00872b5c  ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsIncluded__C                           
    00872b60  ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsMask__C                               
    00872b64  ti_sdo_ipc_family_c647x_MultiProcSetup_procMap__C                                         
    00872b68  ti_sdo_ipc_family_c647x_MultiProcSetup_procMap__A                                         
    00872b6c  ti_sdo_ipc_family_c647x_NotifySetup_dspIntVectId__C                                       
    00872b70  ti_sdo_ipc_gates_GateHWSem_A_invSemNum__C                                                 
    00872b74  ti_sdo_ipc_gates_GateHWSem_Module__diagsEnabled__C                                        
    00872b78  ti_sdo_ipc_gates_GateHWSem_Module__diagsIncluded__C                                       
    00872b7c  ti_sdo_ipc_gates_GateHWSem_Module__diagsMask__C                                           
    00872b80  ti_sdo_ipc_gates_GateHWSem_baseAddr__C                                                    
    00872b84  ti_sdo_ipc_gates_GateHWSem_numSems__C                                                     
    00872b88  ti_sdo_ipc_gates_GateHWSem_reservedMaskArr__A                                             
    00872b8c  ti_sdo_ipc_gates_GateHWSem_reservedMaskArr__C                                             
    00872b90  ti_sdo_ipc_gates_GateMPSupportNull_A_invalidAction__C                                     
    00872b94  ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsEnabled__C                                
    00872b98  ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsIncluded__C                               
    00872b9c  ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsMask__C                                   
    00872ba0  ti_sdo_ipc_gates_GateMPSupportNull_action__C                                              
    00872ba4  ti_sdo_ipc_gates_GatePeterson_E_gateRemotelyOpened__C                                     
    00872ba8  ti_sdo_ipc_gates_GatePeterson_Module__diagsEnabled__C                                     
    00872bac  ti_sdo_ipc_gates_GatePeterson_Module__diagsIncluded__C                                    
    00872bb0  ti_sdo_ipc_gates_GatePeterson_Module__diagsMask__C                                        
    00872bb4  ti_sdo_ipc_gates_GatePeterson_numInstances__C                                             
    00872bb8  ti_sdo_ipc_heaps_HeapMemMP_A_align__C                                                     
    00872bbc  ti_sdo_ipc_heaps_HeapMemMP_A_heapSize__C                                                  
    00872bc0  ti_sdo_ipc_heaps_HeapMemMP_A_invalidFree__C                                               
    00872bc4  ti_sdo_ipc_heaps_HeapMemMP_A_zeroBlock__C                                                 
    00872bc8  ti_sdo_ipc_heaps_HeapMemMP_E_memory__C                                                    
    00872bcc  ti_sdo_ipc_heaps_HeapMemMP_Module__diagsEnabled__C                                        
    00872bd0  ti_sdo_ipc_heaps_HeapMemMP_Module__diagsIncluded__C                                       
    00872bd4  ti_sdo_ipc_heaps_HeapMemMP_Module__diagsMask__C                                           
    00872bd8  ti_sdo_ipc_interfaces_IGateMPSupport_Interface__BASE__C                                   
    00872bdc  ti_sdo_ipc_interfaces_IMessageQTransport_Interface__BASE__C                               
    00872be0  ti_sdo_ipc_interfaces_INetworkTransport_Interface__BASE__C                                
    00872be4  ti_sdo_ipc_interfaces_INotifyDriver_Interface__BASE__C                                    
    00872be8  ti_sdo_ipc_interfaces_ITransport_Interface__BASE__C                                       
    00872bec  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsEnabled__C                          
    00872bf0  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsIncluded__C                         
    00872bf4  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsMask__C                             
    00872bf8  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__heap__C                                  
    00872bfc  ti_sdo_ipc_nsremote_NameServerRemoteNotify_A_invalidValueLen__C                           
    00872c00  ti_sdo_ipc_nsremote_NameServerRemoteNotify_A_messageSize__C                               
    00872c04  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_semMultiBlock__O                
    00872c08  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_semRemoteWait__O                
    00872c0c  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_swiRequest__O                   
    00872c10  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_swiResponse__O                  
    00872c14  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsEnabled__C                        
    00872c18  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsIncluded__C                       
    00872c1c  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsMask__C                           
    00872c20  ti_sdo_ipc_nsremote_NameServerRemoteNotify_notifyEventId__C                               
    00872c24  ti_sdo_ipc_nsremote_NameServerRemoteNotify_timeout__C                                     
    00872c28  ti_sdo_ipc_transports_TransportShmSetup_priority__C                                       
    00872c2c  ti_sdo_ipc_transports_TransportShm_Instance_State_swiObj__O                               
    00872c30  ti_sdo_ipc_transports_TransportShm_Module__diagsEnabled__C                                
    00872c34  ti_sdo_ipc_transports_TransportShm_Module__diagsIncluded__C                               
    00872c38  ti_sdo_ipc_transports_TransportShm_Module__diagsMask__C                                   
    00872c3c  ti_sdo_utils_INameServerRemote_Interface__BASE__C                                         
    00872c40  ti_sdo_utils_MultiProc_A_invalidMultiProcId__C                                            
    00872c44  ti_sdo_utils_MultiProc_Module__diagsEnabled__C                                            
    00872c48  ti_sdo_utils_MultiProc_Module__diagsIncluded__C                                           
    00872c4c  ti_sdo_utils_MultiProc_Module__diagsMask__C                                               
    00872c50  ti_sdo_utils_MultiProc_procAddrMode__C                                                    
    00872c54  ti_sdo_utils_NameServer_A_invArgument__C                                                  
    00872c58  ti_sdo_utils_NameServer_A_invalidLen__C                                                   
    00872c5c  ti_sdo_utils_NameServer_E_entryExists__C                                                  
    00872c60  ti_sdo_utils_NameServer_E_maxReached__C                                                   
    00872c64  ti_sdo_utils_NameServer_Instance_State_freeList__O                                        
    00872c68  ti_sdo_utils_NameServer_Instance_State_nameList__O                                        
    00872c6c  ti_sdo_utils_NameServer_Module__diagsEnabled__C                                           
    00872c70  ti_sdo_utils_NameServer_Module__diagsIncluded__C                                          
    00872c74  ti_sdo_utils_NameServer_Module__diagsMask__C                                              
    00872c78  ti_sdo_utils_NameServer_Object__count__C                                                  
    00872c7c  ti_sysbios_family_c64p_EventCombiner_EVTRegs__C                                           
    00872c80  ti_sysbios_family_c64p_Exception_E_exceptionMax__C                                        
    00872c84  ti_sysbios_family_c64p_Exception_exceptionHook__C                                         
    00872c88  ti_sysbios_family_c64p_Exception_externalHook__C                                          
    00872c8c  ti_sysbios_family_c64p_Exception_internalHook__C                                          
    00872c90  ti_sysbios_family_c64p_Exception_nmiHook__C                                               
    00872c94  ti_sysbios_family_c64p_Hwi_E_alreadyDefined__C                                            
    00872c98  ti_sysbios_family_c64p_Hwi_E_handleNotFound__C                                            
    00872c9c  ti_sysbios_family_c64p_Hwi_E_invalidIntNum__C                                             
    00872ca0  ti_sysbios_family_c64p_Hwi_INTRMUX1Address__C                                             
    00872ca4  ti_sysbios_family_c64p_Hwi_LD_end__C                                                      
    00872ca8  ti_sysbios_family_c64p_Hwi_LM_begin__C                                                    
    00872cac  ti_sysbios_family_c64p_Hwi_Module__diagsEnabled__C                                        
    00872cb0  ti_sysbios_family_c64p_Hwi_Module__diagsIncluded__C                                       
    00872cb4  ti_sysbios_family_c64p_Hwi_Module__diagsMask__C                                           
    00872cb8  ti_sysbios_family_c64p_Hwi_Module__loggerFxn1__C                                          
    00872cbc  ti_sysbios_family_c64p_Hwi_Module__loggerFxn8__C                                          
    00872cc0  ti_sysbios_family_c64p_Hwi_Module__loggerObj__C                                           
    00872cc4  ti_sysbios_family_c66_Cache_E_invalidL1CacheSize__C                                       
    00872cc8  ti_sysbios_family_c66_Cache_E_invalidL2CacheSize__C                                       
    00872ccc  ti_sysbios_family_c66_Cache_atomicBlockSize__C                                            
    00872cd0  ti_sysbios_gates_GateMutexPri_A_badContext__C                                             
    00872cd4  ti_sysbios_gates_GateMutexPri_A_enterTaskDisabled__C                                      
    00872cd8  ti_sysbios_gates_GateMutexPri_Instance_State_pendQ__O                                     
    00872cdc  ti_sysbios_gates_GateMutexPri_Module__diagsEnabled__C                                     
    00872ce0  ti_sysbios_gates_GateMutexPri_Module__diagsIncluded__C                                    
    00872ce4  ti_sysbios_gates_GateMutexPri_Module__diagsMask__C                                        
    00872ce8  ti_sysbios_gates_GateMutex_A_badContext__C                                                
    00872cec  ti_sysbios_gates_GateMutex_Instance_State_sem__O                                          
    00872cf0  ti_sysbios_gates_GateMutex_Module__diagsEnabled__C                                        
    00872cf4  ti_sysbios_gates_GateMutex_Module__diagsIncluded__C                                       
    00872cf8  ti_sysbios_gates_GateMutex_Module__diagsMask__C                                           
    00872cfc  ti_sysbios_gates_GateSwi_A_badContext__C                                                  
    00872d00  ti_sysbios_gates_GateSwi_Module__diagsEnabled__C                                          
    00872d04  ti_sysbios_gates_GateSwi_Module__diagsIncluded__C                                         
    00872d08  ti_sysbios_gates_GateSwi_Module__diagsMask__C                                             
    00872d0c  ti_sysbios_hal_Hwi_E_stackOverflow__C                                                     
    00872d10  ti_sysbios_heaps_HeapBuf_Instance_State_freeList__O                                       
    00872d14  ti_sysbios_heaps_HeapBuf_Object__count__C                                                 
    00872d18  ti_sysbios_heaps_HeapBuf_numConstructedHeaps__C                                           
    00872d1c  ti_sysbios_heaps_HeapMem_A_align__C                                                       
    00872d20  ti_sysbios_heaps_HeapMem_A_heapSize__C                                                    
    00872d24  ti_sysbios_heaps_HeapMem_A_invalidFree__C                                                 
    00872d28  ti_sysbios_heaps_HeapMem_A_zeroBlock__C                                                   
    00872d2c  ti_sysbios_heaps_HeapMem_E_memory__C                                                      
    00872d30  ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C                                          
    00872d34  ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C                                         
    00872d38  ti_sysbios_heaps_HeapMem_Module__diagsMask__C                                             
    00872d3c  ti_sysbios_heaps_HeapMem_Module__gateObj__C                                               
    00872d40  ti_sysbios_heaps_HeapMem_Object__count__C                                                 
    00872d44  ti_sysbios_heaps_HeapMem_reqAlign__C                                                      
    00872d48  ti_sysbios_knl_Clock_LM_begin__C                                                          
    00872d4c  ti_sysbios_knl_Clock_LM_tick__C                                                           
    00872d50  ti_sysbios_knl_Clock_LW_delayed__C                                                        
    00872d54  ti_sysbios_knl_Clock_Module_State_clockQ__O                                               
    00872d58  ti_sysbios_knl_Clock_Module__diagsEnabled__C                                              
    00872d5c  ti_sysbios_knl_Clock_Module__diagsIncluded__C                                             
    00872d60  ti_sysbios_knl_Clock_Module__diagsMask__C                                                 
    00872d64  ti_sysbios_knl_Clock_Module__loggerFxn1__C                                                
    00872d68  ti_sysbios_knl_Clock_Module__loggerFxn2__C                                                
    00872d6c  ti_sysbios_knl_Clock_Module__loggerObj__C                                                 
    00872d70  ti_sysbios_knl_Idle_funcList__A                                                           
    00872d74  ti_sysbios_knl_Semaphore_A_badContext__C                                                  
    00872d78  ti_sysbios_knl_Semaphore_A_noEvents__C                                                    
    00872d7c  ti_sysbios_knl_Semaphore_A_overflow__C                                                    
    00872d80  ti_sysbios_knl_Semaphore_A_pendTaskDisabled__C                                            
    00872d84  ti_sysbios_knl_Semaphore_Instance_State_pendQ__O                                          
    00872d88  ti_sysbios_knl_Semaphore_LM_pend__C                                                       
    00872d8c  ti_sysbios_knl_Semaphore_LM_post__C                                                       
    00872d90  ti_sysbios_knl_Semaphore_Module__diagsEnabled__C                                          
    00872d94  ti_sysbios_knl_Semaphore_Module__diagsIncluded__C                                         
    00872d98  ti_sysbios_knl_Semaphore_Module__diagsMask__C                                             
    00872d9c  ti_sysbios_knl_Semaphore_Module__loggerFxn2__C                                            
    00872da0  ti_sysbios_knl_Semaphore_Module__loggerFxn4__C                                            
    00872da4  ti_sysbios_knl_Semaphore_Module__loggerObj__C                                             
    00872da8  ti_sysbios_knl_Swi_A_badPriority__C                                                       
    00872dac  ti_sysbios_knl_Swi_LD_end__C                                                              
    00872db0  ti_sysbios_knl_Swi_LM_begin__C                                                            
    00872db4  ti_sysbios_knl_Swi_LM_post__C                                                             
    00872db8  ti_sysbios_knl_Swi_Module__diagsEnabled__C                                                
    00872dbc  ti_sysbios_knl_Swi_Module__diagsIncluded__C                                               
    00872dc0  ti_sysbios_knl_Swi_Module__diagsMask__C                                                   
    00872dc4  ti_sysbios_knl_Swi_Module__loggerFxn1__C                                                  
    00872dc8  ti_sysbios_knl_Swi_Module__loggerFxn4__C                                                  
    00872dcc  ti_sysbios_knl_Swi_Module__loggerObj__C                                                   
    00872dd0  ti_sysbios_knl_Swi_Object__count__C                                                       
    00872dd4  ti_sysbios_knl_Task_A_badPriority__C                                                      
    00872dd8  ti_sysbios_knl_Task_E_spOutOfBounds__C                                                    
    00872ddc  ti_sysbios_knl_Task_E_stackOverflow__C                                                    
    00872de0  ti_sysbios_knl_Task_LD_block__C                                                           
    00872de4  ti_sysbios_knl_Task_LD_exit__C                                                            
    00872de8  ti_sysbios_knl_Task_LD_ready__C                                                           
    00872dec  ti_sysbios_knl_Task_LM_setPri__C                                                          
    00872df0  ti_sysbios_knl_Task_LM_switch__C                                                          
    00872df4  ti_sysbios_knl_Task_Module_State_inactiveQ__O                                             
    00872df8  ti_sysbios_knl_Task_Module__diagsEnabled__C                                               
    00872dfc  ti_sysbios_knl_Task_Module__diagsIncluded__C                                              
    00872e00  ti_sysbios_knl_Task_Module__diagsMask__C                                                  
    00872e04  ti_sysbios_knl_Task_Module__loggerFxn2__C                                                 
    00872e08  ti_sysbios_knl_Task_Module__loggerFxn4__C                                                 
    00872e0c  ti_sysbios_knl_Task_Module__loggerObj__C                                                  
    00872e10  ti_sysbios_knl_Task_Object__count__C                                                      
    00872e14  ti_sysbios_knl_Task_allBlockedFunc__C                                                     
    00872e18  ti_sysbios_knl_Task_numConstructedTasks__C                                                
    00872e1c  ti_sysbios_timers_timer64_Timer_A_notAvailable__C                                         
    00872e20  ti_sysbios_timers_timer64_Timer_E_cannotSupport__C                                        
    00872e24  ti_sysbios_timers_timer64_Timer_Module__diagsEnabled__C                                   
    00872e28  ti_sysbios_timers_timer64_Timer_Module__diagsIncluded__C                                  
    00872e2c  ti_sysbios_timers_timer64_Timer_Module__diagsMask__C                                      
    00872e30  ti_sysbios_timers_timer64_Timer_anyMaskHigh__C                                            
    00872e34  ti_sysbios_timers_timer64_Timer_anyMask__C                                                
    00872e38  ti_sysbios_timers_timer64_Timer_freqDivisor__C                                            
    00872e3c  ti_sysbios_timers_timer64_Timer_numLocalTimers__C                                         
    00872e40  ti_sysbios_timers_timer64_Timer_numTimerDevices__C                                        
    00872e44  ti_sysbios_xdcruntime_GateThreadSupport_Instance_State_gate__O                            
    00872e48  xdc_runtime_Assert_E_assertFailed__C                                                      
    00872e4c  xdc_runtime_Core_A_initializedParams__C                                                   
    00872e50  xdc_runtime_Core_Module__diagsEnabled__C                                                  
    00872e54  xdc_runtime_Core_Module__diagsIncluded__C                                                 
    00872e58  xdc_runtime_Core_Module__diagsMask__C                                                     
    00872e5c  xdc_runtime_Error_E_memory__C                                                             
    00872e60  xdc_runtime_Error_Module__diagsEnabled__C                                                 
    00872e64  xdc_runtime_Error_Module__diagsIncluded__C                                                
    00872e68  xdc_runtime_Error_Module__diagsMask__C                                                    
    00872e6c  xdc_runtime_Error_Module__loggerFxn8__C                                                   
    00872e70  xdc_runtime_Error_Module__loggerObj__C                                                    
    00872e74  xdc_runtime_Error_policyFxn__C                                                            
    00872e78  xdc_runtime_Error_policy__C                                                               
    00872e7c  xdc_runtime_Error_raiseHook__C                                                            
    00872e80  xdc_runtime_IGateProvider_Interface__BASE__C                                              
    00872e84  xdc_runtime_IHeap_Interface__BASE__C                                                      
    00872e88  xdc_runtime_IModule_Interface__BASE__C                                                    
    00872e8c  xdc_runtime_Log_L_error__C                                                                
    00872e90  xdc_runtime_Memory_defaultHeapInstance__C                                                 
    00872e94  xdc_runtime_Startup_execImpl__C                                                           
    00872e98  xdc_runtime_Startup_maxPasses__C                                                          
    00872e9c  xdc_runtime_Startup_sfxnRts__C                                                            
    00872ea0  xdc_runtime_Startup_sfxnTab__C                                                            
    00872ea4  xdc_runtime_SysMin_bufSize__C                                                             
    00872ea8  xdc_runtime_SysMin_outputFunc__C                                                          
    00872eac  xdc_runtime_System_Module__gateObj__C                                                     
    00872eb0  xdc_runtime_System_abortFxn__C                                                            
    00872eb4  xdc_runtime_System_exitFxn__C                                                             
    00872eb8  xdc_runtime_System_extendFxn__C                                                           
    00872ebc  xdc_runtime_System_maxAtexitHandlers__C                                                   
    00872ec0  xdc_runtime_Text_charTab__C                                                               
    00872ec4  xdc_runtime_Text_nameEmpty__C                                                             
    00872ec8  xdc_runtime_Text_nameStatic__C                                                            
    00872ecc  xdc_runtime_Text_nameUnknown__C                                                           
    00872ed0  xdc_runtime_Text_nodeTab__C                                                               
    00872ed4  xdc_runtime_Text_visitRopeFxn__C                                                          
    00872ed8  ti_sdo_ipc_SharedRegion_Module__id__C                                                     
    00872eda  ti_sdo_ipc_SharedRegion_numEntries__C                                                     
    00872edc  ti_sdo_ipc_SharedRegion_translate__C                                                      
    00872ede  ti_sdo_ipc_family_c647x_Interrupt_enableKick__C                                           
    00872ee0  ti_sdo_ipc_family_c647x_MultiProcSetup_Module__id__C                                      
    00872ee2  ti_sdo_ipc_gates_GateHWSem_Module__id__C                                                  
    00872ee4  ti_sdo_ipc_gates_GateMPSupportNull_Module__id__C                                          
    00872ee6  ti_sdo_ipc_gates_GatePeterson_Module__id__C                                               
    00872ee8  ti_sdo_ipc_heaps_HeapMemMP_Module__id__C                                                  
    00872eea  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__id__C                                    
    00872eec  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__id__C                                  
    00872eee  ti_sdo_ipc_transports_TransportShm_Module__id__C                                          
    00872ef0  ti_sdo_ipc_transports_TransportShm_notifyEventId__C                                       
    00872ef2  ti_sdo_utils_MultiProc_Module__id__C                                                      
    00872ef4  ti_sdo_utils_MultiProc_numProcessors__C                                                   
    00872ef6  ti_sdo_utils_MultiProc_numProcsInCluster__C                                               
    00872ef8  ti_sdo_utils_NameServer_Module__id__C                                                     
    00872efa  ti_sysbios_family_c64p_Exception_Module__id__C                                            
    00872efc  ti_sysbios_family_c64p_Exception_useInternalBuffer__C                                     
    00872efe  ti_sysbios_family_c64p_Hwi_Module__id__C                                                  
    00872f00  ti_sysbios_family_c64p_Hwi_Module__loggerDefined__C                                       
    00872f02  ti_sysbios_family_c66_Cache_Module__id__C                                                 
    00872f04  ti_sysbios_family_c66_Cache_registerRTSSynch__C                                           
    00872f06  ti_sysbios_gates_GateMutexPri_Module__id__C                                               
    00872f08  ti_sysbios_gates_GateMutex_Module__id__C                                                  
    00872f0a  ti_sysbios_gates_GateSwi_Module__id__C                                                    
    00872f0c  ti_sysbios_hal_Hwi_Module__id__C                                                          
    00872f0e  ti_sysbios_heaps_HeapMem_Module__id__C                                                    
    00872f10  ti_sysbios_knl_Clock_Module__id__C                                                        
    00872f12  ti_sysbios_knl_Clock_Module__loggerDefined__C                                             
    00872f14  ti_sysbios_knl_Semaphore_Module__id__C                                                    
    00872f16  ti_sysbios_knl_Semaphore_Module__loggerDefined__C                                         
    00872f18  ti_sysbios_knl_Swi_Module__id__C                                                          
    00872f1a  ti_sysbios_knl_Swi_Module__loggerDefined__C                                               
    00872f1c  ti_sysbios_knl_Task_Module__id__C                                                         
    00872f1e  ti_sysbios_knl_Task_Module__loggerDefined__C                                              
    00872f20  ti_sysbios_timers_timer64_Timer_Module__id__C                                             
    00872f22  ti_sysbios_timers_timer64_Timer_startupNeeded__C                                          
    00872f24  ti_sysbios_timers_timer64_Timer_useTimer64pRegMap__C                                      
    00872f26  xdc_runtime_Core_Module__id__C                                                            
    00872f28  xdc_runtime_Error_Module__loggerDefined__C                                                
    00872f2a  xdc_runtime_Error_maxDepth__C                                                             
    00872f2c  xdc_runtime_Memory_Module__id__C                                                          
    00872f2e  xdc_runtime_SysMin_flushAtExit__C                                                         
    00872f30  xdc_runtime_Text_charCnt__C                                                               
    00872f32  xdc_runtime_Text_isLoaded__C                                                              
    00872f34  xdc_runtime_Text_registryModsLastId__C                                                    
    00872f36  xdc_runtime_Text_unnamedModsLastId__C                                                     
    00872f38  ti_sdo_ipc_GateMP_Module_State_0_remoteCustom1Gates__A                                    
    00873738  _ftable                                                                                   
    00873918  ti_sysbios_timers_timer64_Timer_Module_State_0_device__A                                  
    00873a98  ti_sysbios_knl_Swi_Object__table__V                                                       
    00873be8  ti_sdo_utils_NameServer_Object__table__V                                                  
    00873d14  _lock                                                                                     
    00873d18  ti_sysbios_knl_Task_Object__table__V                                                      
    00873dd0  _stream                                                                                   
    00873e70  ti_sdo_ipc_SharedRegion_Module_State_0_regions__A                                         
    00873f00  CONST_TABLE_FMA                                                                           
    00873f80  CONST_TABLE_HEADSTAGE                                                                     
    00874000  ti_sdo_ipc_GateMP_Module_State_0_remoteSystemGates__A                                     
    00874080  ti_sysbios_knl_Swi_Module_State_0_readyQ__A                                               
    00874100  ti_sysbios_knl_Task_Module_State_0_readyQ__A                                              
    00874180  ti_sysbios_timers_timer64_Timer_Module_State_0_gctrl__A                                   
    00874200  ti_sysbios_timers_timer64_Timer_Module_State_0_handles__A                                 
    00874280  ti_sysbios_timers_timer64_Timer_Module_State_0_intFreqs__A                                
    00874300  _device                                                                                   
    00874378  ti_sysbios_family_c64p_Hwi_Module__state__V                                               
    008743e4  ti_sdo_ipc_MessageQ_Module__state__V                                                      
    0087444c  ti_sdo_ipc_GateMP_Module__state__V                                                        
    0087449c  _unlock                                                                                   
    008744a0  ti_sysbios_timers_timer64_Timer_Object__table__V                                          
    008744f0  ti_sysbios_knl_Task_Module__state__V                                                      
    00874538  ti_sysbios_gates_GateMutex_Object__table__V                                               
    00874578  ti_sysbios_family_c64p_Exception_Module__state__V                                         
    008745a8  ti_sysbios_knl_Clock_Module__state__V                                                     
    008745d4  __TI_ft_end                                                                               
    008745d8  ti_sdo_ipc_Ipc_Module_State_0_procEntry__A                                                
    00874600  ti_sysbios_BIOS_Module__state__V                                                          
    00874628  hQDMAChannel                                                                              
    00874648  ti_sdo_ipc_MessageQ_Module_State_0_heaps__A                                               
    00874668  xdc_runtime_Error_IgnoreBlock                                                             
    00874688  xdc_runtime_System_Module_State_0_atexitHandlers__A                                       
    008746a8  ti_sysbios_knl_Swi_Module__state__V                                                       
    008746c4  __errno                                                                                   
    008746c4  errno                                                                                     
    008746c8  ti_sysbios_family_c64p_Hwi_Object__table__V                                               
    008746e0  ti_sysbios_gates_GateMutexPri_Object__table__V                                            
    008746f8  ti_sysbios_heaps_HeapMem_Object__table__V                                                 
    00874710  ti_sysbios_knl_Semaphore_Object__table__V                                                 
    00874728  ti_sysbios_timers_timer64_Timer_Module__state__V                                          
    00874740  ti_sdo_ipc_MessageQ_Module_State_0_transports__A                                          
    00874750  ti_sysbios_gates_GateAll_Object__table__V                                                 
    00874760  __TI_cleanup_ptr                                                                          
    00874764  __TI_dtors_ptr                                                                            
    00874768  __TI_enable_exit_profile_output                                                           
    0087476c  ti_sdo_ipc_Ipc_Module__state__V                                                           
    00874778  ti_sdo_ipc_family_c647x_Interrupt_Module__state__V                                        
    00874784  ti_sdo_utils_NameServer_Module__state__V                                                  
    00874790  ti_sysbios_gates_GateSwi_Object__table__V                                                 
    0087479c  xdc_runtime_SysMin_Module__state__V                                                       
    008747a8  ti_sdo_ipc_GateMP_Module__root__V                                                         
    008747b0  ti_sdo_ipc_ListMP_Module__root__V                                                         
    008747b8  ti_sdo_ipc_Notify_Module_State_0_notifyHandles__A                                         
    008747c0  ti_sdo_ipc_Notify_Module__root__V                                                         
    008747c8  ti_sdo_ipc_Notify_Module__state__V                                                        
    008747d0  ti_sdo_ipc_family_c647x_Interrupt_Module_State_0_args__A                                  
    008747d8  ti_sdo_ipc_gates_GateHWSem_Module__root__V                                                
    008747e0  ti_sdo_ipc_gates_GateMPSupportNull_Module__root__V                                        
    008747e8  ti_sdo_ipc_gates_GatePeterson_Module__root__V                                             
    008747f0  ti_sdo_ipc_heaps_HeapMemMP_Module__root__V                                                
    008747f8  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__root__V                                  
    00874800  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__root__V                                
    00874808  ti_sdo_ipc_transports_TransportShmSetup_Module_State_0_handles__A                         
    00874810  ti_sdo_ipc_transports_TransportShm_Module__root__V                                        
    00874818  ti_sdo_utils_List_Module__root__V                                                         
    00874820  ti_sdo_utils_MultiProc_Module__state__V                                                   
    00874828  ti_sdo_utils_NameServer_Module_State_0_nsRemoteHandle__A                                  
    00874830  ti_sdo_utils_NameServer_Module__root__V                                                   
    00874838  ti_sysbios_family_c64p_Hwi_Module__root__V                                                
    00874840  ti_sysbios_gates_GateAll_Module__root__V                                                  
    00874848  ti_sysbios_gates_GateHwi_Module__root__V                                                  
    00874850  ti_sysbios_gates_GateMutexPri_Module__root__V                                             
    00874858  ti_sysbios_gates_GateMutex_Module__root__V                                                
    00874860  ti_sysbios_gates_GateSwi_Module__root__V                                                  
    00874868  ti_sysbios_hal_Hwi_Object__table__V                                                       
    00874870  ti_sysbios_heaps_HeapMem_Module__root__V                                                  
    00874878  ti_sysbios_knl_Queue_Module__root__V                                                      
    00874880  ti_sysbios_knl_Semaphore_Module__root__V                                                  
    00874888  ti_sysbios_knl_Swi_Module__root__V                                                        
    00874890  ti_sysbios_xdcruntime_GateThreadSupport_Module__root__V                                   
    00874898  xdc_runtime_GateNull_Module__root__V                                                      
    008748a0  xdc_runtime_Registry_Module__state__V                                                     
    008748a8  xdc_runtime_Startup_Module__state__V                                                      
    008748b0  xdc_runtime_System_Module__state__V                                                       
    008748b8  xdc_runtime_knl_GateThread_Module__root__V                                                
    008748c0  _new_handler                                                                              
    008748c4  ti_sdo_ipc_ListMP_Module__state__V                                                        
    008748c8  ti_sdo_ipc_Notify_Module_State_0_notifyHandles_0__A                                       
    008748cc  ti_sdo_ipc_SharedRegion_Module__state__V                                                  
    008748d0  ti_sdo_ipc_Notify_Module_State_0_notifyHandles_1__A                                       
    008748d4  ti_sdo_ipc_heaps_HeapMemMP_Module__state__V                                               
    008748d8  ti_sdo_ipc_transports_TransportShmSetup_Module__state__V                                  
    008748dc  ti_sysbios_heaps_HeapBuf_Module__state__V                                                 
    008748e0  ti_sdo_utils_MultiProc_Module_State_0_clusterProcList__A                                  
    008748e4  xdc_runtime_Memory_Module__state__V                                                       
    008748e8  ti_sysbios_gates_GateHwi_Object__table__V                                                 
    008748ec  xdc_runtime_Error_Module__state__V                                                        
    008748f0  ti_sysbios_knl_Task_Module_State_0_idleTask__A                                            
    008748f8  xdc_runtime_GateNull_Object__table__V                                                     
    00874900  _stack                                                                                    
    00875900  __TI_STACK_END                                                                            
    00875eb0  __CIOBUF_                                                                                 
    00875fd0  __TI_INITARRAY_Base                                                                       
    00875fd8  __TI_INITARRAY_Limit                                                                      
    00876000  ti_sysbios_family_c64p_Hwi0                                                               
    00876000  ti_sysbios_family_c64p_Hwi_int0                                                           
    00876020  ti_sysbios_family_c64p_Hwi_int1                                                           
    00876040  ti_sysbios_family_c64p_Hwi_int2                                                           
    00876060  ti_sysbios_family_c64p_Hwi_int3                                                           
    00876080  ti_sysbios_family_c64p_Hwi_int4                                                           
    008760a0  ti_sysbios_family_c64p_Hwi_int5                                                           
    008760c0  ti_sysbios_family_c64p_Hwi_int6                                                           
    008760e0  ti_sysbios_family_c64p_Hwi_int7                                                           
    00876100  ti_sysbios_family_c64p_Hwi_int8                                                           
    00876120  ti_sysbios_family_c64p_Hwi_int9                                                           
    00876140  ti_sysbios_family_c64p_Hwi_int10                                                          
    00876160  ti_sysbios_family_c64p_Hwi_int11                                                          
    00876180  ti_sysbios_family_c64p_Hwi_int12                                                          
    008761a0  ti_sysbios_family_c64p_Hwi_int13                                                          
    008761c0  ti_sysbios_family_c64p_Hwi_int14                                                          
    008761e0  ti_sysbios_family_c64p_Hwi_int15                                                          
    00876200  AODACPIP                                                                                  
    00876200  __TI_STATIC_BASE                                                                          
    00876204  Ipc_sr0MemorySetup                                                                        
    00876208  PE_sort                                                                                   
    0087620c  _ZN7DDR3Mem10writeIndexE                                                                  
    00876210  _ZN7DDR3Mem9coreIndexE                                                                    
    00876214  __dso_handle                                                                              
    00876218  edmaContext                                                                               
    0087621c  received_message                                                                          
    00876220  g_hEDMA3Module                                                                            
    00876224  GPIO_DIR_REG                                                                              
    00876228  GPIO_OUT_REG                                                                              
    0087622c  GPIO_SET_REG                                                                              
    00876230  GPIO_CLR_REG                                                                              
    00876234  TCPIPStatusStreamHeader                                                                   
    00876238  sTCPIPBuf                                                                                 
    0087623c  sTMBuf                                                                                    
    00876240  tcpipinBuff                                                                               
    00876244  tcpipoutBuff                                                                              
    00876248  DDR2TMInBuff                                                                              
    0087624c  DDR2TMOutBuff                                                                             
    00876250  buffEndAddress                                                                            
    00876254  sTMBufState                                                                               
    00876258  TMInBuff                                                                                  
    0087625c  TMOutBuff                                                                                 
    00876260  insideBios                                                                                
    00876264  bEnableHPFilteration                                                                      
    00876268  g_LfpSamplingRate                                                                         
    0087626c  g_SpkSamplingRate                                                                         
    00876270  insideLoop                                                                                
    00876274  msCounter                                                                                 
    00876276  msCounter_50Usec                                                                          
    00876278  Timestamp                                                                                 
    0087627c  runI                                                                                      
    00876288  g_nPEMissed                                                                               
    0087628c  g_pMemoryManager                                                                          
    00876290  g_nLastWDCValue                                                                           
    00876294  g_nLastTimeFormatCalled                                                                   
    00876298  PE_RcvIsrCount                                                                            
    0087629c  PE_SortIsrCount                                                                           
    008762a0  PE_RcvIsr0Count                                                                           
    008762a4  g_resync                                                                                  
    008762a8  PE_XmtIsr0Count                                                                           
    008762ac  PE_XmtIsrCount                                                                            
    008762b0  PE_RcvSWICount                                                                            
    008762b4  PE_XmtSWICount                                                                            
    008762b8  nClkCountOld                                                                              
    008762d8  TccHandlerTableInitialized                                                                
    008762dc  intrMask                                                                                  
    008762e0  intrhMask                                                                                 
    008762ec  ClkFrequencyMH                                                                            
    008762f0  finishedMain                                                                              
    008762f4  g_nTotalDataAllocated                                                                     
    008762f8  g_diffTemp                                                                                
    008762fc  heap0                                                                                     
    00876300  TSK_ETHERNET_ProcessingTask                                                               
    00876304  PEngineReadSWI                                                                            
    00876308  SWINotifyReader                                                                           
    0087630c  SWIPipeDataInsert                                                                         
    00876310  PEngineWriteSWI                                                                           
    00876314  ADCPotSWI                                                                                 
    00876318  swiRunPIDControl                                                                          
    0087631c  semHandle                                                                                 
    00876e70  __TI_Handler_Table_Base                                                                   
    00876e78  __TI_CINIT_Base                                                                           
    00876e78  __TI_Handler_Table_Limit                                                                  
    00876eb0  __TI_CINIT_Limit                                                                          
    0c200000  _Z19GetCalibrationValuePss                                                                
    0c200150  _Z18PEngineSortIsr_HWIv                                                                   
    0c200168  _Z18PEngineRcvIsr0_HWIv                                                                   
    0c200180  _Z21PEngineRcvIsrPing_HWIv                                                                
    0c200198  _Z21PEngineRcvIsrPong_HWIv                                                                
    0c2001b4  _Z17PEngineRcvIsr_HWIv                                                                    
    0c200438  swiRunPIDControlFxn                                                                       
    0c200464  _Z18PEngineXmtIsr0_HWIv                                                                   
    0c200478  _Z21PEngineXmtIsrPong_HWIv                                                                
    0c200494  _Z21PEngineXmtIsrPing_HWIv                                                                
    0c2004b0  _Z17PEngineXmtIsr_HWIv                                                                    
    0c200880  PEngineReadSWIFxn                                                                         
    0c2008a4  PEngineWriteSWIFxn                                                                        
    0c2008d8  _ZN6CMotorC1Ev                                                                            
    0c2008d8  _ZN6CMotorC2Ev                                                                            
    0c200950  _ZN6CMotor16SetGlobalPointerEP11SGlobalVars                                               
    0c20096c  _ZN6CMotor9MoveMotorEl                                                                    
    0c200a4c  _ZN6CMotor13RunPIDControlEm                                                               
    0c200b2c  _ZN6CMotor12SafetyChecksEv                                                                
    0c200da0  _ZN6CMotor9StopMotorEv                                                                    
    0c200e10  _ZN6CMotor11SetNewSpeedEt                                                                 
    0c200e8c  _ZN6CMotor9GetStatusEPt                                                                   
    0c200f04  _ZN6CMotor18PrepareBlockStatusEP23StreamStatusMotorStatusl                                
    0c2011d8  _ZN6CMotor19SetCalibrationTabelEPti                                                       
    0c201204  _ZN6CMotor4InitEv                                                                         
    0c201234  _ZN6CMotor9SpeedCalcEl                                                                    
    0c201320  _ZN6CMotor12SetDirectionE4EDIR                                                            
    0c201354  _ZN6CMotor15GetFeedbacksDifEv                                                             
    0c2013e0  _ZN6CMotor11GetDistanceEv                                                                 
    0c201428  _ZN6CMotor14FinishMovementEv                                                              
    0c201454  _ZN6CMotor13BeginMovementEl                                                               
    0c201528  _ZN6CMotor10InitParamsEv                                                                  
    0c2016a0  _ZN6CMotor21SendToHostNewPositionEv                                                       
    0c2016c0  _ZN6CMotor14SecondFeedBackEv                                                              
    0c2016d0  _ZN6CMotor11GetPositionEv                                                                 
    0c201710  _ZN6CMotor14GetDestinationEv                                                              
    0c201768  _ZN6CMotor18RunPIDControlMovedEmlli                                                       
    0c2018f4  _ZN6CMotor21RunPIDControlStoppingEmlli                                                    
    0c201964  _ZN6CMotor20RunPIDControlStoppedEmlli                                                     
    0c201994  _ZN16CAOPEngineDriverC1Ev                                                                 
    0c201994  _ZN16CAOPEngineDriverC2Ev                                                                 
    0c201e4c  _ZN16CAOPEngineDriver6FormatEv                                                            
    0c203ef8  _ZN16CAOPEngineDriver4InitEv                                                              
    0c205144  _ZN16CAOPEngineDriver13BlockReceivedEv                                                    
    0c2051a0  _ZN16CAOPEngineDriver9BlockSentEv                                                         
    0c20672c  _ZN16CAOPEngineDriver12NotifyReaderEv                                                     
    0c206758  _ZN16CAOPEngineDriver9SetParamsEP7AParams                                                 
    0c20684c  _ZN16CAOPEngineDriver7SetDataEP10StreamBase                                               
    0c206a20  _ZN16CAOPEngineDriver9GetParamsEv                                                         
    0c206a40  _ZN16CAOPEngineDriver5CheckEv                                                             
    0c206cb4  _ZN16CAOPEngineDriver9RestartHWEv                                                         
    0c206eb4  _ZN16CAOPEngineDriver15IsStimulationOnEi                                                  
    0c206f08  _ZN16CAOPEngineDriver5ParseEv                                                             
    0c2070c4  _ZN16CAOPEngineDriver20SettingBeforeSendingEv                                             
    0c2072e0  _ZN16CAOPEngineDriver20GetNextRcvSortBufferEv                                             
    0c207350  _ZN16CAOPEngineDriver18SetRemarkToChannelEsi                                              
    0c2074d4  _ZN16CAOPEngineDriver15SetPortAsStrobeEsb                                                 
    0c2075e4  _ZN16CAOPEngineDriver13StopUDChannelEi                                                    
    0c207648  _ZN16CAOPEngineDriver14StartUDChannelEiij                                                 
    0c207760  _ZN16CAOPEngineDriver16RemoveWaveFormatEi                                                 
    0c207838  _ZN16CAOPEngineDriver13AddWaveFormatEiiPc                                                 
    0c207964  _ZN16CAOPEngineDriver17AddDataToWaveFormEiiPsi                                            
    0c2079f0  _ZN16CAOPEngineDriver15AddChannelUDGenEiii                                                
    0c207b68  _ZN16CAOPEngineDriver17AddChannelStimGenEiii                                              
    0c207ed4  _ZN16CAOPEngineDriver20RemoveChannelStimGenEi                                             
    0c207f80  _ZN16CAOPEngineDriver20TurnOffAnalogChannelEj                                             
    0c208030  _ZN16CAOPEngineDriver13IsFEConnectedEv                                                    
    0c2080a0  _ZN16CAOPEngineDriver6HandleEPti                                                          
    0c209034  _ZN16CAOPEngineDriver22HandleStartAcquisitionEPt                                          
    0c209064  _ZN16CAOPEngineDriver21HandleStopAcquisitionEPt                                           
    0c2090e8  _ZN16CAOPEngineDriver33HandleImpedanceMeasurementControlEPt                               
    0c209354  _ZN16CAOPEngineDriver15HandleFlashDataEPti                                                
    0c2096f8  _ZN16CAOPEngineDriver22HandleStartStimulationEPt                                          
    0c20a020  _ZN16CAOPEngineDriver21HandleStopStimulationEPt                                           
    0c20a7ac  _ZN16CAOPEngineDriver27HandleStimulationGenerationEPt                                     
    0c20afb8  _ZN16CAOPEngineDriver17GetArtifactExistsEs                                                
    0c20b1e0  _ZN16CAOPEngineDriver39HandleImpedanceMeasurementConfigurationEPt                         
    0c20b580  _ZN16CAOPEngineDriver10HandleDoutEP15StreamDataBlock                                      
    0c20b848  _ZN16CAOPEngineDriver23HandleStartDigtalOutputEPt                                         
    0c20bce8  _ZN16CAOPEngineDriver26HandleGenerateDigtalOutputEPt                                      
    0c20be70  _ZN16CAOPEngineDriver24ReturnChannelToLastStateEi                                         
    0c20c280  _ZN16CAOPEngineDriver14HandleMapingUDEP18StreamCommandBlock                               
    0c20c3b0  _ZN16CAOPEngineDriver19HandleGroundChannelEPt                                             
    0c20c494  _ZN16CAOPEngineDriver21HandleSetChannelStateEPt                                           
    0c20c504  _ZN16CAOPEngineDriver13TurnChannelOnEib                                                   
    0c20c520  _ZN16CAOPEngineDriver17SetElectrodeStateEii                                               
    0c20d000  _ZN16CAOPEngineDriver11CalculateCMEPs                                                     
    0c20d10c  _ZN16CAOPEngineDriver11ConfigureHWEv                                                      
    0c20d134  _ZN16CAOPEngineDriver7StartHWEv                                                           
    0c20d2e0  _ZN16CAOPEngineDriver16AdvanceADCounterEv                                                 
    0c20d334  _ZN16CAOPEngineDriver21UpdateFEConfigurationEtt                                           
    0c20d6d8  _ZN16CAOPEngineDriver21UpdateRMConfigurationEt                                            
    0c20d9ac  _ZN16CAOPEngineDriver11SetChannelsEibb                                                    
    0c20dbc4  _ZN16CAOPEngineDriver16UpdateHW_VersionEts                                                
    0c20df10  _ZN16CAOPEngineDriver14SetSpeedHandleEPt                                                  
    0c20dfc0  _ZN16CAOPEngineDriver14GetIdentHandleEPt                                                  
    0c20e068  _ZN16CAOPEngineDriver10StopHandleEPt                                                      
    0c20e108  _ZN16CAOPEngineDriver17SetPositionHandleEPt                                               
    0c20e1a8  _ZN16CAOPEngineDriver17HandleConfigMotorEPt                                               
    0c20e288  _ZN16CAOPEngineDriver11ResetHandleEPt                                                     
    0c20e2e8  _ZN16CAOPEngineDriver13RunPIDControlEm                                                    
    0c20e334  _ZN16CAOPEngineDriver14SecondFeedBackEv                                                   
    0c20e358  _ZN16CAOPEngineDriver11MoveMotorMMEif                                                     
    0c20e4a0  _ZN16CAOPEngineDriver15CalibInfoHandleEPt                                                 
    0c20e4b4  _ZN16CAOPEngineDriver16SetGlobalPointerEP11SGlobalVars                                    
    0c20e4ec  _ZN16CAOPEngineDriver10MoveHandleE13E_CommandTypePt                                       
    0c20e604  _ZN16CAOPEngineDriver4stopE11EWatchDogIdPv                                                
    0c20e648  _ZN16CAOPEngineDriver11MOTOR_A_ISREb                                                      
    0c20e6f0  _ZN16CAOPEngineDriver8setSpeedEt                                                          
    0c20e74c  _ZN16CAOPEngineDriver3ifAEv                                                               
    0c20e764  _ZN16CAOPEngineDriver3ifBEv                                                               
    0c20e774  _ZN16CAOPEngineDriver6moveUpEv                                                            
    0c20e7cc  _ZN16CAOPEngineDriver8moveDownEv                                                          
    0c20e82c  _ZN16CAOPEngineDriver12disableMotorEv                                                     
    0c20e86c  _ZN16CAOPEngineDriver11enableMotorEv                                                      
    0c20e894  _ZN16CAOPEngineDriver9stopMotorEv                                                         
    0c20e900  _ZN16CAOPEngineDriver29IsDriveConnectedAndCalibratedEv                                    
    0c20e944  _ZN16CAOPEngineDriver12FixStimValueEsi                                                    
    0c20e9e8  _ZN16CAOPEngineDriver22FixCurrentMonitorValueEsi                                          
    0c20ea8c  _ZN16CAOPEngineDriver13GetStimFactorEi                                                    
    0c20ec64  _ZN16CAOPEngineDriver11GetCMFactorEi                                                      
    0c20eeac  __sti___19_AOPEngineDriver_cpp_2f1bc575                                                   
    0c20eee0  PEngine_task                                                                              
    0c20eee8  InitTaskFxn                                                                               
    0c20ef70  _Z16GetContactNumberi                                                                     
    0c20efe8  clkGlobalFxn                                                                              
    0c20f080  PrdParseFxn                                                                               
    0c20f0a4  SWIPipeDataInsertFXN                                                                      
    0c20f0b8  SWINotifyReaderFxn                                                                        
    0c20f0d0  _Z20ChangeGlobalDSPclockv                                                                 
    0c20f0e4  _Z13QDMA0Finishedv                                                                        
    0c20f0f8  _Z13QDMA1Finishedv                                                                        
    0c20f118  _Z13QDMA2Finishedv                                                                        
    0c20f130  _Z13QDMA3Finishedv                                                                        
    0c20f148  GlobalVarsInit                                                                            
    0c20f1d0  loopTimerTick                                                                             
    0c20f1ec  insertDataToPipe                                                                          
    0c20f208  _ZN21CAONVStimDriverParamsC1Ev                                                            
    0c20f208  _ZN21CAONVStimDriverParamsC2Ev                                                            
    0c20f2b0  _ZN9CAppContrC1Ev                                                                         
    0c20f2b0  _ZN9CAppContrC2Ev                                                                         
    0c20f538  _ZN9CAppContr4LoopEv                                                                      
    0c20fb80  _ZN9CAppContr20InsertDataToBeginingEv                                                     
    0c20fd14  _ZN9CAppContr4InitEv                                                                      
    0c20ff30  _ZN9CAppContr12InsertToPipeEP5CPipeP10StreamBaseP8PipeUtil                                
    0c2100ac  _ZN9CAppContr9ParsePipeE11ESourceTypeP5CPipeP8PipeUtil                                    
    0c210278  _ZN9CAppContr22SendPipeFramesToMemoryEP5CPipeP17IPC_COMM_MEM_BUFFiiPiPvPt                 
    0c210524  _ZN9CAppContr22SendPipeFramesToMemoryEP5CPipe                                             
    0c210648  _ZN9CAppContr22ReadMemoryToPipeFramesEP5CPipeP17IPC_COMM_MEM_BUFFiiPiPv                   
    0c210894  _ZN9CAppContr5flushEP5CPipeP8PipeUtil                                                     
    0c210920  _ZN9CAppContr25TestApplicationControllerEv                                                
    0c210930  _ZN9CAppContr6HandleE11ESourceTypeP10StreamBase                                           
    0c2109c0  _ZN9CAppContr13HandleCommandE11ESourceTypeP10StreamBase                                   
    0c2127e4  _ZN9CAppContr12HandleStatusE11ESourceTypeP10StreamBase                                    
    0c2128b0  _ZN9CAppContr10HandleDataE11ESourceTypeP10StreamBase                                      
    0c213030  _ZN9CAppContr26HandleTemplateMatchCommandEP18StreamCommandBlock                           
    0c213070  _ZN9CAppContr21PrepareMSGStateScriptEP30StreamStatusScriptRunningState                    
    0c2130a0  _ZN9CAppContr21PrepareMSGSnrHwStatusEP27StreamStatusAlabSnRHWStatus                       
    0c2131c4  _ZN9CAppContr16InitPECondFilterEv                                                         
    0c213248  _ZN9CAppContr28InitBlocksAccumulationFilterEv                                             
    0c213258  _ZN9CAppContr24InitScriptExecuterFilterEv                                                 
    0c2132ac  _ZN9CAppContr19InitStimBoardDriverEv                                                      
    0c2132e0  _ZN9CAppContr17InitTemplateMatchEv                                                        
    0c2132f0  _ZN9CAppContr19InitDetectionFilterEv                                                      
    0c213338  _ZN9CAppContr19InitImpedanceFilterEv                                                      
    0c2135e4  _ZN9CAppContr9InitCodecEv                                                                 
    0c2135f4  _ZN9CAppContr17configureGpioPinsEv                                                        
    0c21362c  _ZN9CAppContr11SendRawToAOEP15StreamDataBlock                                             
    0c213644  _ZN9CAppContr11SendSPKToAOEP15StreamDataBlock                                             
    0c2137f4  _ZN9CAppContr10SendUDToAOEP15StreamDataBlock                                              
    0c213990  _ZN9CAppContr19SendLFPCompressToAOEP15StreamDataBlock                                     
    0c213be0  _ZN9CAppContr11SendSEGToAOEP15StreamDataBlock                                             
    0c213e64  _ZN9CAppContr13UpdateLFPToAOEP15StreamDataBlock                                           
    0c214054  _ZN9CAppContr11SendLFPToAOEv                                                              
    0c214320  __sti___14_AppControl_cpp_681633c3                                                        
    0c214760  _ZN21CFilterScriptExecuterC1Ev                                                            
    0c214760  _ZN21CFilterScriptExecuterC2Ev                                                            
    0c214898  _ZN21CFilterScriptExecuter6CreateEP7AParams                                               
    0c2148f0  _ZN21CFilterScriptExecuter7restartEv                                                      
    0c214900  _ZN21CFilterScriptExecuter7SetDataEPht                                                    
    0c214920  _ZN21CFilterScriptExecuter9SetParamsEP7AParams                                            
    0c214960  _ZN21CFilterScriptExecuter9runScriptEv                                                    
    0c214d24  _ZN21CFilterScriptExecuter13AONewOperatorEPvi                                             
    0c214d80  _ZN21CFilterScriptExecuter13AODelOperatorEv                                               
    0c214d90  _ZN21CFilterScriptExecuter9SendErrorEPc                                                   
    0c214e28  _ZN21CFilterScriptExecuter18TransformDataBlockEP10StreamBase                              
    0c214f78  _ZN21CFilterScriptExecuter20TransformStatusBlockEP10StreamBase                            
    0c215088  _ZN21CFilterScriptExecuter21TransformCommandBlockEP10StreamBase                           
    0c2150d4  _ZN21CFilterScriptExecuter16HandleLoadScriptEP10StreamBase                                
    0c2151d0  _ZN21CFilterScriptExecuter22HandleScriptRunCommandEP10StreamBase                          
    0c215320  _ZN21CFilterScriptExecuter9GetWaveIDEPc                                                   
    0c2153ac  _ZN21CFilterScriptExecuter10performNOPEv                                                  
    0c2153d0  _ZN21CFilterScriptExecuter11performPUSHEv                                                 
    0c215438  _ZN21CFilterScriptExecuter12performPUSHVEv                                                
    0c2154d8  _ZN21CFilterScriptExecuter10performPOPEv                                                  
    0c2156f4  _ZN21CFilterScriptExecuter13performPOPStrEv                                               
    0c21590c  _ZN21CFilterScriptExecuter9performJZEv                                                    
    0c215968  _ZN21CFilterScriptExecuter10performJMPEv                                                  
    0c2159a8  _ZN21CFilterScriptExecuter10performNEGEv                                                  
    0c215a14  _ZN21CFilterScriptExecuter10performADDEv                                                  
    0c215aa0  _ZN21CFilterScriptExecuter10performSUBEv                                                  
    0c215b28  _ZN21CFilterScriptExecuter10performMULEv                                                  
    0c215bb4  _ZN21CFilterScriptExecuter10performDIVEv                                                  
    0c215c44  _ZN21CFilterScriptExecuter13performCOMPLTEv                                               
    0c215cc0  _ZN21CFilterScriptExecuter13performCOMPGTEv                                               
    0c215d38  _ZN21CFilterScriptExecuter13performCOMPGEEv                                               
    0c215db4  _ZN21CFilterScriptExecuter13performCOMPLEEv                                               
    0c215e30  _ZN21CFilterScriptExecuter13performCOMPNEEv                                               
    0c215eac  _ZN21CFilterScriptExecuter13performCOMPEQEv                                               
    0c215f28  _ZN21CFilterScriptExecuter13performCONCATEv                                               
    0c2161c0  _ZN21CFilterScriptExecuter11performSTIMEv                                                 
    0c2164ec  _ZN21CFilterScriptExecuter12performSTIMAEv                                                
    0c216834  _ZN21CFilterScriptExecuter14performSTIM_EXEv                                              
    0c216b14  _ZN21CFilterScriptExecuter15performINDEXINGEv                                             
    0c216c54  _ZN21CFilterScriptExecuter13performARR_EQEv                                               
    0c216d68  _ZN21CFilterScriptExecuter24performSTART_STIMULATIONEv                                    
    0c216eb0  _ZN21CFilterScriptExecuter19performRET_CHANNELSEv                                         
    0c216ff8  _ZN21CFilterScriptExecuter25performSET_CHANNELS_STATEEv                                   
    0c217188  _ZN21CFilterScriptExecuter16performIMP_STARTEv                                            
    0c21730c  _ZN21CFilterScriptExecuter27performSTOP_ALL_STIMULATIONEv                                 
    0c217378  _ZN21CFilterScriptExecuter23performSTOP_STIMULATIONEv                                     
    0c2174b0  _ZN21CFilterScriptExecuter14performWAIT_EXEv                                              
    0c217564  _ZN21CFilterScriptExecuter13performWAIT_DEv                                               
    0c217808  _ZN21CFilterScriptExecuter13performWAIT_BEv                                               
    0c2178d8  _ZN21CFilterScriptExecuter11performDOUTEv                                                 
    0c217aac  _ZN21CFilterScriptExecuter17performSEND_EVENTEv                                           
    0c217b70  _ZN21CFilterScriptExecuter12performPRINTEv                                                
    0c217c28  _ZN21CFilterScriptExecuter13performLENGTHEv                                               
    0c217cb8  _ZN21CFilterScriptExecuter11performEXITEv                                                 
    0c217d28  _ZN21CFilterScriptExecuter17CopyToTmpVariableEP24VariablesHashElementTypesii              
    0c217ea8  _ZN21CFilterScriptExecuter21CopyDataToChnVariableEP24VariablesHashElementTypePssi         
    0c218000  _ZN21CFilterScriptExecuter22performSET_STIM_MARKEREv                                      
    0c218148  _ZN21CFilterScriptExecuter14perform_stopUDEv                                              
    0c218270  _ZN21CFilterScriptExecuter15perform_StartUDEv                                             
    0c2185e0  _ZN24CFilterPEngineCondParamsC1Ev                                                         
    0c2185e0  _ZN24CFilterPEngineCondParamsC2Ev                                                         
    0c2185f0  _ZN18CFilterPEngineCondC1Ev                                                               
    0c2185f0  _ZN18CFilterPEngineCondC2Ev                                                               
    0c218714  _ZN18CFilterPEngineCond6CreateEP7AParams                                                  
    0c2187a0  _ZN18CFilterPEngineCond9SetParamsEP7AParams                                               
    0c218878  _ZN18CFilterPEngineCond9SetParamsEP29StreamFilterPEngineCondParams                        
    0c218b44  _ZN18CFilterPEngineCond22UpdateCondChannelEntryEP24CFilterPEngineCondParams               
    0c218e60  _ZN18CFilterPEngineCond22InitCondChannelMappingEv                                         
    0c219494  _ZN18CFilterPEngineCond9GetParamsEv                                                       
    0c2194ec  _ZN18CFilterPEngineCond9GetParamsEi                                                       
    0c2195b8  _ZN18CFilterPEngineCond7restartEv                                                         
    0c2195e0  _ZN18CFilterPEngineCond19ProcessHPFilterDataEP12CCondChannelPs                            
    0c21960c  _ZN18CFilterPEngineCond20ProcessLFPFilterDataEP12CCondChannelPsj                          
    0c2196c4  _ZN18CFilterPEngineCond7AcquireEv                                                         
    0c2198d0  _ZN18CFilterPEngineCond15SetPortAsStrobeEsb                                               
    0c219968  _ZN18CFilterPEngineCond23GetHeadStageModuleStateEv                                        
    0c219984  _ZN18CFilterPEngineCond23SetHeadStageModuleStateEs                                        
    0c2199ac  _ZN18CFilterPEngineCond13TurnOnChannelEjs                                                 
    0c219aac  _ZN18CFilterPEngineCond18TransformDataBlockEP10StreamBase                                 
    0c21a7f4  _ZN18CFilterPEngineCond14IssueLFPBlocksEv                                                 
    0c21aa40  __TI_printfi                                                                              
    0c21c680  ti_sdo_ipc_GateMP_Instance_init__E                                                        
    0c21e1c0  _ZN17CFeatureDetectionC1Ev                                                                
    0c21e1c0  _ZN17CFeatureDetectionC2Ev                                                                
    0c21e1f0  _ZN17CFeatureDetection9SetParamsEPii                                                      
    0c21e230  _ZN17CFeatureDetection23SetParamsLevelDetectionEiiiiiii                                   
    0c21e2a0  _ZN17CFeatureDetection23GetParamsLevelDetectionEPiS0_S0_S0_S0_S0_S0_                      
    0c21e330  _ZN17CFeatureDetection26CheckAndSendLevelDetectionEP7CFilter                              
    0c21e400  _ZN18CChannelsDetectionC1Ev                                                               
    0c21e400  _ZN18CChannelsDetectionC2Ev                                                               
    0c21e450  _ZN18CChannelsDetection14StartDetectionEi                                                 
    0c21e494  _ZN18CChannelsDetection13StopDetectionEv                                                  
    0c21e4b0  _ZN18CChannelsDetection10AddFeatureE22E_FeatureDetectionTypePvi                           
    0c21e644  _ZN18CChannelsDetection10GetFeatureE22E_FeatureDetectionType                              
    0c21e6cc  _ZN24CAOFilterDetectionParamsC1Ev                                                         
    0c21e6cc  _ZN24CAOFilterDetectionParamsC2Ev                                                         
    0c21e714  _ZN24CAOFilterDetectionParams19AddChannelDetectionEi                                      
    0c21e840  _ZN24CAOFilterDetectionParams22RemoveChannelDetectionEi                                   
    0c21e938  _ZN24CAOFilterDetectionParams17AddFeatureChannelEi22E_FeatureDetectionTypePvi             
    0c21e9d4  _ZN24CAOFilterDetectionParams15ClearAllFeatureEi                                          
    0c21ea64  _ZN24CAOFilterDetectionParams14StartDetectionEii                                          
    0c21ebb8  _ZN24CAOFilterDetectionParams13StopDetectionEi                                            
    0c21ec94  _ZN24CAOFilterDetectionParams19GetChannelDetectionEi                                      
    0c21ed14  _ZN16CFilterDetectionC1Ev                                                                 
    0c21ed14  _ZN16CFilterDetectionC2Ev                                                                 
    0c21ed50  _ZN16CFilterDetection6CreateEP7AParams                                                    
    0c21ed80  _ZN16CFilterDetection9SetParamsEP7AParams                                                 
    0c21edc4  _ZN16CFilterDetection9GetParamsEv                                                         
    0c21ede0  _ZN16CFilterDetection7AcquireEv                                                           
    0c21efa8  _ZN16CFilterDetection7restartEv                                                           
    0c21efc4  _ZN16CFilterDetection7SetDataEPht                                                         
    0c21f114  _ZN16CFilterDetection18TransformDataBlockEP10StreamBase                                   
    0c21f330  _ZN16CFilterDetection20TransformStatusBlockEP10StreamBase                                 
    0c21f348  _ZN16CFilterDetection21TransformCommandBlockEP10StreamBase                                
    0c21f474  _ZN16CFilterDetection7OnTimerEv                                                           
    0c21f56c  _ZN16CFilterDetection17ProcessAnalogDataEP18CChannelsDetectionPstj                        
    0c21f610  _ZN16CFilterDetection14CalculateLevelEP18CChannelsDetectionPstij                          
    0c21f834  _ZN16CFilterDetection18UpdateChannelLevelEiii                                             
    0c21f8ac  _ZN16CFilterDetection24CheckForDetectionAndSendEv                                         
    0c21f9c0  _ZN26CFilterImpedanceMeasurmentC1Ev                                                       
    0c21f9c0  _ZN26CFilterImpedanceMeasurmentC2Ev                                                       
    0c21fa18  _ZN26CFilterImpedanceMeasurment6CreateEP7AParams                                          
    0c21fa58  _ZN26CFilterImpedanceMeasurment7restartEv                                                 
    0c21fa6c  _ZN26CFilterImpedanceMeasurment7SetDataEPht                                               
    0c21fb80  _ZN26CFilterImpedanceMeasurment7AcquireEv                                                 
    0c21fd68  _ZN26CFilterImpedanceMeasurment9SetParamsEP7AParams12E_ActionType                         
    0c21ff6c  _ZN26CFilterImpedanceMeasurment9GetParamsEv                                               
    0c21ffc8  _ZN26CFilterImpedanceMeasurment9GetParamsEi                                               
    0c2200d8  _ZN26CFilterImpedanceMeasurment17ProcessAnalogDataEP17CImpedanceChannelPst                
    0c22070c  _ZN26CFilterImpedanceMeasurment16StartMeasurementEP17CImpedanceChannel                    
    0c220738  _ZN26CFilterImpedanceMeasurment18UpdateChannelEntryEP35CAOFilterImpedanceMeasurementParams
    0c220b78  _ZN26CFilterImpedanceMeasurment18InitChannelMappingEv                                     
    0c220c18  _ZN26CFilterImpedanceMeasurment18TransformDataBlockEP10StreamBase                         
    0c220d00  _ZN26CFilterImpedanceMeasurment20TransformStatusBlockEP10StreamBase                       
    0c220d14  _ZN26CFilterImpedanceMeasurment21TransformCommandBlockEP10StreamBase                      
    0c220d2c  _ZN26CFilterImpedanceMeasurment15ReportImpValuesEv                                        
    0c220f00  Ipc_attach                                                                                
    0c222140  _ZN14CMemorySegment13getBlockIndexEi                                                      
    0c22216c  _ZN14CMemorySegmentC1Ev                                                                   
    0c22216c  _ZN14CMemorySegmentC2Ev                                                                   
    0c2221e4  _ZN14CMemorySegment20GetIndextoNext16WordEj                                               
    0c222240  _ZN14CMemorySegment11FreeSegmentEv                                                        
    0c2222b0  _ZN12CMemoryMangeC1Ev                                                                     
    0c2222b0  _ZN12CMemoryMangeC2Ev                                                                     
    0c222390  _ZN12CMemoryMange14AllocateMemoryEPsij                                                    
    0c222564  _ZN12CMemoryMange18AllocateMoreMemoryEPsij                                                
    0c2227cc  _ZN12CMemoryMange10FreeMemoryEj                                                           
    0c222874  _ZN12CMemoryMange22GetPointertoNext16WordEji                                              
    0c2228b8  _ZN12CMemoryMange12SegmentExistEj                                                         
    0c2228e4  _ZN12CMemoryMange23GetPointerToFreeSegmentEv                                              
    0c222950  _ZN12CMemoryMange11FindSegmentEj                                                          
    0c2229c4  _ZN19CWaveFormDefinitionC1Ev                                                              
    0c2229c4  _ZN19CWaveFormDefinitionC2Ev                                                              
    0c222a08  _ZN19CWaveFormDefinitionC1EiiPc                                                           
    0c222a08  _ZN19CWaveFormDefinitionC2EiiPc                                                           
    0c222a74  _ZN19CWaveFormDefinition16AddSamplesToWaveEPsii                                           
    0c222b60  _ZN16CAnalogGeneratorC1Ev                                                                 
    0c222b60  _ZN16CAnalogGeneratorC2Ev                                                                 
    0c222c48  _ZN16CAnalogGenerator14SetWaveFormSrcEP19CWaveFormDefinition                              
    0c222c78  _ZN16CAnalogGenerator13AddDesChannelEi                                                    
    0c222d10  _ZN16CAnalogGenerator16RemoveDesChannelEi                                                 
    0c222e28  _ZN16CAnalogGenerator11StopChannelEi                                                      
    0c222f08  _ZN16CAnalogGenerator12StartChannelEi                                                     
    0c222fec  _ZN16CAnalogGenerator7SetFreqEi                                                           
    0c223080  _ZN16CAnalogGenerator15IsContainChanelEi                                                  
    0c2230e4  _ZN16CAnalogGenerator15GetNext16SampleEv                                                  
    0c223190  _ZN16CAnalogGenerator5StartEv                                                             
    0c2231b4  _ZN16CAnalogGenerator4StopEv                                                              
    0c2231e0  DSP_iir                                                                                   
    0c223414  DSP_lp                                                                                    
    0c2237f4  DSP_HP_BIQUAD                                                                             
    0c223ae0  DSP_HP_BIQUAD_LOW_FREQ                                                                    
    0c223bf0  AO_Log2                                                                                   
    0c223c54  DSP_LP_BIQUAD                                                                             
    0c223fc0  _ZN7CFilterC1Ev                                                                           
    0c223fc0  _ZN7CFilterC2Ev                                                                           
    0c224060  _ZN7CFilter13AddSourcePipeEP5CPipe                                                        
    0c224080  _ZN7CFilter13AddTargetPipeEP5CPipe                                                        
    0c224098  _ZN7CFilter7AcquireEv                                                                     
    0c2240b4  _ZN7CFilter7restartEv                                                                     
    0c22412c  _ZN7CFilter9TransformEv                                                                   
    0c2241ec  _ZN7CFilter18TransformDataBlockEP10StreamBase                                             
    0c224218  _ZN7CFilter20TransformStatusBlockEP10StreamBase                                           
    0c22424c  _ZN7CFilter21TransformCommandBlockEP10StreamBase                                          
    0c224280  _ZN7CFilter5IssueEv                                                                       
    0c224294  _ZN7CFilter5FlushEv                                                                       
    0c224310  _ZN7CFilter8ReadDataEhPcj                                                                 
    0c2243b4  _ZN7CFilter9WriteDataEhPcj                                                                
    0c2244a0  _ZN7CFilter10IssueBlockEP10StreamBase                                                     
    0c224548  _ZN7CFilter14IssueDataBlockEPstjtt                                                        
    0c2245c8  _ZN7CFilter14IssueDataBlockEP10StreamBasePst                                              
    0c224788  _ZN7CFilter10IssueFrameEP10StreamBasei                                                    
    0c22484c  _ZN7CFilter19ReadAllBLocksInPipeEv                                                        
    0c224ab4  _ZN7CFilter12PreTransformEv                                                               
    0c224ae0  ti_sdo_ipc_transports_TransportShm_Instance_init__E                                       
    0c225600  ti_sdo_ipc_GateMP_setRegion0Reserved__E                                                   
    0c225600  ti_sdo_ipc_GateMP_setRegion0Reserved__F                                                   
    0c226100  MessageQ_put                                                                              
    0c226bc0  ti_sdo_ipc_heaps_HeapMemMP_free__E                                                        
    0c227660  ti_sdo_ipc_heaps_HeapMemMP_alloc__E                                                       
    0c2280e0  ti_sdo_ipc_ListMP_Instance_init__E                                                        
    0c228b40  ADCPotSWIFxn                                                                              
    0c228b70  _ZN11CAOSpdEstimC1Ev                                                                      
    0c228b70  _ZN11CAOSpdEstimC2Ev                                                                      
    0c228b84  _ZN11CAOSpdEstim8StartNewEv                                                               
    0c228bc0  _ZN11CAOSpdEstim14speed_est_calcEv                                                        
    0c228cac  _ZN10CAOPIDReg3C1Ev                                                                       
    0c228cac  _ZN10CAOPIDReg3C2Ev                                                                       
    0c228d30  _ZN10CAOPIDReg38StartNewEv                                                                
    0c228d4c  _ZN10CAOPIDReg313pid_reg3_calcEl                                                          
    0c228e90  _ZN11CAORampCtrlC1Ev                                                                      
    0c228e90  _ZN11CAORampCtrlC2Ev                                                                      
    0c228ed0  _ZN11CAORampCtrl8StartNewEl                                                               
    0c228f4c  _ZN11CAORampCtrl12RampCtrlCalcEl                                                          
    0c228fc0  _ZN11SCalcMinMax15CalcMinMax_InitEv                                                       
    0c228fe8  _ZN11SCalcMinMax17CalcMinMax_SetNewEi                                                     
    0c22902c  _ZN15CRunningAverageC1Ev                                                                  
    0c22902c  _ZN15CRunningAverageC2Ev                                                                  
    0c229064  _ZN15CRunningAverage11CalcAverageEv                                                       
    0c2290f0  _ZN15CRunningAverage16ReceieveNewValueEt                                                  
    0c229184  _ZN14CADCalibrationC1Ev                                                                   
    0c229184  _ZN14CADCalibrationC2Ev                                                                   
    0c2291c0  _ZN14CADCalibration4InitEb                                                                
    0c2291d4  _ZN14CADCalibration19SetCalibrationTabelEPti                                              
    0c229258  _ZN14CADCalibration15GetPositionByADEif                                                   
    0c229368  _ZN14CADCalibration13SetPositionADEif                                                     
    0c2293c4  _ZN14CADCalibration15GetADByPositionEf                                                    
    0c2294b0  _ZN14CADCalibration13IsValuesValidEv                                                      
    0c229560  _ZN5IPipeD1Ev                                                                             
    0c229560  _ZN5IPipeD2Ev                                                                             
    0c229570  _ZN5IPipeD0Ev                                                                             
    0c22958c  _ZN5IPipe18getNotifyReaderFxnEv                                                           
    0c2295ac  _ZN5IPipe18setNotifyReaderFxnEPFivE                                                       
    0c2295c8  _ZN5IPipe18getNotifyWriterFxnEv                                                           
    0c2295e4  _ZN5IPipe18setNotifyWriterFxnEPFivE                                                       
    0c229600  _ZN5IPipe13PIP_getRWSizeEv                                                                
    0c229618  _ZN9CPipeFifoC1Ell                                                                        
    0c229618  _ZN9CPipeFifoC2Ell                                                                        
    0c22964c  _ZN9CPipeFifoD1Ev                                                                         
    0c22964c  _ZN9CPipeFifoD2Ev                                                                         
    0c229668  _ZN9CPipeFifo8FifoInitEllRl                                                               
    0c2296d0  _ZN9CPipeFifo7IsEmptyEv                                                                   
    0c2296f4  _ZN9CPipeFifo6IsFullEv                                                                    
    0c229724  _ZN9CPipeFifo10IsLastFreeEv                                                               
    0c229754  _ZN9CPipeFifo8GetCountEv                                                                  
    0c229770  _ZN9CPipeFifo14GetElementSizeEv                                                           
    0c22978c  _ZN9CPipeFifo17GetElementsNumberEv                                                        
    0c2297a8  _ZN9CPipeFifo6CreateEll                                                                   
    0c229898  _ZN9CPipeFifo7DestroyEv                                                                   
    0c229930  _ZN9CPipeFifo5AllocEv                                                                     
    0c229988  _ZN9CPipeFifo3PutEv                                                                       
    0c229a00  _ZN9CPipeFifo3GetEv                                                                       
    0c229a60  _ZN9CPipeFifo4FreeEv                                                                      
    0c229ac4  _ZN9CPipeFifo17PIP_getReaderSizeEv                                                        
    0c229af0  _ZN9CPipeFifo17PIP_getWriterSizeEv                                                        
    0c229b28  _ZN9CPipeFifo17PIP_setReaderSizeEi                                                        
    0c229b60  _ZN9CPipeFifo17PIP_setWriterSizeEi                                                        
    0c229b90  _ZN5CPipeC1Ell                                                                            
    0c229b90  _ZN5CPipeC2Ell                                                                            
    0c229bf8  _ZN5CPipeD1Ev                                                                             
    0c229bf8  _ZN5CPipeD2Ev                                                                             
    0c229c30  _ZN5CPipeD0Ev                                                                             
    0c229c4c  _ZN5CPipe9PIP_allocEPb                                                                    
    0c229cd0  _ZN5CPipe8PIP_freeEv                                                                      
    0c229cec  _ZN5CPipe7PIP_getEv                                                                       
    0c229d40  _ZN5CPipe7PIP_putEv                                                                       
    0c229d60  _ZN5CPipe17PIP_getReaderAddrEv                                                            
    0c229d80  _ZN5CPipe22PIP_getReaderNumFramesEv                                                       
    0c229da0  _ZN5CPipe17PIP_getReaderSizeEv                                                            
    0c229dc0  _ZN5CPipe17PIP_setReaderSizeEi                                                            
    0c229de4  _ZN5CPipe17PIP_getWriterAddrEv                                                            
    0c229e00  _ZN5CPipe22PIP_getWriterNumFramesEv                                                       
    0c229e30  _ZN5CPipe17PIP_getWriterSizeEv                                                            
    0c229e4c  _ZN5CPipe17PIP_setWriterSizeEi                                                            
    0c229e70  _ZN5CPipe16PIP_getFrameSizeEv                                                             
    0c229e8c  _ZN5CPipe18PIP_getFramesCountEv                                                           
    0c229ec0  xdc_runtime_System_doPrint__I                                                             
    0c22a780  TccHandlerTableInit                                                                       
    0c22a7c4  PEngine_Interrupt_init                                                                    
    0c22a800  DMA3_init                                                                                 
    0c22a8d4  eventEdmaHandler                                                                          
    0c22aacc  EdmaEventHook                                                                             
    0c22ab34  qdma_xfer_region0                                                                         
    0c22ad24  ConfigureEDMA3TMMatrix                                                                    
    0c22af18  ConfigureTMMatrixAnRun                                                                    
    0c22afc0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_init__E                               
    0c22b7e0  ti_sdo_ipc_heaps_HeapMemMP_Instance_init__E                                               
    0c22bfe0  ti_sdo_ipc_GateMP_Instance_finalize__E                                                    
    0c22c7a0  ti_sysbios_family_c64p_Exception_handler__I                                               
    0c22cf20  ti_sysbios_knl_Semaphore_pend__E                                                          
    0c22d6a0  Notify_registerEvent                                                                      
    0c22ddc0  Notify_sendEvent                                                                          
    0c22e4c0  NameServer_add                                                                            
    0c22eba0  ti_sysbios_timers_timer64_Timer_Module_startup__E                                         
    0c22f280  ti_sdo_ipc_Ipc_procSyncStart__I                                                           
    0c22ffc0  ti_sysbios_heaps_HeapMem_allocUnprotected__E                                              
    0c230600  ListMP_getHead                                                                            
    0c230c20  ti_sdo_ipc_SharedRegion_start__E                                                          
    0c230c20  ti_sdo_ipc_SharedRegion_start__F                                                          
    0c231240  _ZN14CHashTableVoid12BinarySearchEs                                                       
    0c231380  _ZN14CHashTableVoid6GetMidEii                                                             
    0c2313d0  _ZN14CHashTableVoid6CreateEi                                                              
    0c23146c  _ZN14CHashTableVoid13InsertElementEsPv                                                    
    0c231660  _ZN14CHashTableVoid10GetElementEs                                                         
    0c23172c  _ZN14CHashTableVoid5GetAtEi                                                               
    0c231774  _ZN14CHashTableVoid8GetCountEv                                                            
    0c231794  _ZN14CHashTableVoid7ClearAtEi                                                             
    0c231840  __c6xabi_divd                                                                             
    0c231e40  ti_sdo_ipc_transports_TransportShm_swiFxn__I                                              
    0c232440  cbFxn                                                                                     
    0c232460  IPCisr                                                                                    
    0c2324f0  AddAndEnableIPCInterrupt                                                                  
    0c23252c  sendCoreMessageToOtherCores                                                               
    0c232580  sendIPCmessage                                                                            
    0c2325c4  AOcmprss                                                                                  
    0c23270c  AOdecmprss                                                                                
    0c232894  CopyInputHeaders                                                                          
    0c232948  TransposeInputMatrix                                                                      
    0c232a28  wait_qdma                                                                                 
    0c232a40  Notify_registerEventSingle                                                                
    0c233020  Notify_unregisterEventSingle                                                              
    0c233600  ti_sdo_ipc_transports_TransportShm_put__E                                                 
    0c2341a0  ti_sysbios_heaps_HeapMem_freeUnprotected__E                                               
    0c234740  CSL_edma3HwChannelControl                                                                 
    0c234cc0  ti_sdo_ipc_gates_GatePeterson_Instance_init__E                                            
    0c2351e0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_get__E                                         
    0c2351e0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_get__F                                         
    0c235708  _ZN17CAOTimeCalculatorC1EPc                                                               
    0c235708  _ZN17CAOTimeCalculatorC2EPc                                                               
    0c235774  _ZN17CAOTimeCalculator8StartCalEv                                                         
    0c235794  _ZN17CAOTimeCalculator6EndCalEv                                                           
    0c235858  _ZN17CAOTimeCalculator19PrepareStreamToSendEP28StreamStatusAOTimeCalculator               
    0c2358ec  _ZN17CAOTimeCalculator11UpdateTimerEm                                                     
    0c235908  _ZN17CAOTimeCalculator5ResetEv                                                            
    0c235944  _ZN19CAOTimeCalculatorEXC1EPc                                                             
    0c235944  _ZN19CAOTimeCalculatorEXC2EPc                                                             
    0c2359a4  _ZN19CAOTimeCalculatorEX8StartCalEv                                                       
    0c2359c0  _ZN19CAOTimeCalculatorEX6EndCalEv                                                         
    0c235aec  _ZN19CAOTimeCalculatorEX19PrepareStreamToSendEP28StreamStatusAOTimeCalculator             
    0c235b74  _ZN19CAOTimeCalculatorEX5ResetEv                                                          
    0c235bc0  CSL_edma3HwControl                                                                        
    0c2360a0  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Instance_init__E                                 
    0c236580  ti_sysbios_family_c66_Cache_startup__I                                                    
    0c236580  xdc_runtime_Startup_reset__I                                                              
    0c236a60  ListMP_putTail                                                                            
    0c237360  ti_sdo_ipc_heaps_HeapMemMP_getStats__E                                                    
    0c2377a0  ti_sysbios_gates_GateMutexPri_enter__E                                                    
    0c237bc0  Ipc_start                                                                                 
    0c237fc0  ti_sdo_ipc_heaps_HeapMemMP_postInit__I                                                    
    0c2383c0  ti_sysbios_knl_Task_setPri__E                                                             
    0c2387c0  fputs                                                                                     
    0c238ba0  ti_sdo_ipc_Notify_Instance_init__E                                                        
    0c238f80  ti_sdo_ipc_SharedRegion_reserveMemory__E                                                  
    0c238f80  ti_sdo_ipc_SharedRegion_reserveMemory__F                                                  
    0c239360  CSL_edma3HwSetup                                                                          
    0c239720  ti_sdo_utils_NameServer_registerRemoteDriver__E                                           
    0c239ac0  GateMP_sharedMemReq                                                                       
    0c239e40  HeapMemMP_sharedMemReq                                                                    
    0c23a1c0  _Z13GetTimer_pRegi                                                                        
    0c23a248  _Z14StrokeWatchDogi                                                                       
    0c23a2d4  _Z13StartWatchDogi                                                                        
    0c23a30c  _Z12InitWatchDogiibii                                                                     
    0c23a540  ti_sdo_ipc_MessageQ_registerTransport__E                                                  
    0c23a540  ti_sdo_ipc_MessageQ_registerTransport__F                                                  
    0c23a8c0  _ZN9CAODriverC1Ev                                                                         
    0c23a8c0  _ZN9CAODriverC2Ev                                                                         
    0c23a90c  _ZN9CAODriver4OpenEP5CPipeS1_P25ti_sysbios_knl_Swi_Object                                 
    0c23a950  _ZN9CAODriver5ParseEv                                                                     
    0c23ab18  _ZN9CAODriver12InsertToPipeEP5CPipePti                                                    
    0c23ac20  ti_sdo_ipc_GateMP_attach__E                                                               
    0c23ac20  ti_sdo_ipc_GateMP_attach__F                                                               
    0c23af80  ti_sdo_ipc_MessageQ_unregisterTransport__E                                                
    0c23af80  ti_sdo_ipc_MessageQ_unregisterTransport__F                                                
    0c23b2e0  ti_sdo_utils_NameServer_isRegistered__E                                                   
    0c23b640  ti_sdo_utils_NameServer_unregisterRemoteDriver__E                                         
    0c23b9a0  ti_sysbios_knl_Task_schedule__I                                                           
    0c23bce0  ti_sysbios_timers_timer64_Timer_deviceConfig__I                                           
    0c23c000  GateMP_openByAddr                                                                         
    0c23c300  NameServer_getLocal                                                                       
    0c23c600  SharedRegion_getSRPtr                                                                     
    0c23c900  ti_sdo_ipc_GateMP_openRegion0Reserved__E                                                  
    0c23c900  ti_sdo_ipc_GateMP_openRegion0Reserved__F                                                  
    0c23cc00  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_isr__I                                           
    0c23cf00  ti_sdo_ipc_nsremote_NameServerRemoteNotify_attach__E                                      
    0c23cf00  ti_sdo_utils_NameServer_SetupProxy_attach__E                                              
    0c23d200  ti_sdo_ipc_transports_TransportShm_openByAddr__E                                          
    0c23d500  ti_sysbios_knl_Swi_runLoop__I                                                             
    0c23d800  SharedRegion_getPtr                                                                       
    0c23dae0  CSL_edma3GetHwStatus                                                                      
    0c23e0a0  ti_sysbios_heaps_HeapMem_Instance_init__E                                                 
    0c23e360  ti_sysbios_knl_Task_Module_startup__E                                                     
    0c23e620  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_sharedMemReq__E                                  
    0c23e620  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_sharedMemReq__F                                  
    0c23e8c0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_swiFxnRequest__I                               
    0c23eb60  ti_sysbios_knl_Clock_workFunc__E                                                          
    0c23ee00  ListMP_sharedMemReq                                                                       
    0c23f080  __c6xabi_divf                                                                             
    0c23f580  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_disableEvent__E                                  
    0c23f800  ti_sysbios_family_c64p_Hwi_reconfig__E                                                    
    0c23fa80  ti_sysbios_knl_Semaphore_post__E                                                          
    0c23fd00  _ZN9CWatchDogC1Ev                                                                         
    0c23fd00  _ZN9CWatchDogC2Ev                                                                         
    0c23fd64  _ZN9CWatchDog6StrokeEv                                                                    
    0c23fde8  _ZN9CWatchDog8WatchFxnEv                                                                  
    0c23fef0  _ZN9CWatchDog4InitE11EWatchDogIdP14CWatchedObjectP14CMonitorObjectt                       
    0c23ff60  ti_sdo_ipc_MessageQ_SetupTransportProxy_attach__E                                         
    0c23ff60  ti_sdo_ipc_transports_TransportShmSetup_attach__E                                         
    0c2401c0  ti_sysbios_family_c64p_Hwi_dispatchCore__I                                                
    0c240420  xdc_runtime_Startup_startMods__I                                                          
    0c240680  GateMP_enter                                                                              
    0c2408c0  GateMP_leave                                                                              
    0c240b00  __c6xabi_divull                                                                           
    0c240f80  ti_sdo_ipc_GateMP_start__E                                                                
    0c240f80  ti_sdo_ipc_GateMP_start__F                                                                
    0c2411c0  ti_sdo_ipc_family_c647x_Interrupt_Module_startup__E                                       
    0c241400  ti_sysbios_family_c64p_Exception_internalHandler__I                                       
    0c241640  xdc_runtime_Core_createObject__I                                                          
    0c241880  xdc_runtime_System_printfExtend__I                                                        
    0c241ac0  fputc                                                                                     
    0c241ac0  putc                                                                                      
    0c241ce0  setvbuf                                                                                   
    0c241f00  ti_sysbios_knl_Swi_run__I                                                                 
    0c242120  ti_sysbios_timers_timer64_Timer_setPeriodMicroSecs__E                                     
    0c242340  ti_sysbios_family_c64p_Hwi_dispatchAlways                                                 
    0c242540  ti_sdo_ipc_GateMP_getRegion0ReservedSize__E                                               
    0c242540  ti_sdo_ipc_GateMP_getRegion0ReservedSize__F                                               
    0c242740  ti_sdo_ipc_Notify_execMany__I                                                             
    0c242940  ti_sdo_ipc_family_c647x_MultiProcSetup_init__I                                            
    0c242b40  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_sendEvent__E                                     
    0c242d40  ti_sdo_ipc_transports_TransportShm_Instance_finalize__E                                   
    0c242f40  xdc_runtime_Error_policyDefault__E                                                        
    0c243140  ListMP_openByAddr                                                                         
    0c243320  MultiProc_setLocalId                                                                      
    0c243500  _ZN8CAOStackC1Ei                                                                          
    0c243500  _ZN8CAOStackC2Ei                                                                          
    0c243540  _ZN8CAOStackD1Ev                                                                          
    0c243540  _ZN8CAOStackD2Ev                                                                          
    0c243560  _ZN8CAOStack4PushEs                                                                       
    0c2435a0  _ZN8CAOStack3PopEv                                                                        
    0c2435c4  _ZN8CAOStack4FullEv                                                                       
    0c2435f0  _ZN8CAOStack5EmptyEv                                                                      
    0c243610  _ZN8CAOStack7isVaildEv                                                                    
    0c24364c  _ZN8CAOStack8SelfTestEv                                                                   
    0c2436e0  ti_sysbios_gates_GateMutex_enter__E                                                       
    0c2438c0  xdc_runtime_Text_putSite__E                                                               
    0c243aa0  NameServer_getHandle                                                                      
    0c243c60  SharedRegion_isCacheEnabled                                                               
    0c243e20  __c6xabi_divul                                                                            
    0c243fe0  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_registerEvent__E                                 
    0c2441a0  ti_sysbios_timers_timer64_Timer_getFreq__E                                                
    0c244360  HOSTrename                                                                                
    0c244500  HeapMemMP_openByAddr                                                                      
    0c2446a0  SharedRegion_getCacheLineSize                                                             
    0c244840  SharedRegion_getHeap                                                                      
    0c2449e0  ti_sdo_ipc_Notify_Module_startup__E                                                       
    0c244b80  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_enableEvent__E                                   
    0c244d20  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_unregisterEvent__E                               
    0c244ec0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_cbFxn__I                                       
    0c245060  ti_sysbios_family_c66_Cache_block__I                                                      
    0c245200  ti_sysbios_heaps_HeapBuf_Module_startup__E                                                
    0c2453a0  ti_sysbios_timers_timer64_Timer_start__E                                                  
    0c245540  xdc_runtime_Core_constructObject__I                                                       
    0c2456e0  frexp                                                                                     
    0c2456e0  frexpl                                                                                    
    0c245860  ti_sysbios_family_c64p_Exception_dispatch__E                                              
    0c2459e0  ti_sdo_ipc_GateMP_createLocal__E                                                          
    0c2459e0  ti_sdo_ipc_GateMP_createLocal__F                                                          
    0c245b60  ti_sdo_ipc_MessageQ_SetupTransportProxy_sharedMemReq__E                                   
    0c245b60  ti_sdo_ipc_transports_TransportShmSetup_sharedMemReq__E                                   
    0c245ce0  ti_sdo_utils_NameServer_removeLocal__I                                                    
    0c245e60  ti_sysbios_knl_Swi_Instance_init__E                                                       
    0c245fe0  ti_sysbios_knl_Task_exit__E                                                               
    0c246160  ti_sysbios_knl_Task_startCore__E                                                          
    0c2462e0  GateMP_close                                                                              
    0c246440  Notify_intLineRegistered                                                                  
    0c2465a0  sqrt                                                                                      
    0c2465a0  sqrtl                                                                                     
    0c246700  ti_sdo_ipc_gates_GateHWSem_Instance_init__E                                               
    0c246860  ti_sdo_ipc_gates_GatePeterson_enter__E                                                    
    0c2469c0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_finalize__E                           
    0c246b20  ti_sysbios_knl_Swi_post__E                                                                
    0c246c80  xdc_runtime_Text_putMod__E                                                                
    0c246de0  __TI_closefile                                                                            
    0c246f20  getdevice                                                                                 
    0c247060  ldexp                                                                                     
    0c247060  ldexpl                                                                                    
    0c2471a0  ti_sdo_ipc_ListMP_Instance_finalize__E                                                    
    0c2472e0  ti_sdo_ipc_Notify_exec__E                                                                 
    0c2472e0  ti_sdo_ipc_Notify_exec__F                                                                 
    0c247420  ti_sdo_ipc_heaps_HeapMemMP_Instance_finalize__E                                           
    0c247560  ti_sdo_utils_NameServer_Module_startup__E                                                 
    0c2476a0  ti_sysbios_family_c64p_Hwi_Module_startup__E                                              
    0c2477e0  ti_sysbios_gates_GateSwi_enter__E                                                         
    0c247920  ti_sysbios_knl_Semaphore_Instance_init__E                                                 
    0c247a60  ti_sysbios_knl_Task_blockI__E                                                             
    0c247ba0  xdc_runtime_Core_deleteObject__I                                                          
    0c247ce0  xdc_runtime_Text_putLab__E                                                                
    0c247e20  __cxa_vec_ctor                                                                            
    0c247f40  _auto_init_elf                                                                            
    0c248060  CSL_edma3ChannelOpen                                                                      
    0c248180  CSL_edma3ccGetModuleBaseAddr                                                              
    0c2482a0  fseek                                                                                     
    0c2483c0  ti_sdo_ipc_MessageQ_Module_startup__E                                                     
    0c2484e0  ti_sdo_ipc_Notify_create                                                                  
    0c248600  ti_sdo_ipc_family_c647x_Interrupt_intRegister__E                                          
    0c248600  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intRegister__E                    
    0c248720  ti_sysbios_family_c64p_Hwi_Instance_init__E                                               
    0c248840  ti_sysbios_knl_Task_unblockI__E                                                           
    0c248960  _ZN7DDR3MemC1Ev                                                                           
    0c248960  _ZN7DDR3MemC2Ev                                                                           
    0c248998  _ZN7DDR3MemD1Ev                                                                           
    0c248998  _ZN7DDR3MemD2Ev                                                                           
    0c2489ac  _ZN7DDR3Mem5writeEPsi                                                                     
    0c248a60  _ZN24StreamCommandMotorConfigC1Ev                                                         
    0c248c60  __TI_wrt_ok                                                                               
    0c248d60  __c6xabi_fixdull                                                                          
    0c248e60  atoi                                                                                      
    0c248f60  ti_sdo_ipc_Notify_Instance_finalize__E                                                    
    0c249060  ti_sdo_ipc_SharedRegion_attach__E                                                         
    0c249060  ti_sdo_ipc_SharedRegion_attach__F                                                         
    0c249160  ti_sdo_ipc_SharedRegion_clearReservedMemory__E                                            
    0c249160  ti_sdo_ipc_SharedRegion_clearReservedMemory__F                                            
    0c249260  ti_sdo_ipc_gates_GateHWSem_Module_startup__E                                              
    0c249360  ti_sdo_ipc_gates_GateHWSem_enter__E                                                       
    0c249460  ti_sdo_ipc_gates_GateMPSupportNull_enter__E                                               
    0c249560  ti_sysbios_family_c64p_Hwi_Instance_finalize__E                                           
    0c249660  ti_sysbios_gates_GateMutexPri_leave__E                                                    
    0c249760  ti_sysbios_knl_Swi_restoreHwi__E                                                          
    0c249860  ti_sysbios_timers_timer64_Timer_initDevice__I                                             
    0c249960  ti_sysbios_xdcruntime_GateThreadSupport_leave__E                                          
    0c249a60  xdc_runtime_Error_print__E                                                                
    0c249b60  xdc_runtime_Memory_alloc__E                                                               
    0c249c60  xdc_runtime_Startup_exec__E                                                               
    0c249d60  HOSTlseek                                                                                 
    0c249e40  HOSTopen                                                                                  
    0c249f20  HOSTwrite                                                                                 
    0c24a000  _Z9SYS_abortv                                                                             
    0c24a018  _Z5cbFxnttjjj                                                                             
    0c24a038  main                                                                                      
    0c24a0e0  _ZN37StreamCommandWirelessConfigureChannelC1Ev                                            
    0c24a1c0  __c6xabi_fixdlli                                                                          
    0c24a2a0  __c6xabi_divi                                                                             
    0c24a2a0  __divi                                                                                    
    0c24a380  close                                                                                     
    0c24a460  exit                                                                                      
    0c24a460  xdc_runtime_System_exitStd__E                                                             
    0c24a540  ltoa                                                                                      
    0c24a620  memset                                                                                    
    0c24a700  printf                                                                                    
    0c24a7e0  ti_sdo_ipc_family_c647x_Interrupt_intShmStub__I                                           
    0c24a8c0  ti_sdo_ipc_gates_GateMPSupportNull_leave__E                                               
    0c24a9a0  ti_sysbios_heaps_HeapMem_alloc__E                                                         
    0c24aa80  ti_sysbios_knl_Swi_Instance_finalize__E                                                   
    0c24ab60  ti_sysbios_knl_Clock_TimerProxy_startup__E                                                
    0c24ab60  ti_sysbios_timers_timer64_Timer_startup__E                                                
    0c24ac40  xdc_runtime_Text_visitRope2__I                                                            
    0c24ad20  HOSTread                                                                                  
    0c24ade0  HOSTunlink                                                                                
    0c24aea0  ListMP_create                                                                             
    0c24af60  __cxa_atexit                                                                              
    0c24b020  _Znaj                                                                                     
    0c24b020  _Znwj                                                                                     
    0c24b0e0  __TI_doflush                                                                              
    0c24b1a0  __c6xabi_fixflli                                                                          
    0c24b260  __c6xabi_fltllid                                                                          
    0c24b320  __c6xabi_fltllif                                                                          
    0c24b3e0  __c6xabi_divu                                                                             
    0c24b3e0  __divu                                                                                    
    0c24b4a0  __c6xabi_remi                                                                             
    0c24b4a0  __remi                                                                                    
    0c24b620  CSL_edma3HwChannelSetupQue                                                                
    0c24b6e0  CSL_edma3Open                                                                             
    0c24b7a0  ti_sdo_ipc_GateMP_create                                                                  
    0c24b860  ti_sdo_ipc_ListMP_create                                                                  
    0c24b920  ti_sdo_ipc_Notify_SetupProxy_attach__E                                                    
    0c24b920  ti_sdo_ipc_family_c647x_NotifySetup_attach__E                                             
    0c24b9e0  ti_sdo_ipc_gates_GatePeterson_Object__create__S                                           
    0c24baa0  ti_sdo_ipc_gates_GatePeterson_create                                                      
    0c24bb60  ti_sdo_ipc_heaps_HeapMemMP_Object__create__S                                              
    0c24bc20  ti_sdo_ipc_heaps_HeapMemMP_create                                                         
    0c24bce0  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_create                                           
    0c24bda0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__create__S                              
    0c24be60  ti_sdo_ipc_nsremote_NameServerRemoteNotify_create                                         
    0c24bf20  ti_sdo_ipc_nsremote_NameServerRemoteNotify_detach__E                                      
    0c24bf20  ti_sdo_utils_NameServer_SetupProxy_detach__E                                              
    0c24bfe0  ti_sdo_ipc_transports_TransportShm_Object__create__S                                      
    0c24c0a0  ti_sdo_ipc_transports_TransportShm_create                                                 
    0c24c160  ti_sysbios_family_c64p_Hwi_create                                                         
    0c24c220  ti_sysbios_gates_GateAll_leave__E                                                         
    0c24c2e0  ti_sysbios_heaps_HeapMem_getStats__E                                                      
    0c24c3a0  ti_sysbios_knl_Clock_logTick__E                                                           
    0c24c460  ti_sysbios_knl_Swi_schedule__I                                                            
    0c24c520  __TI_tls_init                                                                             
    0c24c5e0  xdc_runtime_Assert_raise__I                                                               
    0c24c6a0  xdc_runtime_Error_setX__E                                                                 
    0c24c760  xdc_runtime_SysMin_abort__E                                                               
    0c24c760  xdc_runtime_System_SupportProxy_abort__E                                                  
    0c24c820  xdc_runtime_SysMin_flush__E                                                               
    0c24c820  xdc_runtime_System_SupportProxy_flush__E                                                  
    0c24c8e0  _ZN13CErrorSupportC1Ev                                                                    
    0c24c8e0  _ZN13CErrorSupportC2Ev                                                                    
    0c24c904  _ZN13CErrorSupport15IsErrorDetectedEv                                                     
    0c24c928  _ZN13CErrorSupport15ResetErrorValueEv                                                     
    0c24c944  _ZN13CErrorSupport8SetErrorEi                                                             
    0c24c980  HOSTclose                                                                                 
    0c24ca20  HeapMemMP_create                                                                          
    0c24cac0  _ZN28StreamStatusAOTimeCalculatorC1Ev                                                     
    0c24cb60  __TI_cleanup                                                                              
    0c24cc00  __c6xabi_fixfu                                                                            
    0c24cca0  __c6xabi_fltulld                                                                          
    0c24cd40  __cxa_ia64_exit                                                                           
    0c24cde0  __c6xabi_remu                                                                             
    0c24cde0  __remu                                                                                    
    0c24ce80  _c_int00                                                                                  
    0c24cf20  ti_sysbios_family_c64p_Hwi_plug__E                                                        
    0c24cfc0  CSL_edma3ParamSetup                                                                       
    0c24d060  memcpy                                                                                    
    0c24d100  ti_sdo_ipc_family_c647x_Interrupt_intUnregister__E                                        
    0c24d100  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intUnregister__E                  
    0c24d1a0  ti_sdo_ipc_gates_GatePeterson_leave__E                                                    
    0c24d240  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Instance_finalize__E                             
    0c24d2e0  ti_sysbios_family_c64p_Exception_Module_startup__E                                        
    0c24d380  ti_sysbios_family_c64p_Hwi_dispatchC__I                                                   
    0c24d420  ti_sysbios_family_c64p_Hwi_getStackInfo__E                                                
    0c24d420  ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E                                               
    0c24d4c0  ti_sysbios_gates_GateSwi_leave__E                                                         
    0c24d560  ti_sysbios_heaps_HeapMem_init__I                                                          
    0c24d600  ti_sysbios_knl_Swi_construct                                                              
    0c24d6a0  ti_sysbios_knl_Task_allBlockedFunction__I                                                 
    0c24d740  ti_sysbios_timers_timer64_Timer_stop__E                                                   
    0c24d7e0  xdc_runtime_Core_assignParams__I                                                          
    0c24d880  xdc_runtime_SysMin_putch__E                                                               
    0c24d880  xdc_runtime_System_SupportProxy_putch__E                                                  
    0c24d920  xdc_runtime_System_formatNum__I                                                           
    0c24d9c0  xdc_runtime_System_putchar__I                                                             
    0c24da60  xdc_runtime_Text_printVisFxn__I                                                           
    0c24db00  xdc_runtime_Text_xprintf__I                                                               
    0c24dba0  xdc_runtime_knl_GateThread_Object__create__S                                              
    0c24dc40  xdc_runtime_knl_GateThread_create                                                         
    0c24dce0  _ZN22StreamMotorMotorStatusC1Ev                                                           
    0c24dd60  _ZN25CAODigtalOutPutGeneration8GenerateEiiisss                                            
    0c24dde0  _ZN25CAODigtalOutPutGenerationC1Ev                                                        
    0c24de60  _ZN25StreamCommandImpCalibInfoC1Ev                                                        
    0c24dee0  _ZN33StreamCommandFilterParamsStimulusC1Ev                                                
    0c24df60  __TI_readmsg                                                                              
    0c24dfe0  __c6xabi_fixdu                                                                            
    0c24e060  __c6xabi_llshl                                                                            
    0c24e0e0  ti_sysbios_family_c62_TaskSupport_swap__E                                                 
    0c24e0e0  ti_sysbios_knl_Task_SupportProxy_swap__E                                                  
    0c24e160  CSL_edma3GetParamHandle                                                                   
    0c24e1e0  finddevice                                                                                
    0c24e260  strncpy                                                                                   
    0c24e2e0  ti_sdo_ipc_gates_GateHWSem_Object__create__S                                              
    0c24e360  ti_sdo_ipc_gates_GateHWSem_create                                                         
    0c24e3e0  ti_sdo_ipc_gates_GateMPSupportNull_Object__create__S                                      
    0c24e460  ti_sdo_ipc_gates_GateMPSupportNull_create                                                 
    0c24e4e0  ti_sysbios_BIOS_atExitFunc__I                                                             
    0c24e560  ti_sysbios_BIOS_registerRTSLock__I                                                        
    0c24e5e0  ti_sysbios_family_c66_Cache_invL1pAll__E                                                  
    0c24e660  ti_sysbios_gates_GateAll_Object__create__S                                                
    0c24e6e0  ti_sysbios_gates_GateHwi_Object__create__S                                                
    0c24e760  ti_sysbios_gates_GateMutexPri_Object__create__S                                           
    0c24e7e0  ti_sysbios_gates_GateMutex_Object__create__S                                              
    0c24e860  ti_sysbios_gates_GateSwi_Object__create__S                                                
    0c24e8e0  ti_sysbios_hal_Hwi_checkStack                                                             
    0c24e960  ti_sysbios_hal_Hwi_initStack                                                              
    0c24e9e0  ti_sysbios_heaps_HeapMem_Object__create__S                                                
    0c24ea60  ti_sysbios_knl_Clock_doTick__I                                                            
    0c24eae0  ti_sysbios_knl_Idle_run__E                                                                
    0c24eb60  ti_sysbios_knl_Semaphore_pendTimeout__I                                                   
    0c24ebe0  ti_sysbios_knl_Swi_startup__E                                                             
    0c24ec60  ti_sysbios_knl_Task_restore__E                                                            
    0c24ece0  malloc                                                                                    
    0c24ed60  ti_sysbios_xdcruntime_GateThreadSupport_create                                            
    0c24ede0  remove                                                                                    
    0c24ede0  unlink                                                                                    
    0c24ee60  xdc_runtime_Core_assignLabel__I                                                           
    0c24eee0  xdc_runtime_SysMin_output__I                                                              
    0c24ef60  xdc_runtime_System_atexit__E                                                              
    0c24efe0  xdc_runtime_System_aprintf_va__E                                                          
    0c24efe0  xdc_runtime_System_aprintf_va__F                                                          
    0c24efe0  xdc_runtime_System_avprintf__E                                                            
    0c24f060  xdc_runtime_System_processAtExit__E                                                       
    0c24f0e0  xdc_runtime_System_printf_va__E                                                           
    0c24f0e0  xdc_runtime_System_printf_va__F                                                           
    0c24f0e0  xdc_runtime_System_vprintf__E                                                             
    0c24f160  GateMP_Params_init                                                                        
    0c24f1c0  HeapMemMP_Params_init                                                                     
    0c24f220  _ZN16CAOPEngineDriver15GetSamplingRateEv                                                  
    0c24f280  _ZN16SAcknowledgementC1EPv                                                                
    0c24f2e0  _ZN22StreamStatusGenMessageC1Ev                                                           
    0c24f340  _ZN23StreamCommandGenMessageC1Ev                                                          
    0c24f3a0  _ZN25StreamCommand16WordsBlockC1Ev                                                        
    0c24f400  _ZN25StreamCommandFEBoardConfgC1Ev                                                        
    0c24f460  _ZN25StreamCommandUD_StartStopC1Ev                                                        
    0c24f4c0  _ZN27StreamStatusAlabSnRHWStatusC1Ev                                                      
    0c24f520  _ZN28StreamCommandMGPlusImpValuesC1Ev                                                     
    0c24f580  _ZN28StreamCommandSetChannelStateC1Ev                                                     
    0c24f5e0  _ZN30StreamStatusScriptRunningStateC1Ev                                                   
    0c24f640  _ZN32StreamCommandStimulatorScriptRunC1Ev                                                 
    0c24f6a0  __TI_frcmpyd_div                                                                          
    0c24f700  __TI_writemsg                                                                             
    0c24f758  C$$IO$$                                                                                   
    0c24f760  __c6xabi_llshru                                                                           
    0c24f7c0  ti_sysbios_family_c64p_Hwi_switchAndDispatch__I                                           
    0c24f820  ti_sysbios_family_xxx_Hwi_switchAndRunFunc                                                
    0c24f880  lseek                                                                                     
    0c24f8e0  memccpy                                                                                   
    0c24f940  strcmp                                                                                    
    0c24f9a0  strcpy                                                                                    
    0c24fa00  ti_sdo_ipc_GateMP_Object__delete__S                                                       
    0c24fa60  ti_sdo_ipc_ListMP_Object__delete__S                                                       
    0c24fac0  ti_sdo_ipc_Notify_SetupProxy_sharedMemReq__E                                              
    0c24fac0  ti_sdo_ipc_family_c647x_NotifySetup_sharedMemReq__E                                       
    0c24fb20  ti_sdo_ipc_gates_GatePeterson_Object__delete__S                                           
    0c24fb80  ti_sdo_ipc_GateMP_RemoteCustom1Proxy_sharedMemReq__E                                      
    0c24fb80  ti_sdo_ipc_gates_GatePeterson_sharedMemReq__E                                             
    0c24fbe0  ti_sdo_ipc_heaps_HeapMemMP_Object__delete__S                                              
    0c24fc40  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__delete__S                                
    0c24fca0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__delete__S                              
    0c24fd00  ti_sdo_ipc_transports_TransportShm_Object__delete__S                                      
    0c24fd60  ti_sdo_utils_List_construct                                                               
    0c24fdc0  ti_sysbios_BIOS_errorRaiseHook__I                                                         
    0c24fe20  ti_sysbios_BIOS_removeRTSLock__I                                                          
    0c24fe80  ti_sysbios_BIOS_startFunc__I                                                              
    0c24fee0  ti_sysbios_family_c62_TaskSupport_start__E                                                
    0c24fee0  ti_sysbios_knl_Task_SupportProxy_start__E                                                 
    0c24ff40  ti_sysbios_family_c64p_EventCombiner_Module_startup__E                                    
    0c24ffa0  ti_sysbios_family_c64p_Hwi_Object__delete__S                                              
    0c250000  ti_sysbios_family_c66_Cache_Module_startup__E                                             
    0c250060  ti_sysbios_gates_GateAll_enter__E                                                         
    0c2500c0  ti_sysbios_gates_GateMutexPri_Object__delete__S                                           
    0c250120  ti_sysbios_gates_GateMutexPri_construct                                                   
    0c250180  ti_sysbios_gates_GateMutex_Object__delete__S                                              
    0c2501e0  ti_sysbios_heaps_HeapMem_free__E                                                          
    0c250240  ti_sysbios_knl_Clock_Module_startup__E                                                    
    0c2502a0  ti_sysbios_knl_Queue_construct                                                            
    0c250300  ti_sysbios_knl_Semaphore_construct                                                        
    0c250360  ti_sysbios_knl_Swi_Module_startup__E                                                      
    0c2503c0  ti_sysbios_knl_Task_enter__I                                                              
    0c250420  ti_sysbios_xdcruntime_GateThreadSupport_Object__delete__S                                 
    0c250480  write                                                                                     
    0c2504e0  xdc_runtime_Memory_valloc__E                                                              
    0c250540  xdc_runtime_Text_cordText__E                                                              
    0c2505a0  xdc_runtime_knl_GateThread_Object__delete__S                                              
    0c250600  _Z18iFValueDriveIsTruet                                                                   
    0c250640  _ZN16CCriticalSectionC1Ev                                                                 
    0c250680  _ZN17StreamStatusBlockC1Ev                                                                
    0c2506c0  _ZN17StreamStatusWavesC1Ev                                                                
    0c250700  _ZN18CFilterPEngineCond17EnableLFPCompressEb                                              
    0c250740  _ZN18CFilterPEngineCond20TransformStatusBlockEP10StreamBase                               
    0c250780  _ZN18CFilterPEngineCond21TransformCommandBlockEP10StreamBase                              
    0c2507c0  _ZN18CFilterPEngineCond24SetLFPCompressChannelCntEi                                       
    0c250800  _ZN18StreamCommandBlockC1Ev                                                               
    0c250840  _ZN20StreamStatusDevIdentC1Ev                                                             
    0c250880  _ZN21CFilterScriptExecuter7AcquireEv                                                      
    0c2508c0  _ZN21StreamCommandStimStopC1Ev                                                            
    0c250900  _ZN21StreamStatusHWVersionC1Ev                                                            
    0c250940  _ZN22CAOPEngineDriverParamsC1Ev                                                           
    0c250980  _ZN22StreamCommandStimStartC1Ev                                                           
    0c2509c0  _ZN22StreamCommandUD_MapingC1Ev                                                           
    0c250a00  _ZN22StreamStatusStimStatusC1Ev                                                           
    0c250a40  _ZN23StreamCommandMotorSpeedC1Ev                                                          
    0c250a80  _ZN23StreamStatusMotorStatusC1Ev                                                          
    0c250ac0  _ZN24StreamCommandElectParams6IsStimEv                                                    
    0c250b00  _ZN24StreamCommandMotorMoveUpC1Ev                                                         
    0c250b40  _ZN24StreamCommandMotorSetPosC1Ev                                                         
    0c250b80  _ZN24VariablesHashElementTypeC1Ev                                                         
    0c250bc0  _ZN25CAODigtalOutPutGeneration5StartEi                                                    
    0c250c00  _ZN26StreamCommandMotorMoveDownC1Ev                                                       
    0c250c40  _ZN27StreamStatusAcknowledgementC1Ev                                                      
    0c250c80  _ZN29StreamCommandModuleParamsBaseC1Ev                                                    
    0c250cc0  _ZN31StreamCommandMGPlusImpStartStopC1Ev                                                  
    0c250d00  _ZN33StreamCommandFilterParamsStimulus14SetStimVoltageEi                                  
    0c250d40  _ZN35CAOFilterImpedanceMeasurementParamsC1Ev                                              
    0c250d80  _ZN35StreamCommandMGPlusHeadStageWorkingC1Ev                                              
    0c250dc0  _ZN5IPipeC1Ev                                                                             
    0c250e00  _ZN7AFilterC1Ev                                                                           
    0c250e40  _ZN7AParamsC1Ev                                                                           
    0c250e80  _ZN8AO_FLOATaSEf                                                                          
    0c250ec0  _ZN8AO_FLOATcvfEv                                                                         
    0c250f00  _ZN8AO_INT32aSEi                                                                          
    0c250f40  _ZN8AO_INT32cviEv                                                                         
    0c250f80  _ZN8PipeUtilC1EPtii                                                                       
    0c250fc0  _ZN9AO_ResultC1Ev                                                                         
    0c251000  _ZN9AO_UINT32aSEj                                                                         
    0c251040  _ZN9AO_UINT32cvjEv                                                                        
    0c251080  _ZN9SDevIdentC1Ev                                                                         
    0c2510c0  __c6xabi_isinf                                                                            
    0c251140  __c6xabi_strasgi_64plus                                                                   
    0c251140  __strasgi_64plus                                                                          
    0c251180  _args_main                                                                                
    0c2511c0  _subcull                                                                                  
    0c251200  ti_sysbios_family_c62_TaskSupport_buildTaskStack                                          
    0c251240  CSL_edma3ChannelClose                                                                     
    0c251280  free                                                                                      
    0c2512c0  ti_sdo_ipc_family_c647x_Interrupt_intClear__E                                             
    0c2512c0  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intClear__E                       
    0c251300  ti_sdo_ipc_family_c647x_Interrupt_intSend__E                                              
    0c251300  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intSend__E                        
    0c251340  ti_sdo_ipc_GateMP_RemoteSystemProxy_Handle__label__S                                      
    0c251340  ti_sdo_ipc_gates_GateHWSem_Handle__label__S                                               
    0c251380  ti_sdo_ipc_gates_GateHWSem_Object__delete__S                                              
    0c2513c0  ti_sdo_ipc_gates_GateHWSem_leave__E                                                       
    0c251400  ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Handle__label__S                                     
    0c251400  ti_sdo_ipc_gates_GateMPSupportNull_Handle__label__S                                       
    0c251440  ti_sdo_ipc_gates_GateMPSupportNull_Object__delete__S                                      
    0c251480  ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Handle__label__S                                     
    0c251480  ti_sdo_ipc_gates_GatePeterson_Handle__label__S                                            
    0c2514c0  ti_sdo_ipc_gates_GatePeterson_Instance_finalize__E                                        
    0c251500  ti_sdo_ipc_heaps_HeapMemMP_Handle__label__S                                               
    0c251540  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Handle__label__S                                 
    0c251580  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_setNotifyHandle__E                               
    0c2515c0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Handle__label__S                               
    0c2515c0  ti_sdo_utils_NameServer_SetupProxy_Handle__label__S                                       
    0c251600  ti_sdo_ipc_transports_TransportShm_Handle__label__S                                       
    0c251640  ti_sdo_utils_List_putHead__E                                                              
    0c251680  ti_sdo_utils_List_put__E                                                                  
    0c2516c0  ti_sdo_utils_NameServer_Object__get__S                                                    
    0c251700  ti_sysbios_BIOS_exitFunc__I                                                               
    0c251740  ti_sysbios_BIOS_rtsLock__I                                                                
    0c251780  ti_sysbios_BIOS_rtsUnlock__I                                                              
    0c2517c0  ti_sysbios_family_c64p_Hwi_disableInterrupt__E                                            
    0c2517c0  ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E                                           
    0c251800  ti_sysbios_family_c64p_Hwi_enableInterrupt__E                                             
    0c251800  ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E                                            
    0c251840  ti_sysbios_gates_GateAll_Handle__label__S                                                 
    0c251880  ti_sysbios_gates_GateAll_Object__delete__S                                                
    0c2518c0  ti_sysbios_gates_GateHwi_Handle__label__S                                                 
    0c2518c0  xdc_runtime_Main_Module_GateProxy_Handle__label__S                                        
    0c2518c0  xdc_runtime_System_Module_GateProxy_Handle__label__S                                      
    0c251900  ti_sysbios_gates_GateHwi_Object__delete__S                                                
    0c251940  ti_sysbios_gates_GateMutexPri_Handle__label__S                                            
    0c251980  ti_sysbios_gates_GateMutexPri_Instance_init__E                                            
    0c2519c0  ti_sysbios_gates_GateMutexPri_destruct                                                    
    0c251a00  ti_sysbios_BIOS_RtsGateProxy_Handle__label__S                                             
    0c251a00  ti_sysbios_gates_GateMutex_Handle__label__S                                               
    0c251a00  ti_sysbios_heaps_HeapMem_Module_GateProxy_Handle__label__S                                
    0c251a40  ti_sysbios_gates_GateMutex_Instance_init__E                                               
    0c251a80  ti_sysbios_gates_GateMutex_leave__E                                                       
    0c251ac0  ti_sdo_ipc_Notify_Module_GateProxy_Handle__label__S                                       
    0c251ac0  ti_sysbios_gates_GateSwi_Handle__label__S                                                 
    0c251b00  ti_sysbios_gates_GateSwi_Object__delete__S                                                
    0c251b40  ti_sysbios_heaps_HeapMem_Handle__label__S                                                 
    0c251b40  xdc_runtime_Memory_HeapProxy_Handle__label__S                                             
    0c251b80  ti_sysbios_heaps_HeapMem_Object__delete__S                                                
    0c251bc0  ti_sysbios_heaps_HeapMem_Object__get__S                                                   
    0c251c00  ti_sysbios_knl_Semaphore_destruct                                                         
    0c251c40  ti_sysbios_knl_Swi_Object__get__S                                                         
    0c251c80  ti_sysbios_knl_Swi_destruct                                                               
    0c251cc0  ti_sysbios_knl_Task_Object__get__S                                                        
    0c251d00  xdc_runtime_Error_check__E                                                                
    0c251d40  xdc_runtime_Error_init__E                                                                 
    0c251d80  xdc_runtime_GateNull_Handle__label__S                                                     
    0c251dc0  xdc_runtime_GateNull_Object__create__S                                                    
    0c251e00  xdc_runtime_GateNull_Object__delete__S                                                    
    0c251e40  xdc_runtime_Registry_findById__E                                                          
    0c251e80  xdc_runtime_SysMin_Module_startup__E                                                      
    0c251ec0  xdc_runtime_SysMin_exit__E                                                                
    0c251ec0  xdc_runtime_System_SupportProxy_exit__E                                                   
    0c251f00  xdc_runtime_System_abort__E                                                               
    0c251f40  xdc_runtime_System_aprintf__E                                                             
    0c251f80  xdc_runtime_System_exit__E                                                                
    0c251fc0  xdc_runtime_System_printf__E                                                              
    0c252000  xdc_runtime_knl_GateThread_Handle__label__S                                               
    0c252040  xdc_runtime_knl_GateThread_Instance_init__E                                               
    0c252080  MultiProc_getBaseIdOfCluster                                                              
    0c2520a0  MultiProc_getNumProcessors                                                                
    0c2520c0  MultiProc_self                                                                            
    0c2520e0  NameServer_addUInt32                                                                      
    0c252100  NameServer_getLocalUInt32                                                                 
    0c252120  NameServer_removeEntry                                                                    
    0c252140  _GateMP_virtToPhys                                                                        
    0c252160  _Z21__default_new_handlerv                                                                
    0c252180  _ZN10__cxxabiv117__class_type_infoD0Ev                                                    
    0c2521a0  _ZN10__cxxabiv117__class_type_infoD1Ev                                                    
    0c2521a0  _ZN10__cxxabiv117__class_type_infoD2Ev                                                    
    0c2521c0  _ZN10__cxxabiv120__si_class_type_infoD0Ev                                                 
    0c2521e0  _ZN10__cxxabiv120__si_class_type_infoD1Ev                                                 
    0c2521e0  _ZN10__cxxabiv120__si_class_type_infoD2Ev                                                 
    0c252200  _ZN10__cxxabiv121__vmi_class_type_infoD0Ev                                                
    0c252220  _ZN10__cxxabiv121__vmi_class_type_infoD1Ev                                                
    0c252220  _ZN10__cxxabiv121__vmi_class_type_infoD2Ev                                                
    0c252240  _ZN14AO_4BYTES_TYPEC1EPv                                                                  
    0c252260  _ZN14AO_4BYTES_TYPEC2EPv                                                                  
    0c252280  _ZN15StreamDataBlockC1Ev                                                                  
    0c2522a0  _ZN16CAOPEngineDriver14GetXmtLineCopyEv                                                   
    0c2522c0  _ZN16CAOPEngineDriver23IsSecondHeadStageActiveEv                                          
    0c2522e0  _ZN16CCriticalSection4LockEv                                                              
    0c252300  _ZN16CCriticalSection6UnlockEv                                                            
    0c252320  _ZN16CCriticalSectionD0Ev                                                                 
    0c252340  _ZN16CCriticalSectionD1Ev                                                                 
    0c252360  _ZN17StreamStatusBlockC2Ev                                                                
    0c252380  _ZN17Uint32ValuesArr16C1EPv                                                               
    0c2523a0  _ZN17Uint32ValuesArr16ixEi                                                                
    0c2523c0  _ZN18StreamCommandBlockC2Ev                                                               
    0c2523e0  _ZN21CFilterScriptExecuter10ForceFlushEv                                                  
    0c252400  _ZN21CFilterScriptExecuter16GetRunningStatusEv                                            
    0c252420  _ZN21CFilterScriptExecuter9GetParamsEv                                                    
    0c252440  _ZN22StreamStatusGenMessageC2Ev                                                           
    0c252460  _ZN24StreamCommandElectParams14GetCableLengthEv                                           
    0c252480  _ZN25CAODigtalOutPutGeneration4StopEv                                                     
    0c2524a0  _ZN29CAOFilterScriptExecuterParamsC1Ev                                                    
    0c2524c0  _ZN29StreamCommandModuleParamsBaseC2Ev                                                    
    0c2524e0  _ZN5IPipeC2Ev                                                                             
    0c252500  _ZN7AFilter13AddSourcePipeEP5CPipe                                                        
    0c252520  _ZN7AFilter13AddTargetPipeEP5CPipe                                                        
    0c252540  _ZN7AFilter6CreateEP7AParams                                                              
    0c252560  _ZN7AFilter7DestroyEv                                                                     
    0c252580  _ZN7AFilter7SetDataEPht                                                                   
    0c2525a0  _ZN7AFilter9SetParamsEP7AParams                                                           
    0c2525c0  _ZN7AFilterC2Ev                                                                           
    0c2525e0  _ZN7AParams13SetParamsTypeE12E_ParamsType                                                 
    0c252600  _ZN7AParamsC2Ev                                                                           
    0c252620  _ZN7CFilter13GetScanStatusEv                                                              
    0c252640  _ZN8AO_FLOATC1EPv                                                                         
    0c252660  _ZN8AO_INT32C1EPv                                                                         
    0c252680  _ZN9AO_UINT32C1EPv                                                                        
    0c2526a0  _ZN9CAODriver13BlockReceivedEv                                                            
    0c2526c0  _ZN9CAODriver5CloseEv                                                                     
    0c2526e0  _ZN9CAODriver6FormatEv                                                                    
    0c252700  _ZN9CAODriver6HandleEPti                                                                  
    0c252720  _ZN9CAODriver8GetBlockEv                                                                  
    0c252740  _ZN9CAODriver9BlockSentEv                                                                 
    0c252760  _ZN9CAODriver9GetParamsEv                                                                 
    0c252780  _ZN9CAODriver9SendBlockEv                                                                 
    0c2527a0  _ZN9CAODriver9SetParamsEP7AParams                                                         
    0c2527c0  _ZN9CWatchDog10IsDisabledEv                                                               
    0c2527e0  _ZN9CWatchDog10SetStoppedEv                                                               
    0c252800  _ZN9CWatchDog6EnableEv                                                                    
    0c252820  _ZN9CWatchDog7DisableEv                                                                   
    0c252840  _ZN9CWatchDog9IsStoppedEv                                                                 
    0c252860  _ZdaPv                                                                                    
    0c252860  _ZdlPv                                                                                    
    0c252880  __abort_execution                                                                         
    0c2528a0  __c6xabi_errno_addr                                                                       
    0c2528c0  __cxa_pure_virtual                                                                        
    0c2528e0  _nop                                                                                      
    0c252940  _register_lock                                                                            
    0c252960  _register_synch_api                                                                       
    0c252980  _register_unlock                                                                          
    0c2529a0  ti_sysbios_family_c62_TaskSupport_glue                                                    
    0c2529c0  C$$EXIT                                                                                   
    0c2529c0  abort                                                                                     
    0c2529c0  xdc_runtime_System_abortStd__E                                                            
    0c2529e0  CSL_edma3Close                                                                            
    0c252a00  CSL_edma3Init                                                                             
    0c252a20  CSL_edma3ParamWriteWord                                                                   
    0c252a40  __TI_decompress_none                                                                      
    0c252a60  __TI_decompress_rle24                                                                     
    0c252a80  ti_sdo_ipc_GateMP_Params__init__S                                                         
    0c252aa0  ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Proxy__abstract__S                                   
    0c252ac0  ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Proxy__delegate__S                                   
    0c252ae0  ti_sdo_ipc_GateMP_RemoteCustom1Proxy_create                                               
    0c252b00  ti_sdo_ipc_GateMP_RemoteCustom1Proxy_delete                                               
    0c252b20  ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Proxy__abstract__S                                   
    0c252b40  ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Proxy__delegate__S                                   
    0c252b60  ti_sdo_ipc_GateMP_RemoteCustom2Proxy_create                                               
    0c252b80  ti_sdo_ipc_GateMP_RemoteCustom2Proxy_delete                                               
    0c252ba0  ti_sdo_ipc_GateMP_RemoteSystemProxy_Proxy__abstract__S                                    
    0c252bc0  ti_sdo_ipc_GateMP_RemoteSystemProxy_Proxy__delegate__S                                    
    0c252be0  ti_sdo_ipc_GateMP_RemoteSystemProxy_create                                                
    0c252c00  ti_sdo_ipc_GateMP_RemoteSystemProxy_delete                                                
    0c252c20  ti_sdo_ipc_GateMP_delete                                                                  
    0c252c40  ti_sdo_ipc_GateMP_getSharedAddr__E                                                        
    0c252c40  ti_sdo_ipc_GateMP_getSharedAddr__F                                                        
    0c252c60  ti_sdo_ipc_ListMP_Params__init__S                                                         
    0c252c80  ti_sdo_ipc_ListMP_delete                                                                  
    0c252ca0  ti_sdo_ipc_MessageQ_Object__get__S                                                        
    0c252cc0  ti_sdo_ipc_Notify_Module_GateProxy_enter__E                                               
    0c252ce0  ti_sdo_ipc_Notify_Module_GateProxy_leave__E                                               
    0c252d00  ti_sdo_ipc_family_c647x_Interrupt_intDisable__E                                           
    0c252d00  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intDisable__E                     
    0c252d20  ti_sdo_ipc_family_c647x_Interrupt_intEnable__E                                            
    0c252d20  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intEnable__E                      
    0c252d40  ti_sdo_ipc_Notify_SetupProxy_numIntLines__E                                               
    0c252d40  ti_sdo_ipc_family_c647x_NotifySetup_numIntLines__E                                        
    0c252d60  ti_sdo_ipc_GateMP_RemoteSystemProxy_Params__init__S                                       
    0c252d60  ti_sdo_ipc_gates_GateHWSem_Params__init__S                                                
    0c252d80  ti_sdo_ipc_GateMP_RemoteSystemProxy_getReservedMask__E                                    
    0c252d80  ti_sdo_ipc_gates_GateHWSem_getReservedMask__E                                             
    0c252da0  ti_sdo_ipc_GateMP_RemoteSystemProxy_query__E                                              
    0c252da0  ti_sdo_ipc_gates_GateHWSem_query__E                                                       
    0c252dc0  ti_sdo_ipc_GateMP_RemoteSystemProxy_sharedMemReq__E                                       
    0c252dc0  ti_sdo_ipc_gates_GateHWSem_sharedMemReq__E                                                
    0c252de0  ti_sdo_ipc_gates_GateMPSupportNull_Instance_init__E                                       
    0c252e00  ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Params__init__S                                      
    0c252e00  ti_sdo_ipc_gates_GateMPSupportNull_Params__init__S                                        
    0c252e20  ti_sdo_ipc_GateMP_RemoteCustom2Proxy_getReservedMask__E                                   
    0c252e20  ti_sdo_ipc_gates_GateMPSupportNull_getReservedMask__E                                     
    0c252e40  ti_sdo_ipc_GateMP_RemoteCustom2Proxy_query__E                                             
    0c252e40  ti_sdo_ipc_gates_GateMPSupportNull_query__E                                               
    0c252e60  ti_sdo_ipc_GateMP_RemoteCustom2Proxy_sharedMemReq__E                                      
    0c252e60  ti_sdo_ipc_gates_GateMPSupportNull_sharedMemReq__E                                        
    0c252e80  ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Params__init__S                                      
    0c252e80  ti_sdo_ipc_gates_GatePeterson_Params__init__S                                             
    0c252ea0  ti_sdo_ipc_GateMP_RemoteCustom1Proxy_getReservedMask__E                                   
    0c252ea0  ti_sdo_ipc_gates_GatePeterson_getReservedMask__E                                          
    0c252ec0  ti_sdo_ipc_GateMP_RemoteCustom1Proxy_query__E                                             
    0c252ec0  ti_sdo_ipc_gates_GatePeterson_query__E                                                    
    0c252ee0  ti_sdo_ipc_heaps_HeapMemMP_Params__init__S                                                
    0c252f00  ti_sdo_ipc_heaps_HeapMemMP_isBlocking__E                                                  
    0c252f20  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Params__init__S                                  
    0c252f40  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_delete                                           
    0c252f60  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_disable__E                                       
    0c252f80  ti_sdo_ipc_notifyDrivers_NotifyDriverShm_enable__E                                        
    0c252fa0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__first__S                               
    0c252fc0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__next__S                                
    0c252fe0  ti_sdo_ipc_nsremote_NameServerRemoteNotify_Params__init__S                                
    0c252fe0  ti_sdo_utils_NameServer_SetupProxy_Params__init__S                                        
    0c253000  ti_sdo_ipc_nsremote_NameServerRemoteNotify_delete                                         
    0c253020  ti_sdo_ipc_nsremote_NameServerRemoteNotify_sharedMemReq__E                                
    0c253020  ti_sdo_utils_NameServer_SetupProxy_sharedMemReq__E                                        
    0c253040  ti_sdo_ipc_nsremote_NameServerRemoteNotify_swiFxnResponse__I                              
    0c253060  ti_sdo_ipc_MessageQ_SetupTransportProxy_isRegistered__E                                   
    0c253060  ti_sdo_ipc_transports_TransportShmSetup_isRegistered__E                                   
    0c253080  ti_sdo_ipc_transports_TransportShm_Params__init__S                                        
    0c2530a0  ti_sdo_ipc_transports_TransportShm_control__E                                             
    0c2530c0  ti_sdo_ipc_transports_TransportShm_getStatus__E                                           
    0c2530e0  ti_sdo_ipc_transports_TransportShm_notifyFxn__I                                           
    0c253100  ti_sdo_ipc_transports_TransportShm_setErrFxn__E                                           
    0c253120  ti_sdo_utils_List_Instance_init__E                                                        
    0c253140  ti_sdo_utils_List_Object__get__S                                                          
    0c253160  ti_sdo_utils_List_destruct                                                                
    0c253180  ti_sdo_utils_List_empty__E                                                                
    0c2531a0  ti_sdo_utils_List_next__E                                                                 
    0c2531c0  ti_sdo_utils_MultiProc_getClusterId__E                                                    
    0c2531c0  ti_sdo_utils_MultiProc_getClusterId__F                                                    
    0c2531e0  ti_sdo_utils_NameServer_Module__startupDone__F                                            
    0c2531e0  ti_sdo_utils_NameServer_Module__startupDone__S                                            
    0c253200  ti_sdo_utils_NameServer_Object__first__S                                                  
    0c253220  ti_sdo_utils_NameServer_Object__next__S                                                   
    0c253240  ti_sysbios_BIOS_RtsGateProxy_enter__E                                                     
    0c253260  ti_sysbios_BIOS_RtsGateProxy_leave__E                                                     
    0c253280  ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E                                         
    0c2532a0  ti_sysbios_BIOS_nullFunc__I                                                               
    0c2532c0  ti_sysbios_BIOS_setThreadType__E                                                          
    0c2532e0  ti_sysbios_BIOS_start__E                                                                  
    0c253300  ti_sysbios_family_c62_TaskSupport_Module__startupDone__S                                  
    0c253300  ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S                                   
    0c253320  ti_sysbios_family_c62_TaskSupport_checkStack__E                                           
    0c253320  ti_sysbios_knl_Task_SupportProxy_checkStack__E                                            
    0c253340  ti_sysbios_family_c64p_Hwi_Module__startupDone__F                                         
    0c253340  ti_sysbios_family_c64p_Hwi_Module__startupDone__S                                         
    0c253340  ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S                                        
    0c253360  ti_sysbios_family_c64p_Hwi_Params__init__S                                                
    0c253360  ti_sysbios_hal_Hwi_HwiProxy_Params__init__S                                               
    0c253380  ti_sysbios_family_c64p_Hwi_clearInterrupt__E                                              
    0c253380  ti_sysbios_hal_Hwi_HwiProxy_clearInterrupt__E                                             
    0c2533a0  ti_sysbios_family_c64p_Hwi_delete                                                         
    0c2533c0  ti_sysbios_family_c64p_Hwi_getHandle__E                                                   
    0c2533e0  ti_sysbios_family_c64p_Hwi_startup__E                                                     
    0c2533e0  ti_sysbios_hal_Hwi_HwiProxy_startup__E                                                    
    0c253400  ti_sysbios_family_c64p_Hwi_switchFromBootStack__E                                         
    0c253400  ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E                                        
    0c253420  ti_sysbios_family_c64p_Hwi_unPluggedInterrupt__I                                          
    0c253440  ti_sysbios_family_c64p_tci6488_TimerSupport_enable__E                                     
    0c253440  ti_sysbios_timers_timer64_Timer_TimerSupportProxy_enable__E                               
    0c253460  ti_sysbios_family_c66_Cache_RTSSynchInv__I                                                
    0c253480  ti_sysbios_family_c66_Cache_RTSSynchWbInv__I                                              
    0c2534a0  ti_sysbios_family_c66_Cache_RTSSynchWb__I                                                 
    0c2534c0  ti_sysbios_family_c66_Cache_inv__E                                                        
    0c2534c0  ti_sysbios_hal_Cache_CacheProxy_inv__E                                                    
    0c2534e0  ti_sysbios_family_c66_Cache_wait__E                                                       
    0c2534e0  ti_sysbios_hal_Cache_CacheProxy_wait__E                                                   
    0c253500  ti_sysbios_family_c66_Cache_wbInv__E                                                      
    0c253500  ti_sysbios_hal_Cache_CacheProxy_wbInv__E                                                  
    0c253520  ti_sysbios_gates_GateAll_Instance_init__E                                                 
    0c253540  ti_sysbios_gates_GateAll_query__E                                                         
    0c253560  ti_sysbios_gates_GateHwi_Instance_init__E                                                 
    0c253580  ti_sysbios_gates_GateHwi_enter__E                                                         
    0c2535a0  ti_sysbios_gates_GateHwi_leave__E                                                         
    0c2535c0  ti_sysbios_gates_GateHwi_query__E                                                         
    0c2535c0  xdc_runtime_Main_Module_GateProxy_query__E                                                
    0c2535c0  xdc_runtime_System_Module_GateProxy_query__E                                              
    0c2535e0  ti_sysbios_gates_GateMutexPri_Instance_finalize__E                                        
    0c253600  ti_sysbios_gates_GateMutexPri_query__E                                                    
    0c253600  ti_sysbios_xdcruntime_GateThreadSupport_query__E                                          
    0c253600  xdc_runtime_knl_GateThread_Proxy_query__E                                                 
    0c253620  ti_sysbios_gates_GateMutex_Instance_finalize__E                                           
    0c253640  ti_sysbios_BIOS_RtsGateProxy_query__E                                                     
    0c253640  ti_sysbios_gates_GateMutex_query__E                                                       
    0c253640  ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E                                        
    0c253660  ti_sysbios_gates_GateSwi_Instance_init__E                                                 
    0c253680  ti_sdo_ipc_Notify_Module_GateProxy_query__E                                               
    0c253680  ti_sysbios_gates_GateSwi_query__E                                                         
    0c2536a0  ti_sysbios_hal_Hwi_Module_startup__E                                                      
    0c2536c0  ti_sysbios_heaps_HeapBuf_Object__get__S                                                   
    0c2536e0  ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E                                        
    0c253700  ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E                                        
    0c253720  ti_sysbios_heaps_HeapMem_isBlocking__E                                                    
    0c253740  ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E                                            
    0c253760  ti_sysbios_knl_Idle_loop__E                                                               
    0c253780  ti_sysbios_knl_Queue_Instance_init__E                                                     
    0c2537a0  ti_sysbios_knl_Queue_Object__get__S                                                       
    0c2537c0  ti_sysbios_knl_Queue_destruct                                                             
    0c2537e0  ti_sysbios_knl_Queue_empty__E                                                             
    0c253800  ti_sysbios_knl_Semaphore_Instance_finalize__E                                             
    0c253820  ti_sysbios_knl_Semaphore_Params__init__S                                                  
    0c253840  ti_sysbios_knl_Swi_Params__init__S                                                        
    0c253860  ti_sysbios_knl_Swi_disable__E                                                             
    0c253880  ti_sysbios_knl_Task_disable__E                                                            
    0c2538a0  ti_sysbios_knl_Task_startup__E                                                            
    0c2538c0  ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S                                    
    0c2538c0  ti_sysbios_timers_timer64_Timer_Module__startupDone__F                                    
    0c2538c0  ti_sysbios_timers_timer64_Timer_Module__startupDone__S                                    
    0c2538e0  ti_sysbios_timers_timer64_Timer_getMaxTicks__E                                            
    0c253900  ti_sysbios_xdcruntime_GateThreadSupport_Instance_finalize__E                              
    0c253920  ti_sysbios_xdcruntime_GateThreadSupport_Instance_init__E                                  
    0c253940  ti_sysbios_xdcruntime_GateThreadSupport_enter__E                                          
    0c253960  xdc_runtime_Error_getSite__E                                                              
    0c253980  xdc_runtime_Error_raiseX__E                                                               
    0c2539a0  xdc_runtime_GateNull_enter__E                                                             
    0c2539c0  xdc_runtime_GateNull_leave__E                                                             
    0c2539e0  xdc_runtime_GateNull_query__E                                                             
    0c253a00  xdc_runtime_Gate_enterSystem__E                                                           
    0c253a20  xdc_runtime_Gate_leaveSystem__E                                                           
    0c253a40  xdc_runtime_Memory_HeapProxy_alloc__E                                                     
    0c253a60  xdc_runtime_Memory_HeapProxy_free__E                                                      
    0c253a80  xdc_runtime_Memory_calloc__E                                                              
    0c253aa0  xdc_runtime_Memory_free__E                                                                
    0c253ac0  xdc_runtime_Memory_getMaxDefaultTypeAlign__E                                              
    0c253ae0  xdc_runtime_Startup_Module__startupDone__S                                                
    0c253b00  xdc_runtime_Startup_exec__I                                                               
    0c253b20  xdc_runtime_Startup_rtsDone__E                                                            
    0c253b40  xdc_runtime_SysMin_ready__E                                                               
    0c253b40  xdc_runtime_System_SupportProxy_ready__E                                                  
    0c253b60  xdc_runtime_System_Module_GateProxy_enter__E                                              
    0c253b80  xdc_runtime_System_Module_GateProxy_leave__E                                              
    0c253ba0  xdc_runtime_System_Module_startup__E                                                      
    0c253bc0  xdc_runtime_System_snprintf_va__E                                                         
    0c253bc0  xdc_runtime_System_snprintf_va__F                                                         
    0c253bc0  xdc_runtime_System_vsnprintf__E                                                           
    0c253be0  xdc_runtime_Text_ropeText__E                                                              
    0c253c00  xdc_runtime_Text_visitRope__I                                                             
    0c253c20  xdc_runtime_knl_GateThread_Instance_finalize__E                                           
    0c253c40  xdc_runtime_knl_GateThread_Module__startupDone__S                                         
    0c253c60  xdc_runtime_knl_GateThread_Proxy_create                                                   
    0c253c80  xdc_runtime_knl_GateThread_Proxy_delete                                                   
    0c253ca0  xdc_runtime_knl_GateThread_Proxy_enter__E                                                 
    0c253cc0  xdc_runtime_knl_GateThread_Proxy_leave__E                                                 
    0c253ce0  xdc_runtime_knl_GateThread_enter__E                                                       
    0c253d00  xdc_runtime_knl_GateThread_leave__E                                                       
    80000000  _ZN7DDR3Mem11dataBuffersE                                                                 
    ffffffff  __TI_pprof_out_hndl                                                                       
    ffffffff  __TI_prof_data_size                                                                       
    ffffffff  __TI_prof_data_start                                                                      
    ffffffff  __binit__                                                                                 
    ffffffff  __c_args__                                                                                
    ffffffff  binit                                                                                     
    UNDEFED   __TI_TLS_INIT_Base                                                                        
    UNDEFED   __TI_TLS_INIT_Limit                                                                       
    
    [2072 symbols]
    

  • Hi Sahin,
    I have succeeded in running 2 project, although i had to change one of the projects to a third project we had, so looks like there is something in that project that is not working
  • Hi Sahin,
    I think i have found the root of the problem, i added another project to the cores and removed the old one, this project is working perfectly and by further examination, I have come to the conclusion that the problem was that ".text" section is inside the MSMCSRAM, the new Project has its .text in L2RAM, and it's working, but this raises some more issues for me, as i need to add code that is about 300k in size, and with the current memory status this is not possible unless i move some memory from L2RAM, how can i do this without messing up the project?