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.

Modifying a variable from tasks - optimization?!

Other Parts Discussed in Thread: SYSBIOS

Hi,

I am trying to read a global variable in a task that is modified in a different function. The task seems to block totally, unless a "printf" is inserted into it. This would imply something to do with optimization, but this is turned off, I have also tried debug/release versions. I have also tried "volatile" as per another post, and "static" for the variable.

This is the task

"

volatile int Start=0;

Void tsk0_func(UArg arg0, UArg arg1)
{
int send_message = 0;
while (TRUE) {

Task_sleep(20);

send_message = Start;

UserLogCanc[UserLogCancCnt++] = (Uint32)send_message;
UserLogCancCnt &= 0xFFFF;

//System_printf("Start = %d, send_message = %d.\n", Start, send_message);

//ICM_Send_Message(CORE_2, send_message);
}
}"

Where "Start" is modified by a more complicated function that follows it.

Help!

Thanks :)

  • Sorry!!! It *DOES* work in debug mode, so it must be optimization related.

    What else can I change in release mode apart from "optimization level" and "optimize for code size" to make it more like the debug version?

    Furthermore, we don't really want to turn optimization off at all - how can we circumvent the problem?

    Thanks!!
  • Hi Davis,

    Adding a volatile to the variable should be enough. I have a couple of questions...

    - Can you share the function that is setting the variable ?
    - Can you share the target and platform this code is being built for ?

    Best,
    Ashish
  • Hi,

    The target is the C6670, CommAgility AMC-2C6670.

    I'm not quite clear what the 'platform' means...?

    I will paste the code tomorrow, but the main function (Loopback2tx) is called from a call-back function which is triggered from another core using an ICM (when it receives CPRI data). Not sure if that helps any?

    David
  • Hi David,

    C6670 is the platform and target is C66x. I got the info I needed.

    I read your original message again and am a bit confused about the problem you are seeing now. I thought the issue was that you were not seeing the updated value of a global volatile variable but after reading your post again, it seems you are seeing some task is getting blocked. How does the task block ? If you remove the System_printf call does the task never return from Task_sleep() ?

    Best,

    Ashish

  • >> C6670 is the platform and target is C66x. I got the info I needed.
    Great :)

    Did you see my second post - if I use debug mode the issue does actually disappear too?

    I am not sure, but I don't think that the task is blocking, because if I replace the line in the task:

    UserLogCanc[UserLogCancCnt++] = (Uint32)send_message;

    with

    UserLogCanc[UserLogCancCnt++] = (Uint32)12;

    then I can view "12"s in the memory at "UserLogCanc", and save to memory. So if no global is used, there is no problem, and definitely no blocking.

    If I use the existing line "UserLogCanc[UserLogCancCnt++] = (Uint32)send_message;", then 0's are in the memory. I am not clear if the task is blocking, and nothing is going into the memory, or if it's just not accessing "Start" properly. I think it's the latter. I guess I could have tried writing:

    UserLogCanc[UserLogCancCnt++] = (Uint32)send_message;
    UserLogCancCnt &= 0xFFFF;
    UserLogCanc[UserLogCancCnt++] = (Uint32)12;
    UserLogCancCnt &= 0xFFFF;

    to check if I get "0,12,0,12,..." or just "0,...,0"...

    but otherwise, i'm not sure how to tell. As I said, as soon as I put in a printf (or use DEBUG), it works fine, so I assumed it was being optimized or pipelined or...

    How else do I check if the task is blocking? I am pretty sure that "Task_sleep" is OK.

    David
  • Thinking further, I think maybe it is blocking, because if I use a global, then the call

    "ICM_Send_Message(CORE_2, send_message);"

    when not commented out, just doesn't seem to get called at all *unless*:

    1) I am in debug
    2) I am in release but the main "Loopback2tx" function contains no 'loops', which requires stripping out almost all of the functionality (we got to the point of having a basic empty loop, and this is enough to cause blocking). Again this points to some optimization related issue??

    (furthermore, it seems to stop Hyperlink which I have running on a 3rd core too (CPRI code running on 1st core, the above running on 2nd core)).
  • By debug do you mean the debugger is connected to the core or debug build of the application ?

    If you always see the problem and are wondering if building a release application breaks the program, you can try adding a breakpoint after Task_sleep() call.

    Best,
    Ashish
  • Thanks, yes I meant debug build.

    Will the breakpoints work in the release build? I will check, but what will this tell us? I guess it can show if it's going into the while loop at all?? Why would using debug build and/or printf make such a resounding difference to how it works?

    How can I learn about scheduling of such tasks?

    Cheers,

    David
  • p.s. hope you saw my previous reply

    "Thinking further, I think maybe it is blocking, because if I use a global, then the call

    "ICM_Send_Message(CORE_2, send_message);"

    when not commented out, just doesn't seem to get called at all *unless*:

    1) I am in debug
    2) I am in release but the main "Loopback2tx" function contains no 'loops', which requires stripping out almost all of the functionality (we got to the point of having a basic empty loop, and this is enough to cause blocking). Again this points to some optimization related issue??

    (furthermore, it seems to stop Hyperlink which I have running on a 3rd core too (CPRI code running on 1st core, the above running on 2nd core))."
  • Yes, breakpoints should work with release builds too. If the breakpoint is hit, it should prove that Task_sleep() returns. If the breakpoint is not hit (implying Task_sleep does not return), can you share the Task module's detailed ROV view ?

    The SYS/BIOS user guide and TI-RTOS training materials are good sources to learn more about Tasks:
    e2e.ti.com/.../525376 (TI-RTOS training options)

    Best,
    Ashish
  • Thanks Ashish,

    We can only put a breakpoint right at the top of 'task', if we click anywhere it defaults to here. That's no problem, though.

    It reaches the breakpoint and then we can step through. Not only does the Task_sleep seem to return, but - again - like in debug build - the code now works and two values (one loop's worth) are stored in "UserLogCanc".

    Once it reaches the end of the while(TRUE) loop, the Detailed ROV view for tsk0 is

    ,0x008e02d8,tsk0,1,Running,tsk0_func,0x00000000,0x00000000,364,2048,0x8aa440,

    Just to reiterate, if we use a debug build *or* remove any 'loops' from the main function, *or* add 'printf', *or* if we don't use a global variable, the code also seems to work.

    The main function is below....

    "

    void loopback2Tx()
    {

    Uint32 Size;
    volatile Uint32 Tx_size;
    volatile Uint32 *p_data[1];
    //volatile Uint32 *p_A_inv_vals[1];
    __float2_t *x_ll_data[1];
    __float2_t *x_ll_shared_data[1];

    // Local iterators
    int buf_idx = 0;
    int symb_idx;
    int AC_idx;
    int range_pulse_idx;
    // RF
    int PhaseInd=0, AttInd=0;

    // Input pointers
    p_data[0] = &TmpBuf[0][0];

    // Output pointers
    x_ll_data[0] = &x_ll[0][0];
    x_ll_shared_data[0] = &x_ll_shared[0][0];

    CSL_Uint64 timer;
    timer = CSL_tscRead();

    // Receive CPRI
    Size = Recv_CPRIData((Uint32 **)p_data, BUFSIZE);

    ////////////////////////////////////////////////////////////////
    // Reinterleave A+C
    if(!ICS_OVERRIDE)
    {
    buf_idx = 0;
    memcpy(tmp_data,(Uint32 *)p_data[0],BUFSIZE*sizeof(Uint32));
    for(symb_idx = 0; symb_idx < BUFSIZE; symb_idx += 4)
    {
    for(AC_idx = 3; AC_idx >= 0; AC_idx--)
    {
    p_data[0][buf_idx] =tmp_data[symb_idx+AC_idx];
    buf_idx++;
    }
    }
    }
    ////////////////////////////////////////////////////////////////


    // Send CPRI
    Tx_size = Send_CPRIData((Uint32 **)p_data, Size);

    if(interval % 20 == 0)
    {
    Start++;
    if(Start >= 2048) Start = 0;
    }

    // Interval counter, increments every 1ms
    interval++;

    //// Find time taken
    timer = CSL_tscRead() - timer;
    UserLogTimer[UserLogTimerCnt++] = (Uint32)timer;
    UserLogTimerCnt &= 0xFFFF;
    }

    void CallBackFunc(Uint32 msg)
    {
    // dispatch messages
    switch(msg){
    case 0x0: // receive IQ Data
    loopback2Tx();
    break;

    default:
    // unknown message
    break;
    }
    }

    "

  • p.s. you were correct to suspect Task_sleep, though, when we remove it, the task seems to run OK, however we need some flow control here.

    We tried removing the while(TRUE), and instead launching the task from the callback function but this does not work.

    Any other suggestion, either to stop Task_sleep from malfunctioning, or other ways to provide flow control to the task?

    Cheers!
  • As it previously wasn't, I've added clock support.

    Either way, the clock 'ticks' in ROV are increasing. However, as we have to pause the core to see the clock ticks, *again* the task seems to work OK, slowly storing values in "UserLogCanc" as I pause, and play.
  • Hi David,

    So, if I understood the code correctly, there is one function (shared in original post) that reads the "Start" variable and logs it every 20ms. There is a second function called by CallBackFunc that updates "Start" variable every 20ms ? I am guessing the CallBackFunc is called by the clock module on every clock tick or is the timer ISR and is called every 1ms. Is that correct ? Can you share the code where the clock object or timer instance is created ?

    For the non-working case, when you halt and find all 0s in UserLogCanc buffer, if you check the "Start" variable value in memory browser what do you see ? Is it also 0 or some non-zero high value ? Basically, I am trying to understand if the callback function is successfully incrementing the variable and the consumer is unable to see it. If that is the case then it is possible that either the compiled code is broken or its a cache problem. We can look into it more.

    In order to ensure SYS/BIOS tasks are not malfunctioning, we can look into enabling task logging. I want to get answers to above questions before asking you to do that though.

    Best,
    Ashish
  • Hi Ashish,

    I am sorry for the slow reply. We are working to a tight schedule, so we had to push on with a pragmatic solution. As you guessed, the callback function is called by an ISR from the first core every 1ms, which in turn is driven by a HWI via CPRI.

    We have decided to scrap using the task at all, however, and are directly calling the line "ICM_Send_Message(CORE_2, send_message);" from within "loopback2tx", which with a bit of fiddling on the other cores works - mostly. The "ICM_Send_Message" function is calling:

    Notify_sendEvent()

    to send a message to the third core which transfers via Hyperlink to another DSP.

    We find that this message is received in the callback in CORE_2 without *issue* until later in our processing when within loopback2tx we populate a large array which is:

    **in .cmd**

    SECTIONS {

    .x_ll_shared > MSMCRAM

    **above loopback2tx (global)**

    #pragma DATA_SECTION(x_ll_shared,".x_ll_shared")
    #pragma DATA_ALIGN (x_ll_shared, 16)

    __float2_t x_ll_shared[1][LONG_BUFSIZE];

    **in loopback2tx()**

    __float2_t  *x_ll_shared_data[1];

    x_ll_shared_data[0] = &x_ll_shared[0][0];

    Where LONG_BUFSIZE is 8*15360.

    Clearly, this is a *huge* array and you may wonder why it needs to be so big, but unfortunately it does. Confusingly the code runs fine, except once we put any values into this array, the message (which we have shown definitely still sends) is not received. In fact populating the first 10-ish values is fine, but any more and then the message is not received in the second core. Otherwise the rest of the code functions perfectly, and we can read and write to this huge array, and there are no other problems. (At linker time it is a struggle to fit this large array in, but it does - just.)

    The bug seems very strange but if we comment out the line

    x_ll_shared_data[0][idx++] = value;

    Where idx is modulo LONG_BUFSIZE

    and the message send works just fine. If we reduce idx to modulo ~10, the message sends just fine. And all of the preceding ~1000ms where x_ll_shared_data is not used, the message send works just fine.

    So for some reason CORE_2 is not receiving the notification?

    Sorry we have strayed so far from the original post question.

    Thanks so much for all your help.

    David

  • p.s. reading

    e2e.ti.com/.../274479

    we could look at ROV for the interrupts? or look at the kick registers (which have caused us problems before)?

    Also we are calling Notify_sendEvent from within a callback, so

    e2e.ti.com/.../430427

    could be relevant, except I am not clear why once we've populated the x_ll_shared_data, that CORE_2 would suddenly slow down, or something?
  • Hi David,

    When module size is larger than 10, what exactly fails ? Does the message send function never get called ? Maybe try setting a few breakpoints to check how far execution gets.

    David Halls said:
    p.s. reading

    e2e.ti.com/.../274479

    we could look at ROV for the interrupts? or look at the kick registers (which have caused us problems before)?

    Yes, I think it would be worth checking if core 2 receives an interrupt.

    David Halls said:


    Also we are calling Notify_sendEvent from within a callback, so

    e2e.ti.com/.../430427

    could be relevant, except I am not clear why once we've populated the x_ll_shared_data, that CORE_2 would suddenly slow down, or something?

    I am not an IPC expert so cannot comment how latency could have an effect here.

    Thinking about other possible causes of failures, I have 2 more questions. Are you calling cache maintenance functions in your code ? And are all the buffers you allocated cache line aligned ?

    Best,

    Ashish

  • Thanks Ashish,
    Sorry I can't be clearer in my posts, we have such a vast project it is difficult to convey all of the information at once!!

    >> When module size is larger than 10, what exactly fails ? Does the message send function never get called ? Maybe try setting a few breakpoints to check how far execution gets.

    The issue is when we store values in x_ll_shared_data beyond its 10th or so index, the message is never received in the third core (CORE_2). In all of the callback iterations *before* we store values in this large array, the message is received fine. When the message is *not* received, the message send function is called, and even returns success!

    I am on UK time, so I will check again using breakpoints first thing tomorrow morning. To double check.

    >>Are you calling cache maintenance functions in your code ? And are all the buffers you allocated cache line aligned ?

    Ah! Not as far as I know?! The array which we are using are local to the core, I know caching is required for memory shared between cores. Do we still need caching - could you elaborate?

    Thank you!
  • >> The array which we are using are local to the core, I know caching is required for memory shared between cores. Do we still need caching - could you elaborate?

    If the array is local to the core then cache does not have to be flushed. Looking at the array name I assumed it was shared across cores.

    The scenario I was thinking about was that if the array started at an address that was not cache line size aligned, the cache line could be shared with some kernel data structure and that structure could get corrupted if say the cache line was invalidated (no write-back). But, if you are not calling any cache APIs that is not possible.

    I would say try putting a breakpoint inside the interrupt handler on core 2 as suggested in the E2E thread you shared and we can go from there depending on the results.

    If this starts looking like an IPC problem, you may want to post on the Keystone device E2E forum too. The IPC experts can help debug there.

    Best,
    Ashish
  • Thanks, how do I go about putting a breakpoint in CORE_2'S interrupt handler? It's not clear from the other thread - it assumes quite a lot of knowledge, could you explain for me?

    Thank you!

  • Hi David,

    You need to find the function "ti_sysbios_family_c64p_Hwi_int5" on Core 2 and put a breakpoint on it. This is the interrupt handler SYS/BIOS installs for interrupt 5 which I believe is the IPC mailbox interrupt on C6670.

    Best,
    Ashish
  • Great! I'll find this first thing tomorrow and report back :)
  • Sorry, thinking more. What do you mean to "find" that function. How do I navigate to it in CCS?
  • Here are the steps you would follow:
    - Select Core 2 in CCS debug window
    - Open "View"->"Disassembly" window
    - Entry function name in disassembly window
    - Once function disassembly shows up, double click on first instruction to add a breakpoint.

    Best,
    Ashish
  • Thanks Ashish,
    I could not make this work unfortunately.

    We have verified that the message is *definitely* sent, and *definitely* not received, but only if we try to send a message after storing values into x_ll_shared_data.

    If I *remove* x_ll_shared_data from the .cmd file, and *remove*:
    #pragma DATA_SECTION(x_ll_shared,".x_ll_shared")
    #pragma DATA_ALIGN (x_ll_shared, 16)

    from the main code, the problem is fixed. However, I have to reduce the size of x_ll_shared_data to a few thousand values for this to fit, presumably onto the L2SRAM??

    I am not clear how or why when x_ll_shared_data is put onto either DDR3 *or* MSCMSRAM using:

    .x_ll_shared > MSMCSRAM

    in the SECTIONS in .cmd, and then populate some values, it would block the sendNotify (either at transmit or receive end). It must be some memory conflict, though??

    Thanks,

    David
  • Can you share your application's cfg file and the map file generated when you build the app ?

    Best,
    Ashish
  • sure, how do I get the map file?
  • If you are building the project in CCS, the *.map file should be in Debug/ or Release/ directory in the project folder.

    Best,
    Ashish
  • Thanks,

    *************************************
    CORE_1 .cfg
    *************************************

    var Log = xdc.useModule ("xdc.runtime.Log");
    var Hwi = xdc.useModule('ti.sysbios.hal.Hwi');
    var C64_Hwi = xdc.useModule ("ti.sysbios.family.c64p.Hwi");
    var CpIntc = xdc.useModule('ti.sysbios.family.c66.tci66xx.CpIntc');

    var MultiProc = xdc.useModule('ti.sdo.utils.MultiProc');
    var DRV = xdc.useModule('ti.sdo.edma3.drv.DRV');
    var RM = xdc.useModule('ti.sdo.edma3.rm.RM');

    var ECM = xdc.useModule ("ti.sysbios.family.c64p.EventCombiner");
    var Cache = xdc.useModule('ti.sysbios.hal.Cache');
    var Settings = xdc.useModule('ti.csl.Settings');
    var Swi = xdc.useModule('ti.sysbios.knl.Swi');
    var HeapBuf = xdc.useModule('ti.sysbios.heaps.HeapBuf');
    var Timer = xdc.useModule('ti.sysbios.hal.Timer');
    //var Clock = xdc.useModule('ti.sysbios.knl.Clock');

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

    /*
    * 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 use MultiProc_setLocalId to set the procId
    * at runtime.
    */
    MultiProc.setConfig(null, ["CORE0", "CORE1", "CORE2"]);
    //MultiProc.setConfig(null, ["CORE0", "CORE1"]);
    //MultiProc.setConfig(null, ["CORE1", "CORE2"]);

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

    /* Modules explicitly used in the application */
    var Notify = xdc.useModule('ti.sdo.ipc.Notify');
    var Ipc = xdc.useModule('ti.sdo.ipc.Ipc');
    var BIOS = xdc.useModule('ti.sysbios.BIOS');
    BIOS.heapSize = 0x8000;
    var Task = xdc.useModule('ti.sysbios.knl.Task');
    var MessageQ = xdc.useModule('ti.sdo.ipc.MessageQ');
    var HeapBufMP = xdc.useModule('ti.sdo.ipc.heaps.HeapBufMP');

    Notify.numEvents = 32;

    //var tsk0 = Task.create('&tsk0_func');
    //tsk0.instance.name = "tsk0";

    /* To avoid wasting shared memory for MessageQ transports */
    /*for (var i = 0; i < MultiProc.numProcessors; i++) {
    Ipc.setEntryMeta({
    remoteProcId: i,
    setupMessageQ: false,
    });
    }*/

    /* Synchronize all processors (this will be done in Ipc_start) */
    Ipc.procSync = Ipc.ProcSync_ALL;

    /* Shared Memory base address and length */
    //var SHAREDMEM = 0x0C000000;
    //var SHAREDMEMSIZE = 0x00200000;
    var SHAREDMEM = 0x0C12C400;
    var SHAREDMEMSIZE = 0x00010000;

    /*
    * Need to define the shared region. The IPC modules use this
    * to make portable pointers. All processors need to add this
    * call with their base address of the shared memory region.
    * If the processor cannot access the memory, do not add it.
    */
    var SharedRegion = xdc.useModule('ti.sdo.ipc.SharedRegion');
    SharedRegion.setEntryMeta(0,
    { base: SHAREDMEM,
    len: SHAREDMEMSIZE,
    ownerProcId: 0,
    isValid: true,
    name: "DDR2_RAM",
    });

    /* Create a semaphore with count 0 */
    var Semaphore = xdc.useModule('ti.sysbios.knl.Semaphore');
    Program.global.notifySemHandle = Semaphore.create(0);

    //var swi0Params = new Swi.Params();
    //swi0Params.instance.name = "swi_rx_ipc";
    //swi0Params.priority = 2;
    //Program.global.swi_rx_ipc = Swi.create("&swi_receive_ipc", swi0Params);
    BIOS.cpuFreq.lo = 1200000000;

    // Create data sections for specific memory locations
    //Program.sectMap[".A_inv_vals"] = new Program.SectionSpec();
    //Program.sectMap[".A_inv_vals"].loadAddress=0x80258010; //change the load address based on L2SRAM, MSMC or DDR memory.
    //Program.sectMap[".A_inv_vals"].type = "NOINIT";

    //Clock.timerId = 7;
    //tsk0.priority = 15;

    ***************************************
    CORE_2 cfg
    ***************************************

    var System = xdc.useModule('xdc.runtime.System');
    var hlink = xdc.useModule('ti.drv.hyplnk.Settings');
    /* Use the CSL module and indicate that INTC library will be used. */
    var cslSettings = xdc.useModule ('ti.csl.Settings');
    cslSettings.useCSLIntcLib = true;

    Program.sectMap[".text"] = "MSMCSRAM";
    Program.sectMap[".const"] = "MSMCSRAM";
    Program.sectMap[".init_array"] = "L2SRAM";
    Program.sectMap[".csl_vect"] = "L2SRAM";
    Program.stack = 1024*4 + 0x400;

    // Create data sections for specific memory locations
    Program.sectMap[".bss:hyplnkData"] = new Program.SectionSpec();
    Program.sectMap[".bss:hyplnkData"].loadAddress=0x830000; //change the load address based on L2SRAM, MSMC or DDR memory.


    var Log = xdc.useModule ("xdc.runtime.Log");
    var Hwi = xdc.useModule('ti.sysbios.hal.Hwi');
    var C64_Hwi = xdc.useModule ("ti.sysbios.family.c64p.Hwi");
    var CpIntc = xdc.useModule('ti.sysbios.family.c66.tci66xx.CpIntc');

    var MultiProc = xdc.useModule('ti.sdo.utils.MultiProc');
    var DRV = xdc.useModule('ti.sdo.edma3.drv.DRV');
    var RM = xdc.useModule('ti.sdo.edma3.rm.RM');

    var ECM = xdc.useModule ("ti.sysbios.family.c64p.EventCombiner");
    var Cache = xdc.useModule('ti.sysbios.hal.Cache');
    var Timer = xdc.useModule('ti.sysbios.hal.Timer');
    var Settings = xdc.useModule('ti.csl.Settings');
    var Swi = xdc.useModule('ti.sysbios.knl.Swi');
    var HeapBuf = xdc.useModule('ti.sysbios.heaps.HeapBuf');

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

    /*
    * 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 use MultiProc_setLocalId to set the procId
    * at runtime.
    */
    //var nameList = MultiProc.getDeviceProcNames();
    //MultiProc.setConfig(null, nameList);
    MultiProc.setConfig(null, ["CORE0", "CORE1", "CORE2"]);
    //MultiProc.setConfig(null, ["CORE1", "CORE2"]);
    //MultiProc.setConfig(null, ["CORE2"]);

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

    /* Modules explicitly used in the application */
    var Notify = xdc.useModule('ti.sdo.ipc.Notify');
    var Ipc = xdc.useModule('ti.sdo.ipc.Ipc');
    var BIOS = xdc.useModule('ti.sysbios.BIOS');
    BIOS.heapSize = 0x8000;
    var Task = xdc.useModule('ti.sysbios.knl.Task');
    var MessageQ = xdc.useModule('ti.sdo.ipc.MessageQ');
    var HeapBufMP = xdc.useModule('ti.sdo.ipc.heaps.HeapBufMP');

    Notify.numEvents = 32;

    //var tsk0 = Task.create('&tsk0_func');
    //tsk0.instance.name = "tsk0";


    /* Synchronize all processors (this will be done in Ipc_start) */
    Ipc.procSync = Ipc.ProcSync_ALL;

    /* Shared Memory base address and length */
    //var SHAREDMEM = 0x0C000000;
    //var SHAREDMEMSIZE = 0x00200000;
    var SHAREDMEM = 0x0C12C400;
    var SHAREDMEMSIZE = 0x00010000;

    /*
    * Need to define the shared region. The IPC modules use this
    * to make portable pointers. All processors need to add this
    * call with their base address of the shared memory region.
    * If the processor cannot access the memory, do not add it.
    */
    var SharedRegion = xdc.useModule('ti.sdo.ipc.SharedRegion');
    SharedRegion.setEntryMeta(0,
    { base: SHAREDMEM,
    len: SHAREDMEMSIZE,
    ownerProcId: 0,
    isValid: true,
    name: "DDR2_RAM",
    });


    *******************************
    CORE_1 map
    **********************************
    ******************************************************************************
    TMS320C6x Linker PC v7.4.4
    ******************************************************************************
    >> Linked Thu Oct 20 15:57:44 2016

    OUTPUT FILE NAME: <ICSCPRI.out>
    ENTRY POINT SYMBOL: "_c_int00" address: 008c2a00


    MEMORY CONFIGURATION

    name origin length used unused attr fill
    ---------------------- -------- --------- -------- -------- ---- --------
    INT_VECTOR 00800000 00000200 00000000 00000200 RW X
    L2SRAM 00800200 000ffe00 000d5794 0002a66c RW X
    L1PSRAM 00e00000 00008000 00000000 00008000 RW X
    L1DSRAM 00f00000 00008000 00000000 00008000 RW
    CPRI_BUF_PTR 0c000000 00001000 00000704 000008fc RW
    MSMCSRAM 0c001000 001ff000 0002e000 001d1000 RW X
    CPRI_RX_DATA 80000000 0012c000 00096000 00096000 RW
    CPRI_TX_DATA 8012c000 0012c000 00096000 00096000 RW
    DDR3 80258000 1fda8000 00000000 1fda8000 RW


    SEGMENT ALLOCATION MAP

    run origin load origin length init length attrs members
    ---------- ----------- ---------- ----------- ----- -------
    00800200 00800200 00096f80 00000000 rw-
    00800200 00800200 00096f80 00000000 rw- .far
    00897180 00897180 000313a0 000313a0 r-x
    00897180 00897180 000313a0 000313a0 r-x .text
    008c8520 008c8520 0000537c 0000537c rw-
    008c8520 008c8520 0000537c 0000537c rw- .fardata
    008cd8a0 008cd8a0 000045e8 000045e8 r--
    008cd8a0 008cd8a0 000045e8 000045e8 r-- .const
    008d1e88 008d1e88 00001120 00000000 rw-
    008d1e88 008d1e88 00001000 00000000 rw- .stack
    008d2e88 008d2e88 00000120 00000000 rw- .cio
    008d2fa8 008d2fa8 00000058 00000058 r--
    008d2fa8 008d2fa8 00000058 00000058 r-- .switch
    008d3000 008d3000 00000200 00000200 r-x
    008d3000 008d3000 00000200 00000200 r-x .vecs
    008d3200 008d3200 00000068 00000000 rw-
    008d3200 008d3200 00000068 00000000 rw- .bss
    008d3268 008d3268 0000014a 0000014a rw-
    008d3268 008d3268 0000014a 0000014a rw- .neardata
    008d33b4 008d33b4 0000000c 0000000c r--
    008d33b4 008d33b4 0000000c 0000000c r-- .rodata
    008d33c0 008d33c0 000025d8 000025d8 r--
    008d33c0 008d33c0 000025d8 000025d8 r-- .cinit
    0c000000 0c000000 00000704 00000000 rw-
    0c000000 0c000000 00000704 00000000 rw- .CpriBufferPointer
    0c001000 0c001000 0001e000 00000000 rw-
    0c001000 0c001000 0001e000 00000000 rw- .x_ll_shared
    80000000 80000000 00096000 00000000 rw-
    80000000 80000000 00096000 00000000 rw- .CpriRxBuffer
    8012c000 8012c000 00096000 00000000 rw-
    8012c000 8012c000 00096000 00000000 rw- .CpriTxBuffer


    SECTION ALLOCATION MAP

    output attributes/
    section page origin length input sections
    -------- ---- ---------- ---------- ----------------
    .init_array
    * 0 00800200 00000000 UNINITIALIZED

    xdc.meta 0 00800200 00000100 COPY SECTION
    00800200 00000100 UserProcessProject_pe66.oe66 (xdc.meta)

    .far 0 00800200 00096f80 UNINITIALIZED
    00800200 0005059a user_process_ICS+RF+.obj (.far)
    0085079a 00000006 --HOLE--
    008507a0 00023000 main.obj (.far)
    008737a0 0000df40 edma3_lld_drv.ae66 : edma3_drv_init.oe66 (.far)
    008816e0 0000c2f8 UserProcessProject_pe66.oe66 (.far)
    0088d9d8 00000008 rts6600_elf.lib : trgdrv.obj (.far)
    0088d9e0 00007a60 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.far)
    00895440 00001000 TRxDataInterface.obj (.far)
    00896440 00000800 UserProcessProject_pe66.oe66 (.far:taskStackSection)
    00896c40 00000400 InterCoreMsgController.obj (.far)
    00897040 00000140 rts6600_elf.lib : defs.obj (.far)

    .text 0 00897180 000313a0
    00897180 00001640 user_process_ICS+RF+.obj (.text)
    008987c0 000011c0 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_GateMP_Instance_init__F)
    00899980 00000f20 main.obj (.text)
    0089a8a0 00000c40 edma3_lld_drv.ae66 : edma3_drv_basic.oe66 (.text:EDMA3_DRV_requestChannel)
    0089b4e0 00000b80 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:EDMA3_RM_allocResource)
    0089c060 00000a60 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_heaps_HeapMemMP_alloc__E)
    0089cac0 000009e0 : Ipc.obj (.text:ti_sdo_ipc_heaps_HeapMemMP_free__E)
    0089d4a0 000009a0 : Ipc.obj (.text:Ipc_attach)
    0089de40 000009a0 ti.targets.rts6000.ae66 : System.oe66 (.text:xdc_runtime_System_doPrint__I)
    0089e7e0 00000920 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_Instance_init__F)
    0089f100 000008a0 : Ipc.obj (.text:ti_sdo_ipc_ListMP_Instance_init__F)
    0089f9a0 00000860 : Ipc.obj (.text:ti_sdo_ipc_GateMP_Instance_finalize__F)
    008a0200 00000840 : Ipc.obj (.text:MessageQ_put)
    008a0a40 00000780 : Ipc.obj (.text:ti_sdo_ipc_heaps_HeapMemMP_Instance_init__F)
    008a11c0 00000780 sysbios.lib : BIOS.obj (.text:ti_sysbios_family_c64p_Exception_handler__I)
    008a1940 00000720 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:edma3CCErrHandler)
    008a2060 00000700 ipc.lib : Ipc.obj (.text:Notify_registerEvent)
    008a2760 000006c0 : Ipc.obj (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_init__F)
    008a2e20 000006a0 : Ipc.obj (.text:NameServer_add)
    008a34c0 00000660 sysbios.lib : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_free__E)
    008a3b20 00000620 ipc.lib : Ipc.obj (.text:Notify_sendEvent)
    008a4140 00000620 sysbios.lib : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_alloc__E)
    008a4760 000005e0 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:EDMA3_RM_open)
    008a4d40 000005e0 ipc.lib : Ipc.obj (.text:Notify_registerEventSingle)
    008a5320 000005c0 : Ipc.obj (.text:ListMP_getHead)
    008a58e0 000005c0 : Ipc.obj (.text:Notify_unregisterEventSingle)
    008a5ea0 000005c0 rts6600_elf.lib : divd.obj (.text:__c6xabi_divd)
    008a6460 000005c0 : _printfi.obj (.text:_getarg_diouxp)
    008a6a20 000005c0 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_SharedRegion_start__F)
    008a6fe0 000005c0 sysbios.lib : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_Module_startup__F)
    008a75a0 00000580 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_get__F)
    008a7b20 00000580 : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_put__E)
    008a80a0 00000540 : Ipc.obj (.text:ti_sdo_ipc_Ipc_procSyncStart__I)
    008a85e0 00000500 TRxDataInterface.obj (.text)
    008a8ae0 000004e0 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Instance_init__F)
    008a8fc0 000004a0 : Ipc.obj (.text:ti_sdo_ipc_gates_GatePeterson_Instance_init__F)
    008a9460 00000460 rts6600_elf.lib : _printfi.obj (.text:_printfi)
    008a98c0 00000460 : _printfi.obj (.text:_setfield)
    008a9d20 00000460 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_GateMP_setRegion0Reserved__F)
    008aa180 00000460 : Ipc.obj (.text:ti_sdo_ipc_Ipc_procSyncFinish__I)
    008aa5e0 00000440 : Ipc.obj (.text:ListMP_putTail)
    008aaa20 00000440 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:edma3TCErrHandler)
    008aae60 00000440 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_heaps_HeapMemMP_getStats__E)
    008ab2a0 00000440 : Ipc.obj (.text:ti_sdo_ipc_heaps_HeapMemMP_postInit__I)
    008ab6e0 00000420 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:EDMA3_RM_freeResource)
    008abb00 00000400 edma_xfer.obj (.text)
    008abf00 00000400 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_Notify_Instance_init__F)
    008ac300 00000400 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Semaphore_pend__E)
    008ac700 000003c0 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_SharedRegion_reserveMemory__F)
    008acac0 000003c0 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Task_setPri__E)
    008ace80 000003a0 rts6600_elf.lib : fputs.obj (.text:fputs)
    008ad220 00000380 ipc.lib : Ipc.obj (.text:HeapMemMP_sharedMemReq)
    008ad5a0 00000340 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:EDMA3_RM_create)
    008ad8e0 00000340 ipc.lib : Ipc.obj (.text:GateMP_sharedMemReq)
    008adc20 00000340 : Ipc.obj (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_swiFxn__I)
    008adf60 00000320 rts6600_elf.lib : _printfi.obj (.text:_pproc_fge)
    008ae280 00000320 edma_c6670_int_reg.obj (.text)
    008ae5a0 00000300 edma3_lld_drv.ae66 : edma3_drv_basic.oe66 (.text:EDMA3_DRV_freeChannel)
    008ae8a0 00000300 ipc.lib : Ipc.obj (.text:GateMP_openByAddr)
    008aeba0 00000300 : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_openByAddr__F)
    008aeea0 00000300 sysbios.lib : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_dispatchC__I)
    008af1a0 000002e0 InterCoreMsgController.obj (.text)
    008af480 000002e0 ipc.lib : Ipc.obj (.text:SharedRegion_getEntry)
    008af760 000002e0 : Ipc.obj (.text:SharedRegion_getPtr)
    008afa40 000002e0 rts6600_elf.lib : _printfi.obj (.text:_pproc_fwp)
    008afd20 000002e0 sysbios.lib : BIOS.obj (.text:ti_sysbios_gates_GateMutexPri_enter__E)
    008b0000 000002e0 : BIOS.obj (.text:ti_sysbios_knl_Task_Module_startup__F)
    008b02e0 000002c0 edma3_lld_drv.ae66 : edma3_drv_init.oe66 (.text:EDMA3_DRV_open)
    008b05a0 000002c0 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_isr__I)
    008b0860 000002a0 : Ipc.obj (.text:Ipc_start)
    008b0b00 000002a0 : Ipc.obj (.text:NameServer_getLocal)
    008b0da0 000002a0 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:edma3ComplHandler)
    008b1040 000002a0 edma3_lld_drv.ae66 : edma3_drv_init.oe66 (.text:edma3OpenResMgr)
    008b12e0 000002a0 rts6600_elf.lib : _printfi.obj (.text:fcvt)
    008b1580 000002a0 sysbios.lib : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_Module_startup__F)
    008b1820 000002a0 : BIOS.obj (.text:ti_sysbios_knl_Clock_workFunc__E)
    008b1ac0 00000280 edma3_lld_drv.ae66 : edma3_drv_init.oe66 (.text:EDMA3_DRV_create)
    008b1d40 00000280 : edma3_drv_basic.oe66 (.text:EDMA3_DRV_disableTransfer)
    008b1fc0 00000280 ErrorController.obj (.text)
    008b2240 00000280 ipc.lib : Ipc.obj (.text:SharedRegion_getSRPtr)
    008b24c0 00000280 rts6600_elf.lib : divf.obj (.text:__c6xabi_divf)
    008b2740 00000280 sysbios.lib : BIOS.obj (.text:deviceConfig$44)
    008b29c0 00000280 rts6600_elf.lib : _printfi.obj (.text:ecvt)
    008b2c40 00000280 edma3_lld_drv.ae66 : edma3_drv_basic.oe66 (.text:edma3RemoveMapping)
    008b2ec0 00000280 edma_cs.obj (.text)
    008b3140 00000280 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_sharedMemReq__F)
    008b33c0 00000280 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Clock_Instance_init__F)
    008b3640 00000280 : BIOS.obj (.text:ti_sysbios_knl_Task_exit__E)
    008b38c0 00000280 ti.targets.rts6000.ae66 : Core-mem.oe66 (.text:xdc_runtime_Core_createObject__I)
    008b3b40 00000280 : Error.oe66 (.text:xdc_runtime_Error_raiseX__F)
    008b3dc0 00000260 edma3_lld_drv.ae66 : edma3_drv_basic.oe66 (.text:EDMA3_DRV_enableTransfer)
    008b4020 00000260 ipc.lib : Ipc.obj (.text:ListMP_sharedMemReq)
    008b4280 00000260 : Ipc.obj (.text:ti_sdo_ipc_ListMP_Instance_finalize__F)
    008b44e0 00000260 : Ipc.obj (.text:ti_sdo_ipc_heaps_HeapMemMP_Instance_finalize__F)
    008b4740 00000260 : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_disableEvent__E)
    008b49a0 00000260 ti.targets.rts6000.ae66 : Startup.oe66 (.text:xdc_runtime_Startup_startMods__I)
    008b4c00 00000260 UserProcessProject_pe66.oe66 (.text:xdc_runtime_System_printfExtend__I)
    008b4e60 00000240 rts6600_elf.lib : imath64.obj (.text:__c6xabi_divull)
    008b50a0 00000240 : _printfi.obj (.text:_pconv_e)
    008b52e0 00000240 : _printfi.obj (.text:_pproc_diouxp)
    008b5520 00000240 sysbios.lib : BIOS.obj (.text:ti_sysbios_family_c64p_Exception_internalHandler__I)
    008b5760 00000240 : BIOS.obj (.text:ti_sysbios_knl_Semaphore_post__E)
    008b59a0 00000220 rts6600_elf.lib : _printfi.obj (.text:_pproc_str)
    008b5bc0 00000220 : fputc.obj (.text:fputc)
    008b5de0 00000220 sysbios.lib : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_reconfig__E)
    008b6000 00000220 : BIOS.obj (.text:ti_sysbios_knl_Swi_run__I)
    008b6220 00000220 : BIOS.obj (.text:ti_sysbios_knl_Task_schedule__I)
    008b6440 00000220 : BIOS.obj (.text:ti_sysbios_knl_Task_startup__E)
    008b6660 00000200 ipc.lib : Ipc.obj (.text:GateMP_enter)
    008b6860 00000200 : Ipc.obj (.text:GateMP_leave)
    008b6a60 00000200 : Ipc.obj (.text:ListMP_openByAddr)
    008b6c60 00000200 rts6600_elf.lib : _printfi.obj (.text:_pconv_g)
    008b6e60 00000200 sysbios.lib : c64p_Hwi_disp_always.obj (.text:_ti_sysbios_family_c64p_Hwi_dispatchAlways)
    008b7060 00000200 : BIOS.obj (.text:block$56)
    008b7260 00000200 rts6600_elf.lib : setvbuf.obj (.text:setvbuf)
    008b7460 00000200 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_family_c647x_MultiProcSetup_init__I)
    008b7660 00000200 : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_sendEvent__E)
    008b7860 00000200 : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_Instance_finalize__F)
    008b7a60 000001e0 : Ipc.obj (.text:ti_sdo_ipc_GateMP_attach__F)
    008b7c40 000001e0 : Ipc.obj (.text:ti_sdo_ipc_GateMP_getFreeResource__I)
    008b7e20 000001e0 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Task_postInit__I)
    008b8000 000001e0 : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_getFreq__E)
    008b81e0 000001c0 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:EDMA3_RM_close)
    008b83a0 000001c0 ipc.lib : Ipc.obj (.text:HeapMemMP_openByAddr)
    008b8560 000001c0 rts6600_elf.lib : _printfi.obj (.text:_mcpy)
    008b8720 000001c0 edma_init.obj (.text)
    008b88e0 000001c0 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_registerEvent__E)
    008b8aa0 000001c0 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Swi_Instance_init__F)
    008b8c60 000001c0 : BIOS.obj (.text:ti_sysbios_knl_Task_checkStacks__E)
    008b8e20 000001c0 : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_setPeriodMicroSecs__E)
    008b8fe0 000001a0 rts6600_elf.lib : trgdrv.obj (.text:HOSTrename)
    008b9180 000001a0 ipc.lib : Ipc.obj (.text:SharedRegion_getCacheLineSize)
    008b9320 000001a0 : Ipc.obj (.text:SharedRegion_getHeap)
    008b94c0 000001a0 : Ipc.obj (.text:SharedRegion_isCacheEnabled)
    008b9660 000001a0 rts6600_elf.lib : imath40.obj (.text:__c6xabi_divul)
    008b9800 000001a0 : log.obj (.text:log)
    008b99a0 000001a0 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_GateMP_openRegion0Reserved__F)
    008b9b40 000001a0 : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_enableEvent__E)
    008b9ce0 000001a0 : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_unregisterEvent__E)
    008b9e80 000001a0 : Ipc.obj (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_attach__E)
    008ba020 000001a0 sysbios.lib : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_dispatch__F)
    008ba1c0 000001a0 : BIOS.obj (.text:ti_sysbios_gates_GateMutex_enter__E)
    008ba360 000001a0 : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_start__E)
    008ba500 00000180 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:EDMA3_RM_registerTccCb)
    008ba680 00000180 ipc.lib : Ipc.obj (.text:MultiProc_setLocalId)
    008ba800 00000180 : Ipc.obj (.text:NameServer_getHandle)
    008ba980 00000180 : Ipc.obj (.text:Notify_intLineRegistered)
    008bab00 00000180 rts6600_elf.lib : copy_decompress_rle.obj (.text:__TI_decompress_rle_core)
    008bac80 00000180 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:edma3GlobalRegionInit)
    008bae00 00000180 rts6600_elf.lib : frexp.obj (.text:frexp)
    008baf80 00000180 sysbios.lib : c64p_Exception_asm.obj (.text)
    008bb100 00000180 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_MessageQ_registerTransport__F)
    008bb280 00000180 : Ipc.obj (.text:ti_sdo_ipc_Notify_Module_startup__F)
    008bb400 00000180 : Ipc.obj (.text:ti_sdo_ipc_gates_GatePeterson_enter__E)
    008bb580 00000180 : Ipc.obj (.text:ti_sdo_utils_NameServer_Module_startup__F)
    008bb700 00000180 sysbios.lib : BIOS.obj (.text:ti_sysbios_heaps_HeapBuf_Module_startup__F)
    008bb880 00000180 : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_Instance_init__F)
    008bba00 00000180 : BIOS.obj (.text:ti_sysbios_knl_Swi_schedule__I)
    008bbb80 00000180 : BIOS.obj (.text:ti_sysbios_knl_Task_unblockI__E)
    008bbd00 00000180 ti.targets.rts6000.ae66 : Text.oe66 (.text:xdc_runtime_Text_putSite__F)
    008bbe80 00000160 edma3_lld_drv.ae66 : edma3_drv_init.oe66 (.text:EDMA3_DRV_close)
    008bbfe0 00000160 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:EDMA3_RM_unregisterTccCb)
    008bc140 00000160 : edma3resmgr.oe66 (.text:edma3ShadowRegionInit)
    008bc2a0 00000160 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_GateMP_createLocal__F)
    008bc400 00000160 : Ipc.obj (.text:ti_sdo_ipc_MessageQ_unregisterTransport__F)
    008bc560 00000160 : Ipc.obj (.text:ti_sdo_ipc_gates_GateHWSem_Instance_init__F)
    008bc6c0 00000160 : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_sharedMemReq__F)
    008bc820 00000160 : Ipc.obj (.text:ti_sdo_utils_NameServer_isRegistered__E)
    008bc980 00000160 : Ipc.obj (.text:ti_sdo_utils_NameServer_registerRemoteDriver__E)
    008bcae0 00000160 : Ipc.obj (.text:ti_sdo_utils_NameServer_unregisterRemoteDriver__E)
    008bcc40 00000140 edma3_lld_drv.ae66 : edma3_drv_adv.oe66 (.text:EDMA3_DRV_setPaRAM)
    008bcd80 00000140 ipc.lib : Ipc.obj (.text:GateMP_close)
    008bcec0 00000140 : Ipc.obj (.text:Notify_attach)
    008bd000 00000140 boot.ae66 : autoinit.oe66 (.text:_auto_init_elf)
    008bd140 00000140 rts6600_elf.lib : _printfi.obj (.text:_pproc_fflags)
    008bd280 00000140 data_transfer.obj (.text)
    008bd3c0 00000140 rts6600_elf.lib : lowlev.obj (.text:getdevice)
    008bd500 00000140 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_Notify_exec__F)
    008bd640 00000140 sysbios.lib : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_Module_startup__F)
    008bd780 00000140 : BIOS.obj (.text:ti_sysbios_family_c66_Cache_Module_startup__F)
    008bd8c0 00000140 : BIOS.obj (.text:ti_sysbios_gates_GateSwi_enter__E)
    008bda00 00000140 : BIOS.obj (.text:ti_sysbios_knl_Clock_Instance_finalize__F)
    008bdb40 00000140 : BIOS.obj (.text:ti_sysbios_knl_Semaphore_Instance_init__F)
    008bdc80 00000140 : BIOS.obj (.text:ti_sysbios_knl_Swi_post__E)
    008bddc0 00000140 : BIOS.obj (.text:ti_sysbios_knl_Task_blockI__E)
    008bdf00 00000140 : BIOS.obj (.text:ti_sysbios_knl_Task_yield__E)
    008be040 00000120 edma3_lld_drv.ae66 : edma3_drv_basic.oe66 (.text:EDMA3_DRV_clearErrorBits)
    008be160 00000120 rts6600_elf.lib : fclose.obj (.text:_closefile)
    008be280 00000120 : _printfi.obj (.text:_ltostr)
    008be3a0 00000120 : fseek.obj (.text:fseek)
    008be4c0 00000120 sysbios.lib : BIOS.obj (.text:rtsUnlock$0)
    008be5e0 00000120 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_MessageQ_Module_startup__F)
    008be700 00000120 : Ipc.obj (.text:ti_sdo_ipc_family_c647x_Interrupt_intRegister__E)
    008be820 00000120 : Ipc.obj (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_finalize__F)
    008be940 00000120 ti.targets.rts6000.ae66 : Text.oe66 (.text:xdc_runtime_Text_putLab__F)
    008bea60 00000100 rts6600_elf.lib : trgdrv.obj (.text:HOSTlseek)
    008beb60 00000100 : _io_perm.obj (.text:_wrt_ok)
    008bec60 00000100 edma_isr.obj (.text)
    008bed60 00000100 rts6600_elf.lib : fprintf.obj (.text:fprintf)
    008bee60 00000100 sysbios.lib : BIOS.obj (.text:initDevice$44)
    008bef60 00000100 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_GateMP_start__F)
    008bf060 00000100 : Ipc.obj (.text:ti_sdo_ipc_Notify_Instance_finalize__F)
    008bf160 00000100 : Ipc.obj (.text:ti_sdo_ipc_SharedRegion_attach__F)
    008bf260 00000100 : Ipc.obj (.text:ti_sdo_ipc_SharedRegion_clearReservedMemory__F)
    008bf360 00000100 : Ipc.obj (.text:ti_sdo_ipc_family_c647x_Interrupt_Module_startup__F)
    008bf460 00000100 : Ipc.obj (.text:ti_sdo_ipc_gates_GateHWSem_Module_startup__F)
    008bf560 00000100 : Ipc.obj (.text:ti_sdo_ipc_gates_GateMPSupportNull_enter__E)
    008bf660 00000100 : Ipc.obj (.text:ti_sdo_ipc_gates_GateMPSupportNull_leave__E)
    008bf760 00000100 : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShmSetup_attach__E)
    008bf860 00000100 sysbios.lib : BIOS.obj (.text:ti_sysbios_family_c64p_EventCombiner_dispatch__F)
    008bf960 00000100 : BIOS.obj (.text:ti_sysbios_gates_GateMutexPri_leave__E)
    008bfa60 00000100 : BIOS.obj (.text:ti_sysbios_knl_Clock_startI__E)
    008bfb60 00000100 : BIOS.obj (.text:ti_sysbios_knl_Swi_restoreHwi__E)
    008bfc60 00000100 ti.targets.rts6000.ae66 : Core-mem.oe66 (.text:xdc_runtime_Core_deleteObject__I)
    008bfd60 00000100 : Startup.oe66 (.text:xdc_runtime_Startup_exec__F)
    008bfe60 00000100 : Text.oe66 (.text:xdc_runtime_Text_putMod__F)
    008bff60 00000100 : Text.oe66 (.text:xdc_runtime_Text_visitRope2__I)
    008c0060 000000e0 edma3_lld_drv.ae66 : edma3_drv_init.oe66 (.text:EDMA3_DRV_delete)
    008c0140 000000e0 rts6600_elf.lib : trgdrv.obj (.text:HOSTopen)
    008c0220 000000e0 : _printfi.obj (.text:_div)
    008c0300 000000e0 : atoi.obj (.text:atoi)
    008c03e0 000000e0 : lowlev.obj (.text:close)
    008c04c0 000000e0 : copy_zero_init.obj (.text:decompress:ZI:__TI_zero_init)
    008c05a0 000000e0 : fflush.obj (.text:fflush)
    008c0680 000000e0 gpio.obj (.text)
    008c0760 000000e0 rts6600_elf.lib : ltoa.obj (.text:ltoa)
    008c0840 000000e0 : memset.obj (.text:memset)
    008c0920 000000e0 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_family_c647x_NotifySetup_attach__E)
    008c0a00 000000e0 : Ipc.obj (.text:ti_sdo_ipc_gates_GateHWSem_enter__E)
    008c0ae0 000000e0 sysbios.lib : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_Instance_finalize__F)
    008c0bc0 000000e0 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_Instance_init__F)
    008c0ca0 000000e0 : BIOS.obj (.text:ti_sysbios_knl_Clock_start__E)
    008c0d80 000000e0 : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_startup__E)
    008c0e60 000000e0 ti.targets.rts6000.ae66 : Error.oe66 (.text:xdc_runtime_Error_print__F)
    008c0f40 000000e0 : Memory.oe66 (.text:xdc_runtime_Memory_alloc__F)
    008c1020 000000c0 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:EDMA3_RM_delete)
    008c10e0 000000c0 rts6600_elf.lib : trgdrv.obj (.text:HOSTread)
    008c11a0 000000c0 : trgdrv.obj (.text:HOSTunlink)
    008c1260 000000c0 : trgdrv.obj (.text:HOSTwrite)
    008c1320 000000c0 ipc.lib : Ipc.obj (.text:HeapMemMP_create)
    008c13e0 000000c0 : Ipc.obj (.text:ListMP_create)
    008c14a0 000000c0 rts6600_elf.lib : dtor_list.obj (.text:_Z11__TI_atexitPFYvPvES_S_)
    008c1560 000000c0 : dtor_list.obj (.text:__cxa_finalize)
    008c1620 000000c0 : divu.obj (.text:__divu)
    008c16e0 000000c0 : fflush.obj (.text:_doflush)
    008c17a0 000000c0 : exit.obj (.text:exit)
    008c1860 000000c0 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_Object__create__S)
    008c1920 000000c0 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_GateMP_getRegion0ReservedSize__F)
    008c19e0 000000c0 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_ListMP_Object__create__S)
    008c1aa0 000000c0 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_Notify_Object__create__S)
    008c1b60 000000c0 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_Notify_execMany__I)
    008c1c20 000000c0 : Ipc.obj (.text:ti_sdo_ipc_family_c647x_Interrupt_intShmStub__I)
    008c1ce0 000000c0 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_gates_GatePeterson_Object__create__S)
    008c1da0 000000c0 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_heaps_HeapMemMP_Object__create__S)
    008c1e60 000000c0 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__create__S)
    008c1f20 000000c0 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__create__S)
    008c1fe0 000000c0 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_transports_TransportShm_Object__create__S)
    008c20a0 000000c0 sysbios.lib : BIOS.obj (.text:ti_sysbios_BIOS_errorRaiseHook__I)
    008c2160 000000c0 UserProcessProject_pe66.oe66 (.text:ti_sysbios_family_c64p_Hwi_Object__create__S)
    008c2220 000000c0 sysbios.lib : BIOS.obj (.text:ti_sysbios_gates_GateAll_leave__E)
    008c22e0 000000c0 : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_getStats__E)
    008c23a0 000000c0 : BIOS.obj (.text:ti_sysbios_knl_Clock_logTick__E)
    008c2460 000000c0 : BIOS.obj (.text:ti_sysbios_knl_Swi_Instance_finalize__F)
    008c2520 000000c0 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Swi_Object__create__S)
    008c25e0 000000c0 sysbios.lib : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_stop__E)
    008c26a0 000000c0 ti.targets.rts6000.ae66 : System.oe66 (.text:xdc_runtime_System_formatNum__I)
    008c2760 000000c0 UserProcessProject_pe66.oe66 (.text:xdc_runtime_knl_GateThread_Object__create__S)
    008c2820 000000a0 rts6600_elf.lib : trgdrv.obj (.text:HOSTclose)
    008c28c0 000000a0 : trgdrv.obj (.text:HOSTtime)
    008c2960 000000a0 : remu.obj (.text:__remu)
    008c2a00 000000a0 boot.ae66 : boot.oe66 (.text:_c_int00)
    008c2aa0 000000a0 rts6600_elf.lib : fopen.obj (.text:_cleanup)
    008c2b40 000000a0 : _printfi.obj (.text:_ecpy)
    008c2be0 000000a0 : _printfi.obj (.text:_fcpy)
    008c2c80 000000a0 : _printfi.obj (.text:_pconv_f)
    008c2d20 000000a0 sysbios.lib : c64p_Hwi_asm.obj (.text:_ti_sysbios_family_c64p_Hwi_plug__E)
    008c2dc0 000000a0 rts6600_elf.lib : lowlev.obj (.text:finddevice)
    008c2e60 000000a0 : lowlev.obj (.text:lseek)
    008c2f00 000000a0 : memcpy64.obj (.text:memcpy)
    008c2fa0 000000a0 : modf.obj (.text:modf)
    008c3040 000000a0 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_family_c647x_Interrupt_intUnregister__E)
    008c30e0 000000a0 : Ipc.obj (.text:ti_sdo_ipc_gates_GatePeterson_leave__E)
    008c3180 000000a0 : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Instance_finalize__F)
    008c3220 000000a0 sysbios.lib : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_init__I)
    008c32c0 000000a0 rts6600_elf.lib : lowlev.obj (.text:write)
    008c3360 000000a0 ti.targets.rts6000.ae66 : Assert.oe66 (.text:xdc_runtime_Assert_raise__I)
    008c3400 00000080 rts6600_elf.lib : fixdu.obj (.text:__c6xabi_fixdu)
    008c3480 00000080 : llshift.obj (.text:__c6xabi_llshl)
    008c3500 00000080 sysbios.lib : c62_TaskSupport_asm.obj (.text:_ti_sysbios_family_c62_TaskSupport_swap__E)
    008c3580 00000080 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:edma3MemCpy)
    008c3600 00000080 UserProcessProject_pe66.oe66 (.text:malloc)
    008c3680 00000080 rts6600_elf.lib : rand.obj (.text:rand)
    008c3700 00000080 : trgmsg.obj (.text:readmsg)
    008c3780 00000080 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_gates_GateHWSem_Object__create__S)
    008c3800 00000080 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_gates_GateMPSupportNull_Object__create__S)
    008c3880 00000080 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_detach__E)
    008c3900 00000080 : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_swiFxn__I)
    008c3980 00000080 UserProcessProject_pe66.oe66 (.text:ti_sdo_utils_List_Object__create__S)
    008c3a00 00000080 sysbios.lib : BIOS.obj (.text:ti_sysbios_family_c62_TaskSupport_start__E)
    008c3a80 00000080 : BIOS.obj (.text:ti_sysbios_family_c64p_Exception_Module_startup__F)
    008c3b00 00000080 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_eventMap__E)
    008c3b80 00000080 : BIOS.obj (.text:ti_sysbios_family_c66_Cache_invL1pAll__E)
    008c3c00 00000080 : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_getEventId__F)
    008c3c80 00000080 : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_mapSysIntToHostInt__F)
    008c3d00 00000080 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateAll_Object__create__S)
    008c3d80 00000080 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateHwi_Object__create__S)
    008c3e00 00000080 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateMutexPri_Object__create__S)
    008c3e80 00000080 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateMutex_Object__create__S)
    008c3f00 00000080 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateSwi_Object__create__S)
    008c3f80 00000080 sysbios.lib : BIOS.obj (.text:ti_sysbios_gates_GateSwi_leave__E)
    008c4000 00000080 : BIOS.obj (.text:ti_sysbios_hal_Hwi_checkStack:ti_sysbios_hal_Hwi_checkStack)
    008c4080 00000080 UserProcessProject_pe66.oe66 (.text:ti_sysbios_heaps_HeapMem_Object__create__S)
    008c4100 00000080 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Clock_Module_startup__F)
    008c4180 00000080 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Clock_Object__create__S)
    008c4200 00000080 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Clock_doTick__I)
    008c4280 00000080 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Clock_getTicks__E)
    008c4300 00000080 : BIOS.obj (.text:ti_sysbios_knl_Idle_loop__E)
    008c4380 00000080 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Queue_Object__create__S)
    008c4400 00000080 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Semaphore_Object__create__S)
    008c4480 00000080 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Semaphore_pendTimeout__I)
    008c4500 00000080 : BIOS.obj (.text:ti_sysbios_knl_Swi_startup__E)
    008c4580 00000080 : BIOS.obj (.text:ti_sysbios_knl_Task_restore__E)
    008c4600 00000080 : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_getCount__E)
    008c4680 00000080 : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_getPeriod__E)
    008c4700 00000080 UserProcessProject_pe66.oe66 (.text:ti_sysbios_xdcruntime_GateThreadSupport_Object__create__S)
    008c4780 00000080 rts6600_elf.lib : lowlev.obj (.text:unlink)
    008c4800 00000080 ti.targets.rts6000.ae66 : Core-label.oe66 (.text:xdc_runtime_Core_assignLabel__I)
    008c4880 00000080 : Core-params.oe66 (.text:xdc_runtime_Core_assignParams__I)
    008c4900 00000080 : System.oe66 (.text:xdc_runtime_System_atexit__F)
    008c4980 00000080 : System.oe66 (.text:xdc_runtime_System_rtsExit__I)
    008c4a00 00000080 : Text.oe66 (.text:xdc_runtime_Text_printVisFxn__I)
    008c4a80 00000080 : Text.oe66 (.text:xdc_runtime_Text_xprintf__I)
    008c4b00 00000060 ipc.lib : Ipc.obj (.text:GateMP_Params_init)
    008c4b60 00000060 : Ipc.obj (.text:HeapMemMP_Params_init)
    008c4bc0 00000060 rts6600_elf.lib : assert.obj (.text:__c6xabi_abort_msg)
    008c4c20 00000060 : frcmpyd_div.obj (.text:__c6xabi_frcmpyd_div)
    008c4c80 00000060 : llshift.obj (.text:__c6xabi_llshru)
    008c4ce0 00000060 : imath64.obj (.text:_subcull)
    008c4d40 00000060 edma_c6670_cfg.obj (.text)
    008c4da0 00000060 rts6600_elf.lib : memccpy.obj (.text:memccpy)
    008c4e00 00000060 : rand.obj (.text:srand)
    008c4e60 00000060 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_family_c647x_NotifySetup_sharedMemReq__E)
    008c4ec0 00000060 : Ipc.obj (.text:ti_sdo_ipc_gates_GateHWSem_leave__E)
    008c4f20 00000060 : Ipc.obj (.text:ti_sdo_ipc_gates_GatePeterson_Instance_finalize__F)
    008c4f80 00000060 : Ipc.obj (.text:ti_sdo_ipc_gates_GatePeterson_sharedMemReq__E)
    008c4fe0 00000060 : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_setNotifyHandle__E)
    008c5040 00000060 : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShmSetup_sharedMemReq__E)
    008c50a0 00000060 UserProcessProject_pe66.oe66 (.text:ti_sysbios_BIOS_exitFunc__I)
    008c5100 00000060 sysbios.lib : BIOS.obj (.text:ti_sysbios_BIOS_registerRTSLock__I)
    008c5160 00000060 : BIOS.obj (.text:ti_sysbios_family_c64p_EventCombiner_Module_startup__F)
    008c51c0 00000060 : BIOS.obj (.text:ti_sysbios_family_c64p_EventCombiner_dispatchPlug__F)
    008c5220 00000060 : BIOS.obj (.text:ti_sysbios_family_c64p_EventCombiner_unused__F)
    008c5280 00000060 : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_unused__F)
    008c52e0 00000060 : BIOS.obj (.text:ti_sysbios_gates_GateAll_enter__E)
    008c5340 00000060 : BIOS.obj (.text:ti_sysbios_gates_GateMutex_Instance_init__F)
    008c53a0 00000060 : BIOS.obj (.text:ti_sysbios_hal_Hwi_initStack:ti_sysbios_hal_Hwi_initStack)
    008c5400 00000060 : BIOS.obj (.text:ti_sysbios_knl_Swi_Module_startup__F)
    008c5460 00000060 : BIOS.obj (.text:ti_sysbios_knl_Task_allBlockedFunction__I)
    008c54c0 00000060 : BIOS.obj (.text:ti_sysbios_knl_Task_enter__I)
    008c5520 00000060 rts6600_elf.lib : trgmsg.obj (.text:writemsg)
    008c5580 00000060 ti.targets.rts6000.ae66 : Memory.oe66 (.text:xdc_runtime_Memory_calloc__F)
    008c55e0 00000060 : Memory.oe66 (.text:xdc_runtime_Memory_valloc__F)
    008c5640 00000060 : SysStd.oe66 (.text:xdc_runtime_SysStd_abort__F)
    008c56a0 00000060 : System.oe66 (.text:xdc_runtime_System_avprintf__F)
    008c5700 00000060 : System.oe66 (.text:xdc_runtime_System_vprintf__F)
    008c5760 00000060 : Text.oe66 (.text:xdc_runtime_Text_cordText__F)
    008c57c0 00000040 rts6600_elf.lib : isinf.obj (.text:__c6xabi_isinf)
    008c5800 00000040 : _printfi.obj (.text:__c6xabi_isnan)
    008c5840 00000040 : args_main.obj (.text:_args_main)
    008c5880 00000040 sysbios.lib : c62_TaskSupport_asm.obj (.text:_ti_sysbios_family_c62_TaskSupport_buildTaskStack)
    008c58c0 00000040 : c64p_Hwi_asm_switch.obj (.text:_ti_sysbios_family_xxx_Hwi_switchToIsrStack)
    008c5900 00000040 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:edma3ParamCpy)
    008c5940 00000040 UserProcessProject_pe66.oe66 (.text:free)
    008c5980 00000040 rts6600_elf.lib : log10.obj (.text:log10)
    008c59c0 00000040 sysbios.lib : BIOS.obj (.text:rtsLock$0)
    008c5a00 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_Object__delete__S)
    008c5a40 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_ListMP_Object__delete__S)
    008c5a80 00000040 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_family_c647x_Interrupt_intClear__E)
    008c5ac0 00000040 : Ipc.obj (.text:ti_sdo_ipc_family_c647x_Interrupt_intSend__E)
    008c5b00 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_gates_GateHWSem_Handle__label__S)
    008c5b40 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_gates_GateHWSem_Object__delete__S)
    008c5b80 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_gates_GateMPSupportNull_Handle__label__S)
    008c5bc0 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_gates_GateMPSupportNull_Object__delete__S)
    008c5c00 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_gates_GatePeterson_Handle__label__S)
    008c5c40 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_gates_GatePeterson_Object__delete__S)
    008c5c80 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_heaps_HeapMemMP_Handle__label__S)
    008c5cc0 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_heaps_HeapMemMP_Object__delete__S)
    008c5d00 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Handle__label__S)
    008c5d40 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__delete__S)
    008c5d80 00000040 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_disable__E)
    008c5dc0 00000040 : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_enable__E)
    008c5e00 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Handle__label__S)
    008c5e40 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__delete__S)
    008c5e80 00000040 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_sharedMemReq__E)
    008c5ec0 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_transports_TransportShm_Handle__label__S)
    008c5f00 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_transports_TransportShm_Object__delete__S)
    008c5f40 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_utils_List_Object__destruct__S)
    008c5f80 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_utils_NameServer_Module__startupDone__F)
    008c5fc0 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_utils_NameServer_Object__get__S)
    008c6000 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_BIOS_startFunc__I)
    008c6040 00000040 sysbios.lib : BIOS.obj (.text:ti_sysbios_BIOS_start__E)
    008c6080 00000040 : BIOS.obj (.text:ti_sysbios_family_c64p_EventCombiner_disableEvent__F)
    008c60c0 00000040 : BIOS.obj (.text:ti_sysbios_family_c64p_EventCombiner_enableEvent__F)
    008c6100 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_family_c64p_Hwi_Module__startupDone__F)
    008c6140 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_family_c64p_Hwi_Object__delete__S)
    008c6180 00000040 sysbios.lib : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_disableInterrupt__E)
    008c61c0 00000040 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_enableInterrupt__E)
    008c6200 00000040 : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_dispatchPlug__F)
    008c6240 00000040 : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_enableAllHostInts__F)
    008c6280 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateAll_Handle__label__S)
    008c62c0 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateAll_Object__delete__S)
    008c6300 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateHwi_Handle__label__S)
    008c6340 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateHwi_Object__delete__S)
    008c6380 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateMutexPri_Handle__label__S)
    008c63c0 00000040 sysbios.lib : BIOS.obj (.text:ti_sysbios_gates_GateMutexPri_Instance_finalize__F)
    008c6400 00000040 : BIOS.obj (.text:ti_sysbios_gates_GateMutexPri_Instance_init__F)
    008c6440 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateMutexPri_Object__delete__S)
    008c6480 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateMutexPri_Object__destruct__S)
    008c64c0 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateMutex_Handle__label__S)
    008c6500 00000040 sysbios.lib : BIOS.obj (.text:ti_sysbios_gates_GateMutex_Instance_finalize__F)
    008c6540 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateMutex_Object__delete__S)
    008c6580 00000040 sysbios.lib : BIOS.obj (.text:ti_sysbios_gates_GateMutex_leave__E)
    008c65c0 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateSwi_Handle__label__S)
    008c6600 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateSwi_Object__delete__S)
    008c6640 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_hal_Timer_Module__startupDone__F)
    008c6680 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_heaps_HeapMem_Handle__label__S)
    008c66c0 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_heaps_HeapMem_Object__delete__S)
    008c6700 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_heaps_HeapMem_Object__get__S)
    008c6740 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Clock_Object__destruct__S)
    008c6780 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Queue_Object__destruct__S)
    008c67c0 00000040 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Semaphore_Instance_finalize__F)
    008c6800 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Semaphore_Object__delete__S)
    008c6840 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Semaphore_Object__destruct__S)
    008c6880 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Swi_Object__destruct__S)
    008c68c0 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Swi_Object__get__S)
    008c6900 00000040 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Swi_inc__E)
    008c6940 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Task_Object__get__S)
    008c6980 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_timers_timer64_Timer_Module__startupDone__F)
    008c69c0 00000040 sysbios.lib : BIOS.obj (.text:ti_sysbios_xdcruntime_GateThreadSupport_Instance_finalize__F)
    008c6a00 00000040 : BIOS.obj (.text:ti_sysbios_xdcruntime_GateThreadSupport_Instance_init__F)
    008c6a40 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_xdcruntime_GateThreadSupport_Object__delete__S)
    008c6a80 00000040 sysbios.lib : BIOS.obj (.text:ti_sysbios_xdcruntime_GateThreadSupport_enter__F)
    008c6ac0 00000040 : BIOS.obj (.text:ti_sysbios_xdcruntime_GateThreadSupport_leave__F)
    008c6b00 00000040 rts6600_elf.lib : time.obj (.text:time)
    008c6b40 00000040 ti.targets.rts6000.ae66 : Error.oe66 (.text:xdc_runtime_Error_check__F)
    008c6b80 00000040 : Error.oe66 (.text:xdc_runtime_Error_init__F)
    008c6bc0 00000040 UserProcessProject_pe66.oe66 (.text:xdc_runtime_GateNull_Handle__label__S)
    008c6c00 00000040 UserProcessProject_pe66.oe66 (.text:xdc_runtime_GateNull_Object__create__S)
    008c6c40 00000040 UserProcessProject_pe66.oe66 (.text:xdc_runtime_GateNull_Object__delete__S)
    008c6c80 00000040 ti.targets.rts6000.ae66 : Gate.oe66 (.text:xdc_runtime_Gate_leaveSystem__F)
    008c6cc0 00000040 : Memory.oe66 (.text:xdc_runtime_Memory_free__F)
    008c6d00 00000040 : Registry.oe66 (.text:xdc_runtime_Registry_findById__F)
    008c6d40 00000040 : System.oe66 (.text:xdc_runtime_System_abort__F)
    008c6d80 00000040 UserProcessProject_pe66.oe66 (.text:xdc_runtime_System_aprintf__E)
    008c6dc0 00000040 UserProcessProject_pe66.oe66 (.text:xdc_runtime_System_printf__E)
    008c6e00 00000040 ti.targets.rts6000.ae66 : Text.oe66 (.text:xdc_runtime_Text_ropeText__F)
    008c6e40 00000040 UserProcessProject_pe66.oe66 (.text:xdc_runtime_knl_GateThread_Handle__label__S)
    008c6e80 00000040 ti.targets.rts6000.ae66 : GateThread.oe66 (.text:xdc_runtime_knl_GateThread_Instance_finalize__F)
    008c6ec0 00000040 : GateThread.oe66 (.text:xdc_runtime_knl_GateThread_Instance_init__F)
    008c6f00 00000040 UserProcessProject_pe66.oe66 (.text:xdc_runtime_knl_GateThread_Object__delete__S)
    008c6f40 00000020 ti.csl.ae66 : csl_gpioGetBaseAddress.oe66 (.text:CSL_GPIO_open)
    008c6f60 00000020 ipc.lib : Ipc.obj (.text:MultiProc_getNumProcessors)
    008c6f80 00000020 : Ipc.obj (.text:MultiProc_self)
    008c6fa0 00000020 rts6600_elf.lib : errno.obj (.text:__c6xabi_errno_addr)
    008c6fc0 00000020 : negll.obj (.text:__c6xabi_negll)
    008c6fe0 00000020 : dtor_list.obj (.text:__cxa_atexit)
    008c7000 00000020 : dtor_list.obj (.text:__cxa_ia64_exit)
    008c7020 00000020 : push.obj (.text:__pop_rts)
    008c7040 00000020 : push.obj (.text:__push_rts)
    008c7060 00000020 ti.targets.rts6000.ae66 : xdc_noinit.oe66 (.text:__xdc__init)
    008c7080 00000020 rts6600_elf.lib : _lock.obj (.text:_nop)
    008c70a0 00000020 : fprintf.obj (.text:_outc)
    008c70c0 00000020 : fprintf.obj (.text:_outs)
    008c70e0 00000020 : _lock.obj (.text:_register_lock)
    008c7100 00000020 : _lock.obj (.text:_register_unlock)
    008c7120 00000020 sysbios.lib : c62_TaskSupport_asm.obj (.text:_ti_sysbios_family_c62_TaskSupport_glue)
    008c7140 00000020 : c64p_Hwi_asm_switch.obj (.text:_ti_sysbios_family_xxx_Hwi_switchToTaskStack)
    008c7160 00000020 rts6600_elf.lib : exit.obj (.text:abort)
    008c7180 00000020 : dtor_list.obj (.text:atexit)
    008c71a0 00000020 ti.csl.ae66 : csl_tsc.oe66 (.text:cslsys_section:tsc)
    008c71c0 00000020 rts6600_elf.lib : copy_decompress_none.obj (.text:decompress:none:__TI_decompress_none)
    008c71e0 00000020 : copy_decompress_rle.obj (.text:decompress:rle24:__TI_decompress_rle24)
    008c7200 00000020 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:edma3MemZero)
    008c7220 00000020 : edma3resmgr.oe66 (.text:lisrEdma3CCErrHandler0)
    008c7240 00000020 : edma3resmgr.oe66 (.text:lisrEdma3ComplHandler0)
    008c7260 00000020 : edma3resmgr.oe66 (.text:lisrEdma3TC0ErrHandler0)
    008c7280 00000020 : edma3resmgr.oe66 (.text:lisrEdma3TC1ErrHandler0)
    008c72a0 00000020 : edma3resmgr.oe66 (.text:lisrEdma3TC2ErrHandler0)
    008c72c0 00000020 : edma3resmgr.oe66 (.text:lisrEdma3TC3ErrHandler0)
    008c72e0 00000020 : edma3resmgr.oe66 (.text:lisrEdma3TC4ErrHandler0)
    008c7300 00000020 : edma3resmgr.oe66 (.text:lisrEdma3TC5ErrHandler0)
    008c7320 00000020 : edma3resmgr.oe66 (.text:lisrEdma3TC6ErrHandler0)
    008c7340 00000020 : edma3resmgr.oe66 (.text:lisrEdma3TC7ErrHandler0)
    008c7360 00000020 sysbios.lib : BIOS.obj (.text:nullFunc$0)
    008c7380 00000020 rts6600_elf.lib : fputc.obj (.text:putc)
    008c73a0 00000020 : fputc.obj (.text:putchar)
    008c73c0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_Params__init__S)
    008c73e0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Object__create__S)
    008c7400 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Object__delete__S)
    008c7420 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Params__init__S)
    008c7440 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Proxy__abstract__S)
    008c7460 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Proxy__delegate__S)
    008c7480 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Object__create__S)
    008c74a0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Object__delete__S)
    008c74c0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Params__init__S)
    008c74e0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Proxy__abstract__S)
    008c7500 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Proxy__delegate__S)
    008c7520 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteSystemProxy_Object__create__S)
    008c7540 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteSystemProxy_Object__delete__S)
    008c7560 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteSystemProxy_Params__init__S)
    008c7580 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteSystemProxy_Proxy__abstract__S)
    008c75a0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteSystemProxy_Proxy__delegate__S)
    008c75c0 00000020 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_GateMP_getSharedAddr__F)
    008c75e0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_ListMP_Params__init__S)
    008c7600 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_MessageQ_Object__get__S)
    008c7620 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_Notify_Module_GateProxy_enter__E)
    008c7640 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_Notify_Module_GateProxy_leave__E)
    008c7660 00000020 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_family_c647x_Interrupt_intDisable__E)
    008c7680 00000020 : Ipc.obj (.text:ti_sdo_ipc_family_c647x_Interrupt_intEnable__E)
    008c76a0 00000020 : Ipc.obj (.text:ti_sdo_ipc_family_c647x_NotifySetup_numIntLines__E)
    008c76c0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_gates_GateHWSem_Params__init__S)
    008c76e0 00000020 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_gates_GateHWSem_getReservedMask__E)
    008c7700 00000020 : Ipc.obj (.text:ti_sdo_ipc_gates_GateHWSem_query__F)
    008c7720 00000020 : Ipc.obj (.text:ti_sdo_ipc_gates_GateHWSem_sharedMemReq__E)
    008c7740 00000020 : Ipc.obj (.text:ti_sdo_ipc_gates_GateMPSupportNull_Instance_init__F)
    008c7760 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_gates_GateMPSupportNull_Params__init__S)
    008c7780 00000020 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_gates_GateMPSupportNull_getReservedMask__E)
    008c77a0 00000020 : Ipc.obj (.text:ti_sdo_ipc_gates_GateMPSupportNull_query__F)
    008c77c0 00000020 : Ipc.obj (.text:ti_sdo_ipc_gates_GateMPSupportNull_sharedMemReq__E)
    008c77e0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_gates_GatePeterson_Params__init__S)
    008c7800 00000020 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_gates_GatePeterson_getReservedMask__E)
    008c7820 00000020 : Ipc.obj (.text:ti_sdo_ipc_gates_GatePeterson_query__F)
    008c7840 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_heaps_HeapMemMP_Params__init__S)
    008c7860 00000020 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_heaps_HeapMemMP_isBlocking__F)
    008c7880 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Params__init__S)
    008c78a0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__first__S)
    008c78c0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__next__S)
    008c78e0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Params__init__S)
    008c7900 00000020 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_cbFxn__I)
    008c7920 00000020 : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShmSetup_isRegistered__E)
    008c7940 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_transports_TransportShm_Params__init__S)
    008c7960 00000020 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_control__E)
    008c7980 00000020 : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_getStatus__E)
    008c79a0 00000020 : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_notifyFxn__I)
    008c79c0 00000020 : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_setErrFxn__F)
    008c79e0 00000020 : Ipc.obj (.text:ti_sdo_utils_List_Instance_init__F)
    008c7a00 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_utils_List_Object__get__S)
    008c7a20 00000020 ipc.lib : Ipc.obj (.text:ti_sdo_utils_MultiProc_getClusterId__F)
    008c7a40 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_utils_NameServer_Object__first__S)
    008c7a60 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_utils_NameServer_Object__next__S)
    008c7a80 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_BIOS_RtsGateProxy_enter__E)
    008c7aa0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_BIOS_RtsGateProxy_leave__E)
    008c7ac0 00000020 sysbios.lib : BIOS.obj (.text:ti_sysbios_BIOS_getThreadType__E)
    008c7ae0 00000020 : BIOS.obj (.text:ti_sysbios_BIOS_setThreadType__E)
    008c7b00 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_family_c62_TaskSupport_Module__startupDone__S)
    008c7b20 00000020 sysbios.lib : BIOS.obj (.text:ti_sysbios_family_c62_TaskSupport_checkStack__E)
    008c7b40 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_family_c64p_Hwi_Params__init__S)
    008c7b60 00000020 sysbios.lib : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_clearInterrupt__E)
    008c7b80 00000020 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_getHandle__E)
    008c7ba0 00000020 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_startup__E)
    008c7bc0 00000020 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_switchFromBootStack__E)
    008c7be0 00000020 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_unPluggedInterrupt__I)
    008c7c00 00000020 : BIOS.obj (.text:ti_sysbios_family_c64p_tci6488_TimerSupport_enable__E)
    008c7c20 00000020 : BIOS.obj (.text:ti_sysbios_family_c66_Cache_inv__E)
    008c7c40 00000020 : BIOS.obj (.text:ti_sysbios_family_c66_Cache_wbInv__E)
    008c7c60 00000020 : BIOS.obj (.text:ti_sysbios_family_c66_Cache_wb__E)
    008c7c80 00000020 : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_disableHostInt__F)
    008c7ca0 00000020 : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_enableHostInt__F)
    008c7cc0 00000020 : BIOS.obj (.text:ti_sysbios_gates_GateAll_Instance_init__F)
    008c7ce0 00000020 : BIOS.obj (.text:ti_sysbios_gates_GateAll_query__F)
    008c7d00 00000020 : BIOS.obj (.text:ti_sysbios_gates_GateHwi_Instance_init__F)
    008c7d20 00000020 : BIOS.obj (.text:ti_sysbios_gates_GateHwi_enter__E)
    008c7d40 00000020 : BIOS.obj (.text:ti_sysbios_gates_GateHwi_leave__E)
    008c7d60 00000020 : BIOS.obj (.text:ti_sysbios_gates_GateHwi_query__F)
    008c7d80 00000020 : BIOS.obj (.text:ti_sysbios_gates_GateMutexPri_query__F)
    008c7da0 00000020 : BIOS.obj (.text:ti_sysbios_gates_GateMutex_query__F)
    008c7dc0 00000020 : BIOS.obj (.text:ti_sysbios_gates_GateSwi_Instance_init__F)
    008c7de0 00000020 : BIOS.obj (.text:ti_sysbios_gates_GateSwi_query__F)
    008c7e00 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S)
    008c7e20 00000020 sysbios.lib : BIOS.obj (.text:ti_sysbios_hal_Hwi_Module_startup__F)
    008c7e40 00000020 : BIOS.obj (.text:ti_sysbios_hal_Timer_Module_startup__F)
    008c7e60 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_hal_Timer_TimerProxy_Module__startupDone__S)
    008c7e80 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_hal_Timer_TimerProxy_getExpiredCounts__E)
    008c7ea0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_hal_Timer_TimerProxy_getPeriod__E)
    008c7ec0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_hal_Timer_TimerProxy_setNextTick__E)
    008c7ee0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_heaps_HeapBuf_Object__get__S)
    008c7f00 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E)
    008c7f20 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E)
    008c7f40 00000020 sysbios.lib : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_isBlocking__E)
    008c7f60 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Clock_Params__init__S)
    008c7f80 00000020 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Queue_Instance_init__F)
    008c7fa0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Queue_Object__get__S)
    008c7fc0 00000020 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Queue_empty__E)
    008c7fe0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Semaphore_Params__init__S)
    008c8000 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Swi_Params__init__S)
    008c8020 00000020 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Swi_disable__E)
    008c8040 00000020 : BIOS.obj (.text:ti_sysbios_knl_Swi_getTrigger__E)
    008c8060 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Task_Object__first__S)
    008c8080 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Task_Object__next__S)
    008c80a0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S)
    008c80c0 00000020 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Task_disable__E)
    008c80e0 00000020 : BIOS.obj (.text:ti_sysbios_knl_Task_enable__E)
    008c8100 00000020 : BIOS.obj (.text:ti_sysbios_knl_Task_getPri__E)
    008c8120 00000020 : BIOS.obj (.text:ti_sysbios_knl_Task_self__E)
    008c8140 00000020 : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_setNextTick__E)
    008c8160 00000020 ti.targets.rts6000.ae66 : GateNull.oe66 (.text:xdc_runtime_GateNull_enter__F)
    008c8180 00000020 : GateNull.oe66 (.text:xdc_runtime_GateNull_leave__F)
    008c81a0 00000020 : GateNull.oe66 (.text:xdc_runtime_GateNull_query__F)
    008c81c0 00000020 : Gate.oe66 (.text:xdc_runtime_Gate_enterSystem__F)
    008c81e0 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_IHeap_alloc)
    008c8200 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_IHeap_free)
    008c8220 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_Memory_HeapProxy_alloc__E)
    008c8240 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_Memory_HeapProxy_free__E)
    008c8260 00000020 ti.targets.rts6000.ae66 : Memory.oe66 (.text:xdc_runtime_Memory_getMaxDefaultTypeAlign__F)
    008c8280 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_Startup_Module__startupDone__S)
    008c82a0 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_Startup_exec__I)
    008c82c0 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_Startup_reset__I)
    008c82e0 00000020 ti.targets.rts6000.ae66 : Startup.oe66 (.text:xdc_runtime_Startup_rtsDone__F)
    008c8300 00000020 : SysStd.oe66 (.text:xdc_runtime_SysStd_exit__F)
    008c8320 00000020 : SysStd.oe66 (.text:xdc_runtime_SysStd_putch__F)
    008c8340 00000020 : SysStd.oe66 (.text:xdc_runtime_SysStd_ready__F)
    008c8360 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_System_Module_GateProxy_enter__E)
    008c8380 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_System_Module_GateProxy_leave__E)
    008c83a0 00000020 ti.targets.rts6000.ae66 : System.oe66 (.text:xdc_runtime_System_Module_startup__F)
    008c83c0 00000020 : System.oe66 (.text:xdc_runtime_System_exit__F)
    008c83e0 00000020 : System.oe66 (.text:xdc_runtime_System_lastFxn__I)
    008c8400 00000020 : System.oe66 (.text:xdc_runtime_System_vsprintf__F)
    008c8420 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_Text_visitRope__I)
    008c8440 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_knl_GateThread_Module__startupDone__S)
    008c8460 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_knl_GateThread_Proxy_Object__create__S)
    008c8480 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_knl_GateThread_Proxy_Object__delete__S)
    008c84a0 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_knl_GateThread_Proxy_enter__E)
    008c84c0 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_knl_GateThread_Proxy_leave__E)
    008c84e0 00000020 ti.targets.rts6000.ae66 : GateThread.oe66 (.text:xdc_runtime_knl_GateThread_enter__F)
    008c8500 00000020 : GateThread.oe66 (.text:xdc_runtime_knl_GateThread_leave__F)

    .fardata 0 008c8520 0000537c
    008c8520 00000fc0 edma3_lld_rm.ae66 : edma3_c6670_cfg.oe66 (.fardata:defInstInitConfig)
    008c94e0 00000fc0 edma_c6670_cfg.obj (.fardata:sampleInstInitConfig)
    008ca4a0 00000888 edma3_lld_rm.ae66 : edma3_c6670_cfg.oe66 (.fardata:edma3GblCfgParams)
    008cad28 00000888 edma_c6670_cfg.obj (.fardata:sampleEdma3GblCfgParams)
    008cb5b0 00000800 UserProcessProject_pe66.oe66 (.fardata:ti_sdo_ipc_GateMP_Module_State_0_remoteCustom1Gates__A)
    008cbdb0 0000073c UserProcessProject_pe66.oe66 (.fardata)
    008cc4ec 00000004 rts6600_elf.lib : defs.obj (.fardata)
    008cc4f0 00000680 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_dispatchTab__A)
    008ccb70 000001e0 rts6600_elf.lib : defs.obj (.fardata:_ftable)
    008ccd50 00000118 UserProcessProject_pe66.oe66 (.fardata:ti_sdo_utils_NameServer_Object__table__V)
    008cce68 000000c0 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_timers_timer64_Timer_Module_State_0_device__A)
    008ccf28 000000a0 rts6600_elf.lib : lowlev.obj (.fardata:_stream)
    008ccfc8 00000090 UserProcessProject_pe66.oe66 (.fardata:ti_sdo_ipc_SharedRegion_Module_State_0_regions__A)
    008cd058 00000080 UserProcessProject_pe66.oe66 (.fardata:ti_sdo_ipc_GateMP_Module_State_0_remoteSystemGates__A)
    008cd0d8 00000080 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_knl_Swi_Module_State_0_readyQ__A)
    008cd158 00000080 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_knl_Task_Module_State_0_readyQ__A)
    008cd1d8 00000078 rts6600_elf.lib : lowlev.obj (.fardata:_device)
    008cd250 00000078 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_family_c64p_Hwi_Object__table__V)
    008cd2c8 00000068 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_hostIntToSysInt__A)
    008cd330 00000060 edma_c6670_cfg.obj (.fardata:ccXferCompInt)
    008cd390 00000060 edma_c6670_cfg.obj (.fardata:tcErrorInt)
    008cd3f0 0000004c UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_timers_timer64_Timer_Object__table__V)
    008cd43c 00000004 rts6600_elf.lib : dtor_list.obj (.fardata)
    008cd440 00000044 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_knl_Task_Object__table__V)
    008cd484 00000004 rts6600_elf.lib : errno.obj (.fardata)
    008cd488 00000040 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_gates_GateMutex_Object__table__V)
    008cd4c8 00000040 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_timers_timer64_Timer_Module_State_0_gctrl__A)
    008cd508 00000040 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_timers_timer64_Timer_Module_State_0_handles__A)
    008cd548 00000040 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_timers_timer64_Timer_Module_State_0_intFreqs__A)
    008cd588 0000003c UserProcessProject_pe66.oe66 (.fardata:ti_sdo_ipc_Ipc_Module_State_0_procEntry__A)
    008cd5c4 00000004 rts6600_elf.lib : rand.obj (.fardata)
    008cd5c8 00000030 edma_c6670_int_reg.obj (.fardata:ccXferHostInt)
    008cd5f8 00000030 edma_c6670_int_reg.obj (.fardata:edma3ErrHostInt)
    008cd628 00000030 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_knl_Swi_Object__table__V)
    008cd658 00000008 rts6600_elf.lib : _lock.obj (.fardata)
    008cd660 00000028 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.fardata:allocatedTCCs)
    008cd688 00000020 edma_c6670_int_reg.obj (.fardata:ptrEdma3TcIsrHandler)
    008cd6a8 00000020 UserProcessProject_pe66.oe66 (.fardata:ti_sdo_ipc_MessageQ_Module_State_0_heaps__A)
    008cd6c8 00000020 UserProcessProject_pe66.oe66 (.fardata:xdc_runtime_System_Module_State_0_atexitHandlers__A)
    008cd6e8 0000001c UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_initSIER__A)
    008cd704 00000004 --HOLE--
    008cd708 00000018 rts6600_elf.lib : log.obj (.fardata:A$1)
    008cd720 00000018 : log.obj (.fardata:B$2)
    008cd738 00000018 UserProcessProject_pe66.oe66 (.fardata:ti_sdo_ipc_MessageQ_Module_State_0_transports__A)
    008cd750 00000018 UserProcessProject_pe66.oe66 (.fardata:ti_sdo_ipc_family_c647x_Interrupt_Module_State_0_fxnTable__A)
    008cd768 00000018 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_gates_GateMutexPri_Object__table__V)
    008cd780 00000018 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_knl_Semaphore_Object__table__V)
    008cd798 00000008 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_hal_Hwi_Object__table__V)
    008cd7a0 00000014 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.fardata:masterExists)
    008cd7b4 00000004 --HOLE--
    008cd7b8 00000014 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_heaps_HeapMem_Object__table__V)
    008cd7cc 00000004 --HOLE--
    008cd7d0 00000010 edma_c6670_cfg.obj (.fardata:gblCfgReqdArray)
    008cd7e0 00000010 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_gates_GateAll_Object__table__V)
    008cd7f0 0000000c edma_c6670_cfg.obj (.fardata:ccErrorInt)
    008cd7fc 00000004 --HOLE--
    008cd800 0000000c edma_c6670_cfg.obj (.fardata:edmaSemHandle)
    008cd80c 00000004 --HOLE--
    008cd810 0000000c edma_c6670_cfg.obj (.fardata:numEdma3Tc)
    008cd81c 0000000c rts6600_elf.lib : exit.obj (.fardata)
    008cd828 0000000c UserProcessProject_pe66.oe66 (.fardata:ti_sdo_ipc_Notify_Module_State_0_notifyHandles__A)
    008cd834 00000004 --HOLE--
    008cd838 0000000c UserProcessProject_pe66.oe66 (.fardata:ti_sdo_ipc_transports_TransportShmSetup_Module_State_0_handles__A)
    008cd844 00000004 --HOLE--
    008cd848 0000000c UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_controller__A)
    008cd854 00000004 --HOLE--
    008cd858 0000000c UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_gates_GateSwi_Object__table__V)
    008cd864 00000004 --HOLE--
    008cd868 00000008 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_hal_Timer_Object__table__V)
    008cd870 00000004 UserProcessProject_pe66.oe66 (.fardata:ti_sdo_ipc_GateMP_Module_State_0_remoteCustom2Gates__A)
    008cd874 00000004 --HOLE--
    008cd878 00000004 UserProcessProject_pe66.oe66 (.fardata:ti_sdo_ipc_Notify_Module_State_0_notifyHandles_0__A)
    008cd87c 00000004 --HOLE--
    008cd880 00000004 UserProcessProject_pe66.oe66 (.fardata:ti_sdo_ipc_Notify_Module_State_0_notifyHandles_1__A)
    008cd884 00000004 --HOLE--
    008cd888 00000004 UserProcessProject_pe66.oe66 (.fardata:ti_sdo_ipc_Notify_Module_State_0_notifyHandles_2__A)
    008cd88c 00000004 --HOLE--
    008cd890 00000004 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_gates_GateHwi_Object__table__V)
    008cd894 00000004 --HOLE--
    008cd898 00000004 UserProcessProject_pe66.oe66 (.fardata:xdc_runtime_GateNull_Object__table__V)

    .const 0 008cd8a0 000045e8
    008cd8a0 00002600 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Text_charTab__A)
    008cfea0 0000042c sysbios.lib : BIOS.obj (.const:.string)
    008d02cc 00000004 ti.targets.rts6000.ae66 : Assert.oe66 (.const:.string)
    008d02d0 00000400 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_Cache_marvalues__C)
    008d06d0 00000184 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Text_nodeTab__A)
    008d0854 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_A_invalidClose__C)
    008d0858 00000101 rts6600_elf.lib : ctype.obj (.const:.string:_ctypes_)
    008d0959 000000fd edma3_lld_rm.ae66 : edma3resmgr.oe66 (.const)
    008d0a56 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Module__id__C)
    008d0a58 000000d0 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_sysIntToHostInt__A)
    008d0b28 000000b4 UserProcessProject_pe66.oe66 (.const:.string)
    008d0bdc 00000081 edma3_lld_drv.ae66 : edma3_drv_init.oe66 (.const)
    008d0c5d 0000007a ErrorController.obj (.const:.string)
    008d0cd7 00000068 edma3_lld_drv.ae66 : edma3_drv_basic.oe66 (.const)
    008d0d3f 00000001 --HOLE-- [fill = 0]
    008d0d40 00000058 ti.targets.rts6000.ae66 : Error.oe66 (.const:.string)
    008d0d98 0000004d InterCoreMsgController.obj (.const:.string)
    008d0de5 00000003 rts6600_elf.lib : assert.obj (.const:.string)
    008d0de8 00000048 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Startup_sfxnTab__A)
    008d0e30 00000040 ti.targets.rts6000.ae66 : Text.oe66 (.const:.string)
    008d0e70 0000003d user_process_ICS+RF+.obj (.const:.string)
    008d0ead 00000001 --HOLE-- [fill = 0]
    008d0eae 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Module__loggerDefined__C)
    008d0eb0 00000038 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__FXNS__C)
    008d0ee8 00000034 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Object__PARAMS__C)
    008d0f1c 00000034 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__PARAMS__C)
    008d0f50 00000030 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_Object__PARAMS__C)
    008d0f80 00000030 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Object__PARAMS__C)
    008d0fb0 0000002c ti.targets.rts6000.ae66 : Startup.oe66 (.const:.string)
    008d0fdc 0000002c UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_ListMP_Object__PARAMS__C)
    008d1008 0000002c UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_Module__FXNS__C)
    008d1034 0000002c UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_Module__FXNS__C)
    008d1060 0000002c UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_Module__FXNS__C)
    008d108c 00000028 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_Module__FXNS__C)
    008d10b4 00000028 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__FXNS__C)
    008d10dc 00000028 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_Module__FXNS__C)
    008d1104 00000028 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_Object__PARAMS__C)
    008d112c 00000028 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Module__FXNS__C)
    008d1154 00000028 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_Object__PARAMS__C)
    008d117c 00000024 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_Object__PARAMS__C)
    008d11a0 00000024 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_Object__PARAMS__C)
    008d11c4 00000024 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_Object__PARAMS__C)
    008d11e8 00000024 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateAll_Module__FXNS__C)
    008d120c 00000024 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateHwi_Module__FXNS__C)
    008d1230 00000024 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_Module__FXNS__C)
    008d1254 00000024 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Module__FXNS__C)
    008d1278 00000024 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateSwi_Module__FXNS__C)
    008d129c 00000024 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_Object__PARAMS__C)
    008d12c0 00000024 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Object__PARAMS__C)
    008d12e4 00000024 UserProcessProject_pe66.oe66 (.const:xdc_runtime_GateNull_Module__FXNS__C)
    008d1308 00000024 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Startup_sfxnRts__A)
    008d132c 00000024 UserProcessProject_pe66.oe66 (.const:xdc_runtime_knl_GateThread_Module__FXNS__C)
    008d1350 00000023 rts6600_elf.lib : _printfi.obj (.const:.string)
    008d1373 00000001 --HOLE-- [fill = 0]
    008d1374 00000020 ti.targets.rts6000.ae66 : Core-mem.oe66 (.const:.string)
    008d1394 00000020 edma_xfer.obj (.const)
    008d13b4 00000020 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Object__DESC__C)
    008d13d4 00000020 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_ListMP_Object__DESC__C)
    008d13f4 00000020 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_Object__DESC__C)
    008d1414 00000020 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_Object__DESC__C)
    008d1434 00000020 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_Object__DESC__C)
    008d1454 00000020 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_Object__DESC__C)
    008d1474 00000020 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_Object__DESC__C)
    008d1494 00000020 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__DESC__C)
    008d14b4 00000020 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__DESC__C)
    008d14d4 00000020 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__PARAMS__C)
    008d14f4 00000020 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_Object__DESC__C)
    008d1514 00000020 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_List_Object__DESC__C)
    008d1534 00000020 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Object__DESC__C)
    008d1554 00000020 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateAll_Object__DESC__C)
    008d1574 00000020 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateHwi_Object__DESC__C)
    008d1594 00000020 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_Object__DESC__C)
    008d15b4 00000020 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Object__DESC__C)
    008d15d4 00000020 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateSwi_Object__DESC__C)
    008d15f4 00000020 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Object__DESC__C)
    008d1614 00000020 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Object__PARAMS__C)
    008d1634 00000020 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_Object__DESC__C)
    008d1654 00000020 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Queue_Object__DESC__C)
    008d1674 00000020 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Object__DESC__C)
    008d1694 00000020 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_Object__DESC__C)
    008d16b4 00000020 UserProcessProject_pe66.oe66 (.const:ti_sysbios_xdcruntime_GateThreadSupport_Object__DESC__C)
    008d16d4 00000020 UserProcessProject_pe66.oe66 (.const:xdc_runtime_GateNull_Object__DESC__C)
    008d16f4 00000020 UserProcessProject_pe66.oe66 (.const:xdc_runtime_knl_GateThread_Object__DESC__C)
    008d1714 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_A_invalidDelete__C)
    008d1718 0000001a UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_eventId__A)
    008d1732 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_Module__id__C)
    008d1734 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_E_gateUnavailable__C)
    008d1738 0000001a UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_0__A)
    008d1752 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_generateSlaveDataForHost__C)
    008d1754 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_E_localGate__C)
    008d1758 0000001a UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_1__A)
    008d1772 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_ListMP_Module__id__C)
    008d1774 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_LM_create__C)
    008d1778 0000001a UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_2__A)
    008d1792 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Module__id__C)
    008d1794 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_LM_delete__C)
    008d1798 0000001a UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_3__A)
    008d17b2 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Module__loggerDefined__C)
    008d17b4 00000018 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_Object__PARAMS__C)
    008d17cc 00000018 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_List_Object__PARAMS__C)
    008d17e4 00000018 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateAll_Object__PARAMS__C)
    008d17fc 00000018 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateHwi_Object__PARAMS__C)
    008d1814 00000018 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_Object__PARAMS__C)
    008d182c 00000018 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Object__PARAMS__C)
    008d1844 00000018 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateSwi_Object__PARAMS__C)
    008d185c 00000018 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Queue_Object__PARAMS__C)
    008d1874 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_LM_enter__C)
    008d1878 00000018 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_hooks__A)
    008d1890 00000018 UserProcessProject_pe66.oe66 (.const:ti_sysbios_xdcruntime_GateThreadSupport_Object__PARAMS__C)
    008d18a8 00000018 UserProcessProject_pe66.oe66 (.const:xdc_runtime_GateNull_Object__PARAMS__C)
    008d18c0 00000018 UserProcessProject_pe66.oe66 (.const:xdc_runtime_knl_GateThread_Object__PARAMS__C)
    008d18d8 00000011 gpio.obj (.const:.string)
    008d18e9 00000001 --HOLE-- [fill = 0]
    008d18ea 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_Module__id__C)
    008d18ec 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_LM_leave__C)
    008d18f0 00000011 ti.targets.rts6000.ae66 : System.oe66 (.const:digtohex)
    008d1901 00000001 --HOLE-- [fill = 0]
    008d1902 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_numLines__C)
    008d1904 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_LM_open__C)
    008d1908 00000010 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_EventCombiner_EVTMASK__C)
    008d1918 00000010 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId__A)
    008d1928 0000000c UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_Cache_initSize__C)
    008d1934 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Module__diagsEnabled__C)
    008d1938 0000000c UserProcessProject_pe66.oe66 (.const:xdc_runtime_Startup_firstFxns__A)
    008d1944 00000008 ti.targets.rts6000.ae66 : System.oe66 (.const:.string)
    008d194c 00000008 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Idle_funcList__C)
    008d1954 00000008 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_hooks__C)
    008d195c 00000008 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Startup_firstFxns__C)
    008d1964 00000008 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Startup_lastFxns__C)
    008d196c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Module__diagsIncluded__C)
    008d1970 00000006 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_MultiProcSetup_procMap__A)
    008d1976 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_reservedEvents__C)
    008d1978 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Module__diagsMask__C)
    008d197c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Module__loggerFxn2__C)
    008d1980 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Module__loggerFxn4__C)
    008d1984 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Module__loggerObj__C)
    008d1988 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_A_addrNotCacheAligned__C)
    008d198c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_A_addrNotInSharedRegion__C)
    008d1990 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_A_internal__C)
    008d1994 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_A_invArgument__C)
    008d1998 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_A_invParam__C)
    008d199c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_A_nullArgument__C)
    008d19a0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_A_nullPointer__C)
    008d19a4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_E_internal__C)
    008d19a8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_E_nameFailed__C)
    008d19ac 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_E_versionMismatch__C)
    008d19b0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_Module__diagsEnabled__C)
    008d19b4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_Module__diagsIncluded__C)
    008d19b8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_Module__diagsMask__C)
    008d19bc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_numUserFxns__C)
    008d19c0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_procSync__C)
    008d19c4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_userFxns__C)
    008d19c8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_ListMP_Module__diagsEnabled__C)
    008d19cc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_ListMP_Module__diagsIncluded__C)
    008d19d0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_ListMP_Module__diagsMask__C)
    008d19d4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_A_invalidMsg__C)
    008d19d8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_A_invalidObj__C)
    008d19dc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_A_invalidQueueId__C)
    008d19e0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_A_procIdInvalid__C)
    008d19e4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_A_unregisteredTransport__C)
    008d19e8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Instance_State_highList__O)
    008d19ec 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Instance_State_normalList__O)
    008d19f0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_LM_putLocal__C)
    008d19f4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Module__diagsEnabled__C)
    008d19f8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Module__diagsIncluded__C)
    008d19fc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Module__diagsMask__C)
    008d1a00 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Module__loggerFxn4__C)
    008d1a04 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Module__loggerObj__C)
    008d1a08 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Object__count__C)
    008d1a0c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_A_alreadyRegistered__C)
    008d1a10 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_A_internal__C)
    008d1a14 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_A_invArgument__C)
    008d1a18 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_A_notRegistered__C)
    008d1a1c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_A_reservedEvent__C)
    008d1a20 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_Module__diagsEnabled__C)
    008d1a24 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_Module__diagsIncluded__C)
    008d1a28 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_Module__diagsMask__C)
    008d1a2c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_Module__gateObj__C)
    008d1a30 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_Object__heap__C)
    008d1a34 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_numEvents__C)
    008d1a38 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_sendEventPollCount__C)
    008d1a3c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_A_addrOutOfRange__C)
    008d1a40 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_A_idTooLarge__C)
    008d1a44 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_A_noHeap__C)
    008d1a48 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_A_region0Invalid__C)
    008d1a4c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_A_regionInvalid__C)
    008d1a50 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_A_reserveTooMuch__C)
    008d1a54 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_INVALIDSRPTR__C)
    008d1a58 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_Module__diagsEnabled__C)
    008d1a5c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_Module__diagsIncluded__C)
    008d1a60 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_Module__diagsMask__C)
    008d1a64 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_cacheLineSize__C)
    008d1a68 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_numOffsetBits__C)
    008d1a6c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_offsetMask__C)
    008d1a70 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_Interrupt_INTERDSPINT__C)
    008d1a74 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_Interrupt_IPCAR0__C)
    008d1a78 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_Interrupt_IPCGR0__C)
    008d1a7c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_Interrupt_KICK0__C)
    008d1a80 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_Interrupt_KICK1__C)
    008d1a84 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_MultiProcSetup_A_invalidProcessor__C)
    008d1a88 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsEnabled__C)
    008d1a8c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsIncluded__C)
    008d1a90 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsMask__C)
    008d1a94 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_MultiProcSetup_procMap__C)
    008d1a98 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_NotifySetup_dspIntVectId__C)
    008d1a9c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_A_invSemNum__C)
    008d1aa0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_Module__diagsEnabled__C)
    008d1aa4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_Module__diagsIncluded__C)
    008d1aa8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_Module__diagsMask__C)
    008d1aac 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_baseAddr__C)
    008d1ab0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_numSems__C)
    008d1ab4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_reservedMaskArr__C)
    008d1ab8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_reservedMaskArr__A)
    008d1abc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_A_invalidAction__C)
    008d1ac0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsEnabled__C)
    008d1ac4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsIncluded__C)
    008d1ac8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsMask__C)
    008d1acc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_action__C)
    008d1ad0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_E_gateRemotelyOpened__C)
    008d1ad4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_Module__diagsEnabled__C)
    008d1ad8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_Module__diagsIncluded__C)
    008d1adc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_Module__diagsMask__C)
    008d1ae0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_numInstances__C)
    008d1ae4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_A_align__C)
    008d1ae8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_A_heapSize__C)
    008d1aec 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_A_invalidFree__C)
    008d1af0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_A_zeroBlock__C)
    008d1af4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_E_memory__C)
    008d1af8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_Module__diagsEnabled__C)
    008d1afc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_Module__diagsIncluded__C)
    008d1b00 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_Module__diagsMask__C)
    008d1b04 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_interfaces_IGateMPSupport_Interface__BASE__C)
    008d1b08 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_interfaces_IMessageQTransport_Interface__BASE__C)
    008d1b0c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_interfaces_INotifyDriver_Interface__BASE__C)
    008d1b10 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsEnabled__C)
    008d1b14 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsIncluded__C)
    008d1b18 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsMask__C)
    008d1b1c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__heap__C)
    008d1b20 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_A_invalidValueLen__C)
    008d1b24 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_semMultiBlock__O)
    008d1b28 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_semRemoteWait__O)
    008d1b2c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_swiObj__O)
    008d1b30 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsEnabled__C)
    008d1b34 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsIncluded__C)
    008d1b38 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsMask__C)
    008d1b3c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_notifyEventId__C)
    008d1b40 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_timeout__C)
    008d1b44 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShmSetup_priority__C)
    008d1b48 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_Instance_State_swiObj__O)
    008d1b4c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_Module__diagsEnabled__C)
    008d1b50 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_Module__diagsIncluded__C)
    008d1b54 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_Module__diagsMask__C)
    008d1b58 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_INameServerRemote_Interface__BASE__C)
    008d1b5c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_MultiProc_A_invalidMultiProcId__C)
    008d1b60 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_MultiProc_Module__diagsEnabled__C)
    008d1b64 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_MultiProc_Module__diagsIncluded__C)
    008d1b68 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_MultiProc_Module__diagsMask__C)
    008d1b6c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_NameServer_A_invArgument__C)
    008d1b70 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_NameServer_A_invalidLen__C)
    008d1b74 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_NameServer_E_entryExists__C)
    008d1b78 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_NameServer_E_maxReached__C)
    008d1b7c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_NameServer_Instance_State_freeList__O)
    008d1b80 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_NameServer_Instance_State_nameList__O)
    008d1b84 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_NameServer_Module__diagsEnabled__C)
    008d1b88 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_NameServer_Module__diagsIncluded__C)
    008d1b8c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_NameServer_Module__diagsMask__C)
    008d1b90 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_NameServer_Object__count__C)
    008d1b94 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_BIOS_Module__diagsEnabled__C)
    008d1b98 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_BIOS_Module__diagsIncluded__C)
    008d1b9c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_BIOS_Module__diagsMask__C)
    008d1ba0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_BIOS_installedErrorHook__C)
    008d1ba4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_EventCombiner_E_unpluggedEvent__C)
    008d1ba8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Exception_E_exceptionMin__C)
    008d1bac 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Exception_exceptionHook__C)
    008d1bb0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Exception_externalHook__C)
    008d1bb4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Exception_internalHook__C)
    008d1bb8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Exception_nmiHook__C)
    008d1bbc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_E_alreadyDefined__C)
    008d1bc0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_E_handleNotFound__C)
    008d1bc4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_LD_end__C)
    008d1bc8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_LM_begin__C)
    008d1bcc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__diagsEnabled__C)
    008d1bd0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__diagsIncluded__C)
    008d1bd4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__diagsMask__C)
    008d1bd8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__loggerFxn1__C)
    008d1bdc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__loggerFxn8__C)
    008d1be0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__loggerObj__C)
    008d1be4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_Cache_atomicBlockSize__C)
    008d1be8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_E_unpluggedSysInt__C)
    008d1bec 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_eventId__C)
    008d1bf0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId__C)
    008d1bf4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_numEvents__C)
    008d1bf8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_numStatusRegs__C)
    008d1bfc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_numSysInts__C)
    008d1c00 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_sysIntToHostInt__C)
    008d1c04 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_A_badContext__C)
    008d1c08 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_Instance_State_pendQ__O)
    008d1c0c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_Module__diagsEnabled__C)
    008d1c10 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_Module__diagsIncluded__C)
    008d1c14 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_Module__diagsMask__C)
    008d1c18 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_A_badContext__C)
    008d1c1c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Instance_State_sem__O)
    008d1c20 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Module__diagsEnabled__C)
    008d1c24 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Module__diagsIncluded__C)
    008d1c28 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Module__diagsMask__C)
    008d1c2c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateSwi_A_badContext__C)
    008d1c30 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateSwi_Module__diagsEnabled__C)
    008d1c34 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateSwi_Module__diagsIncluded__C)
    008d1c38 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateSwi_Module__diagsMask__C)
    008d1c3c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_hal_Hwi_E_stackOverflow__C)
    008d1c40 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapBuf_Instance_State_freeList__O)
    008d1c44 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapBuf_Object__count__C)
    008d1c48 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapBuf_numConstructedHeaps__C)
    008d1c4c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_A_align__C)
    008d1c50 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_A_heapSize__C)
    008d1c54 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_A_invalidFree__C)
    008d1c58 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_A_zeroBlock__C)
    008d1c5c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_E_memory__C)
    008d1c60 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C)
    008d1c64 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C)
    008d1c68 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Module__diagsMask__C)
    008d1c6c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Module__gateObj__C)
    008d1c70 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Object__count__C)
    008d1c74 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_reqAlignMask__C)
    008d1c78 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_reqAlign__C)
    008d1c7c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_A_badThreadType__C)
    008d1c80 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_LM_begin__C)
    008d1c84 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_LM_tick__C)
    008d1c88 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_LW_delayed__C)
    008d1c8c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module_State_clockQ__O)
    008d1c90 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__diagsEnabled__C)
    008d1c94 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__diagsIncluded__C)
    008d1c98 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__diagsMask__C)
    008d1c9c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__loggerFxn1__C)
    008d1ca0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__loggerFxn2__C)
    008d1ca4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__loggerObj__C)
    008d1ca8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_tickMode__C)
    008d1cac 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_tickSource__C)
    008d1cb0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Idle_funcList__A)
    008d1cb4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_A_badContext__C)
    008d1cb8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_A_noEvents__C)
    008d1cbc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_A_overflow__C)
    008d1cc0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Instance_State_pendQ__O)
    008d1cc4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_LM_pend__C)
    008d1cc8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_LM_post__C)
    008d1ccc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__diagsEnabled__C)
    008d1cd0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__diagsIncluded__C)
    008d1cd4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__diagsMask__C)
    008d1cd8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__loggerFxn2__C)
    008d1cdc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__loggerFxn4__C)
    008d1ce0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__loggerObj__C)
    008d1ce4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_A_badPriority__C)
    008d1ce8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_LD_end__C)
    008d1cec 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_LM_begin__C)
    008d1cf0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_LM_post__C)
    008d1cf4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__diagsEnabled__C)
    008d1cf8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__diagsIncluded__C)
    008d1cfc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__diagsMask__C)
    008d1d00 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__loggerFxn1__C)
    008d1d04 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__loggerFxn4__C)
    008d1d08 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__loggerObj__C)
    008d1d0c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_Object__count__C)
    008d1d10 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_A_badPriority__C)
    008d1d14 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_E_spOutOfBounds__C)
    008d1d18 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_E_stackOverflow__C)
    008d1d1c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_LD_block__C)
    008d1d20 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_LD_exit__C)
    008d1d24 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_LD_ready__C)
    008d1d28 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_LM_setPri__C)
    008d1d2c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_LM_switch__C)
    008d1d30 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_LM_yield__C)
    008d1d34 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_Module_State_inactiveQ__O)
    008d1d38 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_Module_State_terminatedQ__O)
    008d1d3c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__diagsEnabled__C)
    008d1d40 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__diagsIncluded__C)
    008d1d44 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__diagsMask__C)
    008d1d48 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__loggerFxn2__C)
    008d1d4c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__loggerFxn4__C)
    008d1d50 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__loggerObj__C)
    008d1d54 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_Object__count__C)
    008d1d58 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_allBlockedFunc__C)
    008d1d5c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_numConstructedTasks__C)
    008d1d60 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_numPriorities__C)
    008d1d64 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_A_notAvailable__C)
    008d1d68 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_E_cannotSupport__C)
    008d1d6c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_Module__diagsEnabled__C)
    008d1d70 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_Module__diagsIncluded__C)
    008d1d74 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_Module__diagsMask__C)
    008d1d78 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_anyMask__C)
    008d1d7c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_freqDivisor__C)
    008d1d80 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_numLocalTimers__C)
    008d1d84 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_numTimerDevices__C)
    008d1d88 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_xdcruntime_GateThreadSupport_Instance_State_gate__O)
    008d1d8c 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Assert_E_assertFailed__C)
    008d1d90 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Core_A_initializedParams__C)
    008d1d94 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Core_Module__diagsEnabled__C)
    008d1d98 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Core_Module__diagsIncluded__C)
    008d1d9c 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Core_Module__diagsMask__C)
    008d1da0 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Error_E_generic__C)
    008d1da4 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Error_E_memory__C)
    008d1da8 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Error_Module__diagsEnabled__C)
    008d1dac 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Error_Module__diagsIncluded__C)
    008d1db0 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Error_Module__diagsMask__C)
    008d1db4 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Error_Module__loggerFxn8__C)
    008d1db8 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Error_Module__loggerObj__C)
    008d1dbc 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Error_policy__C)
    008d1dc0 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Error_raiseHook__C)
    008d1dc4 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_IGateProvider_Interface__BASE__C)
    008d1dc8 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_IHeap_Interface__BASE__C)
    008d1dcc 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_IModule_Interface__BASE__C)
    008d1dd0 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Log_L_error__C)
    008d1dd4 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Main_Module__diagsEnabled__C)
    008d1dd8 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Main_Module__diagsIncluded__C)
    008d1ddc 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Main_Module__diagsMask__C)
    008d1de0 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Main_Module__loggerFxn4__C)
    008d1de4 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Main_Module__loggerObj__C)
    008d1de8 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Memory_defaultHeapInstance__C)
    008d1dec 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Startup_execImpl__C)
    008d1df0 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Startup_lastFxns__A)
    008d1df4 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Startup_maxPasses__C)
    008d1df8 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Startup_sfxnRts__C)
    008d1dfc 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Startup_sfxnTab__C)
    008d1e00 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_System_Module__gateObj__C)
    008d1e04 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_System_extendFxn__C)
    008d1e08 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_System_maxAtexitHandlers__C)
    008d1e0c 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Text_charTab__C)
    008d1e10 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Text_nameEmpty__C)
    008d1e14 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Text_nameStatic__C)
    008d1e18 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Text_nameUnknown__C)
    008d1e1c 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Text_nodeTab__C)
    008d1e20 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Text_visitRopeFxn__C)
    008d1e24 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_Module__id__C)
    008d1e26 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_numEntries__C)
    008d1e28 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_translate__C)
    008d1e2a 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_Interrupt_enableKick__C)
    008d1e2c 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_MultiProcSetup_Module__id__C)
    008d1e2e 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_Module__id__C)
    008d1e30 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_Module__id__C)
    008d1e32 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_Module__id__C)
    008d1e34 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_Module__id__C)
    008d1e36 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__id__C)
    008d1e38 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__id__C)
    008d1e3a 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_Module__id__C)
    008d1e3c 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_notifyEventId__C)
    008d1e3e 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_MultiProc_Module__id__C)
    008d1e40 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_MultiProc_numProcessors__C)
    008d1e42 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_MultiProc_numProcsInCluster__C)
    008d1e44 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_NameServer_Module__id__C)
    008d1e46 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_BIOS_Module__id__C)
    008d1e48 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_EventCombiner_Module__id__C)
    008d1e4a 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Exception_Module__id__C)
    008d1e4c 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__id__C)
    008d1e4e 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__loggerDefined__C)
    008d1e50 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_Module__id__C)
    008d1e52 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_Module__id__C)
    008d1e54 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Module__id__C)
    008d1e56 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateSwi_Module__id__C)
    008d1e58 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_hal_Hwi_Module__id__C)
    008d1e5a 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Module__id__C)
    008d1e5c 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__id__C)
    008d1e5e 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__loggerDefined__C)
    008d1e60 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__id__C)
    008d1e62 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__loggerDefined__C)
    008d1e64 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__id__C)
    008d1e66 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__loggerDefined__C)
    008d1e68 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__id__C)
    008d1e6a 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__loggerDefined__C)
    008d1e6c 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_deleteTerminatedTasks__C)
    008d1e6e 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_initStackFlag__C)
    008d1e70 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_Module__id__C)
    008d1e72 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_startupNeeded__C)
    008d1e74 00000002 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Core_Module__id__C)
    008d1e76 00000002 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Error_Module__loggerDefined__C)
    008d1e78 00000002 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Error_maxDepth__C)
    008d1e7a 00000002 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Main_Module__id__C)
    008d1e7c 00000002 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Main_Module__loggerDefined__C)
    008d1e7e 00000002 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Memory_Module__id__C)
    008d1e80 00000002 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Text_charCnt__C)
    008d1e82 00000002 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Text_isLoaded__C)
    008d1e84 00000002 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Text_registryModsLastId__C)
    008d1e86 00000002 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Text_unnamedModsLastId__C)

    .stack 0 008d1e88 00001000 UNINITIALIZED
    008d1e88 00000008 boot.ae66 : boot.oe66 (.stack)
    008d1e90 00000ff8 --HOLE--

    .cio 0 008d2e88 00000120 UNINITIALIZED
    008d2e88 00000120 rts6600_elf.lib : trgmsg.obj (.cio)

    .switch 0 008d2fa8 00000058
    008d2fa8 00000014 edma_cs.obj (.switch:edma3OsProtectEntry)
    008d2fbc 00000014 edma_cs.obj (.switch:edma3OsProtectExit)
    008d2fd0 00000010 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.switch:EDMA3_RM_allocResource)
    008d2fe0 00000010 : edma3resmgr.oe66 (.switch:EDMA3_RM_freeResource)
    008d2ff0 00000010 ipc.lib : Ipc.obj (.switch:ti_sdo_ipc_GateMP_Instance_finalize__F)

    .vecs 0 008d3000 00000200
    008d3000 00000200 UserProcessProject_pe66.oe66 (.vecs)

    .bss 0 008d3200 00000068 UNINITIALIZED
    008d3200 00000034 user_process_ICS+RF+.obj (.bss)
    008d3234 0000000c InterCoreMsgController.obj (.bss)
    008d3240 00000008 TRxDataInterface.obj (.bss)
    008d3248 00000008 data_transfer.obj (.bss)
    008d3250 00000008 edma_init.obj (.bss)
    008d3258 00000008 edma_xfer.obj (.bss)
    008d3260 00000004 UserProcessProject_pe66.oe66 (.bss)
    008d3264 00000004 gpio.obj (.bss)

    .neardata
    * 0 008d3268 0000014a
    008d3268 000000e8 user_process_ICS+RF+.obj (.neardata)
    008d3350 00000010 TRxDataInterface.obj (.neardata)
    008d3360 00000010 UserProcessProject_pe66.oe66 (.neardata)
    008d3370 0000000c edma_c6670_int_reg.obj (.neardata)
    008d337c 0000000c edma_xfer.obj (.neardata)
    008d3388 0000000a edma3_lld_rm.ae66 : edma3resmgr.oe66 (.neardata)
    008d3392 00000002 --HOLE-- [fill = 0]
    008d3394 00000009 ErrorController.obj (.neardata)
    008d339d 00000003 --HOLE-- [fill = 0]
    008d33a0 00000008 edma_isr.obj (.neardata)
    008d33a8 00000004 InterCoreMsgController.obj (.neardata)
    008d33ac 00000004 data_transfer.obj (.neardata)
    008d33b0 00000002 edma3_lld_drv.ae66 : edma3_drv_init.oe66 (.neardata)

    .rodata 0 008d33b4 0000000c
    008d33b4 00000008 UserProcessProject_pe66.oe66 (.rodata)
    008d33bc 00000004 edma_c6670_cfg.obj (.rodata)

    .cinit 0 008d33c0 000025d8
    008d33c0 000024e1 (.cinit..fardata.load) [load image, compression = rle]
    008d58a1 00000003 --HOLE-- [fill = 0]
    008d58a4 00000059 (.cinit..neardata.load) [load image, compression = rle]
    008d58fd 00000003 --HOLE-- [fill = 0]
    008d5900 00000012 (.cinit..rodata.load) [load image, compression = rle]
    008d5912 00000002 --HOLE-- [fill = 0]
    008d5914 0000000c (__TI_handler_table)
    008d5920 00000008 (.cinit..CpriBufferPointer.load) [load image, compression = zero_init]
    008d5928 00000008 (.cinit..CpriRxBuffer.load) [load image, compression = zero_init]
    008d5930 00000008 (.cinit..CpriTxBuffer.load) [load image, compression = zero_init]
    008d5938 00000008 (.cinit..bss.load) [load image, compression = zero_init]
    008d5940 00000008 (.cinit..far.load) [load image, compression = zero_init]
    008d5948 00000008 (.cinit..x_ll_shared.load) [load image, compression = zero_init]
    008d5950 00000048 (__TI_cinit_table)

    .CpriBufferPointer
    * 0 0c000000 00000704 UNINITIALIZED
    0c000000 00000704 TRxDataInterface.obj (.CpriBufferPointer)

    .x_ll_shared
    * 0 0c001000 0001e000 UNINITIALIZED
    0c001000 0001e000 user_process_ICS+RF+.obj (.x_ll_shared)

    ti.sdo.ipc.SharedRegion_0
    * 0 0c12c400 00010000 NOLOAD SECTION
    0c12c400 00010000 --HOLE--

    .CpriRxBuffer
    * 0 80000000 00096000 UNINITIALIZED
    80000000 00096000 TRxDataInterface.obj (.CpriRxBuffer)

    .CpriTxBuffer
    * 0 8012c000 00096000 UNINITIALIZED
    8012c000 00096000 TRxDataInterface.obj (.CpriTxBuffer)


    LINKER GENERATED COPY TABLES

    __TI_cinit_table @ 008d5950 records: 9, size/record: 8, table size: 72
    .fardata: load addr=008d33c0, load size=000024e1 bytes, run addr=008c8520, run size=0000537c bytes, compression=rle
    .neardata: load addr=008d58a4, load size=00000059 bytes, run addr=008d3268, run size=0000014a bytes, compression=rle
    .rodata: load addr=008d5900, load size=00000012 bytes, run addr=008d33b4, run size=0000000c bytes, compression=rle
    .CpriBufferPointer: load addr=008d5920, load size=00000008 bytes, run addr=0c000000, run size=00000704 bytes, compression=zero_init
    .CpriRxBuffer: load addr=008d5928, load size=00000008 bytes, run addr=80000000, run size=00096000 bytes, compression=zero_init
    .CpriTxBuffer: load addr=008d5930, load size=00000008 bytes, run addr=8012c000, run size=00096000 bytes, compression=zero_init
    .bss: load addr=008d5938, load size=00000008 bytes, run addr=008d3200, run size=00000068 bytes, compression=zero_init
    .far: load addr=008d5940, load size=00000008 bytes, run addr=00800200, run size=00096f80 bytes, compression=zero_init
    .x_ll_shared: load addr=008d5948, load size=00000008 bytes, run addr=0c001000, run size=0001e000 bytes, compression=zero_init


    LINKER GENERATED HANDLER TABLE

    __TI_handler_table @ 008d5914 records: 3, size/record: 4, table size: 12
    index: 0, handler: __TI_zero_init
    index: 1, handler: __TI_decompress_rle24
    index: 2, handler: __TI_decompress_none


    GLOBAL SYMBOLS: SORTED ALPHABETICALLY BY Name

    address name
    -------- ----
    008d3314 AC_ADAPTION
    008d32fc AC_GAIN
    008d3344 AC_Loop_Itt
    00897180 AC_SystemReset
    008d3324 AC_monitor
    008d3328 APU_elements
    008d331c AdaptItt
    00847760 Adj
    008985b4 AnalogueCancSetUp
    008c7160 C$$EXIT
    008c5578 C$$IO$$
    008d32c4 CORR_BACKOFF_INT
    008d32c0 CORR_BACKOFF_SAMP
    008d3208 CORR_ON
    80000000 CPRI_ANT0_RxBuffer
    8012c000 CPRI_ANT0_TxBuffer
    0c000100 CPRI_RxRP_ch0
    0c000500 CPRI_RxRP_ch1
    0c000000 CPRI_RxWP_ch0
    0c000400 CPRI_RxWP_ch1
    0c000300 CPRI_TxRP_ch0
    0c000700 CPRI_TxRP_ch1
    0c000200 CPRI_TxWP_ch0
    0c000600 CPRI_TxWP_ch1
    008c6f40 CSL_GPIO_open
    008c71a0 CSL_tscEnable
    008c71a8 CSL_tscRead
    008987a8 CallBackFunc
    0083e760 CleanAdj
    008d332c CurrentAPU
    008d3308 Delta_sent_time
    008be040 EDMA3_DRV_clearErrorBits
    008bbe80 EDMA3_DRV_close
    008b1ac0 EDMA3_DRV_create
    008c0060 EDMA3_DRV_delete
    008b1d40 EDMA3_DRV_disableTransfer
    008b3dc0 EDMA3_DRV_enableTransfer
    008ae5a0 EDMA3_DRV_freeChannel
    008b02e0 EDMA3_DRV_open
    0089a8a0 EDMA3_DRV_requestChannel
    008bcc40 EDMA3_DRV_setPaRAM
    008d33b4 EDMA3_MAX_RM_INSTANCES
    0089b4e0 EDMA3_RM_allocResource
    008b81e0 EDMA3_RM_close
    008ad5a0 EDMA3_RM_create
    008c1020 EDMA3_RM_delete
    008ab6e0 EDMA3_RM_freeResource
    008a4760 EDMA3_RM_open
    008ba500 EDMA3_RM_registerTccCb
    008bbfe0 EDMA3_RM_unregisterTccCb
    008b21c8 ERR_Display
    008b20e8 ERR_Initialize
    008b20a0 ERR_Send_ErrorMsg
    008b3100 Edma3_CacheFlush
    008b30d8 Edma3_CacheInvalidate
    008d3338 EscapeAdaption
    008d334c FINAL_MSG_SENT
    008d32f4 FIRST_FRAME
    008d3320 Gain
    008d3318 GainNorm
    008d3300 Gain_Tests
    008c4b00 GateMP_Params_init
    008bcd80 GateMP_close
    008b6660 GateMP_enter
    008b6860 GateMP_leave
    008ae8a0 GateMP_openByAddr
    008ad8e0 GateMP_sharedMemReq
    008c2820 HOSTclose
    008bea60 HOSTlseek
    008c0140 HOSTopen
    008c10e0 HOSTread
    008b8fe0 HOSTrename
    008c28c0 HOSTtime
    008c11a0 HOSTunlink
    008c1260 HOSTwrite
    008c4b60 HeapMemMP_Params_init
    008c1320 HeapMemMP_create
    008b83a0 HeapMemMP_openByAddr
    008ad220 HeapMemMP_sharedMemReq
    008af358 ICM_Initialize
    008af350 ICM_Register_Callback
    008af2ec ICM_Send_Message
    00897270 ICM_Send_Message_Local
    008d32f0 ICS_OVERRIDE
    0089d4a0 Ipc_attach
    008d3260 Ipc_sr0MemorySetup
    008b0860 Ipc_start
    008d3330 Iso
    008c13e0 ListMP_create
    008a5320 ListMP_getHead
    008b6a60 ListMP_openByAddr
    008aa5e0 ListMP_putTail
    008b4020 ListMP_sharedMemReq
    008a0200 MessageQ_put
    008d3334 MinIso
    008c6f60 MultiProc_getNumProcessors
    008c6f80 MultiProc_self
    008ba680 MultiProc_setLocalId
    008d32ec N_samps
    008d32e8 N_taps
    008a2e20 NameServer_add
    008ba800 NameServer_getHandle
    008b0b00 NameServer_getLocal
    008bcec0 Notify_attach
    008ba980 Notify_intLineRegistered
    008a2060 Notify_registerEvent
    008a4d40 Notify_registerEventSingle
    008a3b20 Notify_sendEvent
    008a58e0 Notify_unregisterEventSingle
    008d32bc PERF_CORR
    008d32dc PERF_UPDATE
    008d330c POWER_PERIOD
    008d329c PULSE_COUNT
    008d3298 PULSE_OFF_PERIOD
    008d3290 PULSE_ON
    008d3294 PULSE_ON_PERIOD
    008d328c PULSING
    008d3268 RANGING
    00895440 RcvLog
    008d3350 RcvLogCnt
    008d3354 RcvTimeCnt
    00895840 RcvTimeLog
    008a88b0 Recv_CPRIData
    00896040 SendLog
    008d335c SendLogCnt
    008d3358 SendTimeCnt
    00895c40 SendTimeLog
    008a8614 Send_CPRIData
    008d3310 Sent
    008987a4 Set_APU_Config
    008b9180 SharedRegion_getCacheLineSize
    008af480 SharedRegion_getEntry
    008b9320 SharedRegion_getHeap
    008af760 SharedRegion_getPtr
    008b2240 SharedRegion_getSRPtr
    008b94c0 SharedRegion_isCacheEnabled
    008d3348 Start
    00898754 StartUp
    008a85e0 TRxDataInterface_Initialize
    008cd440 TSK_idle
    008d3304 TxPow
    00800200 __ASM__
    008d2e88 __CIOBUF_
    00800270 __ISA__
    00800288 __PLAT__
    008002b0 __TARG__
    008d5950 __TI_CINIT_Base
    008d5998 __TI_CINIT_Limit
    008d5914 __TI_Handler_Table_Base
    008d5920 __TI_Handler_Table_Limit
    UNDEFED __TI_INITARRAY_Base
    UNDEFED __TI_INITARRAY_Limit
    008d2e88 __TI_STACK_END
    00001000 __TI_STACK_SIZE
    008d3200 __TI_STATIC_BASE
    00000001 __TI_args_main
    008c71c0 __TI_decompress_none
    008c71e0 __TI_decompress_rle24
    008cd824 __TI_enable_exit_profile_output
    ffffffff __TI_pprof_out_hndl
    ffffffff __TI_prof_data_size
    ffffffff __TI_prof_data_start
    008c04c0 __TI_zero_init
    008002d8 __TRDR__
    ffffffff __binit__
    008c4bc0 __c6xabi_abort_msg
    008a5ea0 __c6xabi_divd
    008b24c0 __c6xabi_divf
    008c1620 __c6xabi_divu
    008b9660 __c6xabi_divul
    008b4e60 __c6xabi_divull
    008c6fa0 __c6xabi_errno_addr
    008c3400 __c6xabi_fixdu
    008c4c20 __c6xabi_frcmpyd_div
    008c57c0 __c6xabi_isinf
    008c3480 __c6xabi_llshl
    008c4c80 __c6xabi_llshru
    008c6fc0 __c6xabi_negll
    008c7020 __c6xabi_pop_rts
    008c7040 __c6xabi_push_rts
    008c2960 __c6xabi_remu
    ffffffff __c_args__
    008c6fe0 __cxa_atexit
    008c1560 __cxa_finalize
    008c7000 __cxa_ia64_exit
    008c1620 __divu
    008cd484 __errno
    008c7020 __pop_rts
    008c7040 __push_rts
    008c2960 __remu
    008c7060 __xdc__init
    008cc4e8 __xdc__init__addr
    008c5840 _args_main
    00000000 _argsize
    008bd000 _auto_init_elf
    008c2a00 _c_int00
    008c2aa0 _cleanup
    008cd81c _cleanup_ptr
    008be160 _closefile
    008d0858 _ctypes_
    008c16e0 _doflush
    008cd820 _dtors_ptr
    008cc4ec _ft_end
    008ccb70 _ftable
    008cd658 _lock
    008c7080 _nop
    008a9460 _printfi
    008c70e0 _register_lock
    008c7100 _register_unlock
    008d1e88 _stack
    008c4ce0 _subcull
    00897040 _tmpnams
    008cd65c _unlock
    008beb60 _wrt_ok
    008c7160 abort
    00820470 abs_corr
    008d3200 abs_corr_ll
    008c7180 atexit
    008c0300 atoi
    ffffffff binit
    008d3270 buf_idx_value
    008d3394 buffer_status
    008bec90 callback1
    008bec60 callback2
    008cd7f0 ccErrorInt
    008cd330 ccXferCompInt
    008cd5c8 ccXferHostInt
    00850760 check
    008c03e0 close
    008bd340 copy_data_ByEDMA
    008202e0 corr
    008d32c8 corr_idx
    0081e210 corr_ll
    008c8520 defInstInitConfig
    0081e200 delay
    008d32ac delay_idx
    008c4d78 determineProcId
    00874620 drvInstance
    008737a0 drvObj
    008d3250 dsp_num
    00878e00 edma3DrvChBoundRes
    008cd5f8 edma3ErrHostInt
    008ca4a0 edma3GblCfgParams
    008c3580 edma3MemCpy
    008c7200 edma3MemZero
    008d338c edma3NumPaRAMSets
    008b3018 edma3OsProtectEntry
    008b2f88 edma3OsProtectExit
    008b2f2c edma3OsSemCreate
    008b2f08 edma3OsSemDelete
    008b2ee8 edma3OsSemGive
    008b2ec0 edma3OsSemTake
    008c5900 edma3ParamCpy
    0088d9e0 edma3_dma_ch_max_val
    0088da20 edma3_link_ch_max_val
    0088da00 edma3_link_ch_min_val
    0088da80 edma3_log_ch_max_val
    0088da60 edma3_qdma_ch_max_val
    0088da40 edma3_qdma_ch_min_val
    008abb50 edma3_xfer
    008b8864 edma3deinit
    008b8720 edma3init
    008cd800 edmaSemHandle
    008cd484 errno
    008c17a0 exit
    008c05a0 fflush
    008d32b4 finish_pulse_idx
    008d3288 found_time
    008bed60 fprintf
    008b5bc0 fputc
    008ace80 fputs
    008c5940 free
    008abb20 freeChannel
    008bae00 frexp
    008be3a0 fseek
    008cd7d0 gblCfgReqdArray
    008c4d54 getGlobalAddr
    008c0680 gpio_Init
    008c06f8 gpio_SetInput
    008c06b4 gpio_SetOutput
    008d3264 hGpio_handle
    00820478 h_est
    008205b8 h_est_ll
    008d3370 hwiInterrupt
    008d3230 i
    008d3210 idx_samp
    008d320c idx_tap
    008d3274 impulse_power_int
    008bd2e8 init_data_transfer
    008d3280 interval
    008d33a0 irqRaised1
    008d33a2 irqRaised2
    008c4d40 isGblConfigRequired
    008c7220 lisrEdma3CCErrHandler0
    008c7240 lisrEdma3ComplHandler0
    008c7260 lisrEdma3TC0ErrHandler0
    008c7280 lisrEdma3TC1ErrHandler0
    008c72a0 lisrEdma3TC2ErrHandler0
    008c72c0 lisrEdma3TC3ErrHandler0
    008c72e0 lisrEdma3TC4ErrHandler0
    008c7300 lisrEdma3TC5ErrHandler0
    008c7320 lisrEdma3TC6ErrHandler0
    008c7340 lisrEdma3TC7ErrHandler0
    008d32cc load_corr_idx
    00850780 localQueueName
    008b9800 log
    008c5980 log10
    008d32a8 loop_pulse_idx
    008972f0 loopback2Tx
    008d333c low_Current_Gain
    008d3340 low_Current_Index
    008c2e60 lseek
    00820708 ltf_begin
    008c0760 ltoa
    00899980 main
    008c3600 malloc
    008d32d8 max_abs_corr
    008d32d4 max_shift
    008c4da0 memccpy
    008c2f00 memcpy
    008c0840 memset
    008c2fa0 modf
    008d3228 nextProcId
    00850790 nextQueueName
    008d33b8 notifySemHandle
    008d33bc numEdma3Instances
    008cd810 numEdma3Tc
    008d326c peak_value
    0086e7a0 preamble_vals
    008cd688 ptrEdma3TcIsrHandler
    008d336c ptrInitCfgArray
    008d3368 ptrRMIArray
    008d32a4 pulse_idx
    008c7380 putc
    008c73a0 putchar
    008c3680 rand
    008507a0 random_val
    008d3278 ranging_pulses_sent
    008c3700 readmsg
    008d3254 region_id
    008ae34c registerEdma3Interrupts
    008c4780 remove
    008abb00 requestChannel
    008d3360 resMgrInstance
    0088b138 resMgrInstanceArray
    0088daa0 resMgrObj
    008cad28 sampleEdma3GblCfgParams
    008c94e0 sampleInstInitConfig
    008d32a0 samples_left
    008206f8 scale
    008d3284 sent_time
    008b7260 setvbuf
    008d32d0 shift_idx
    008c4e00 srand
    008d32b0 start_pulse_idx
    008d32b8 start_pulse_interval_idx
    008d32e4 start_update_interval_idx
    008d322c status
    00820700 stf_end
    008cd390 tcErrorInt
    008d0854 ti_sdo_ipc_GateMP_A_invalidClose__C
    008d1714 ti_sdo_ipc_GateMP_A_invalidDelete__C
    008d1734 ti_sdo_ipc_GateMP_E_gateUnavailable__C
    008d1754 ti_sdo_ipc_GateMP_E_localGate__C
    0089f9a0 ti_sdo_ipc_GateMP_Instance_finalize__F
    008987c0 ti_sdo_ipc_GateMP_Instance_init__F
    008d1774 ti_sdo_ipc_GateMP_LM_create__C
    008d1794 ti_sdo_ipc_GateMP_LM_delete__C
    008d1874 ti_sdo_ipc_GateMP_LM_enter__C
    008d18ec ti_sdo_ipc_GateMP_LM_leave__C
    008d1904 ti_sdo_ipc_GateMP_LM_open__C
    008cb5b0 ti_sdo_ipc_GateMP_Module_State_0_remoteCustom1Gates__A
    008cd870 ti_sdo_ipc_GateMP_Module_State_0_remoteCustom2Gates__A
    008cd058 ti_sdo_ipc_GateMP_Module_State_0_remoteSystemGates__A
    008d1934 ti_sdo_ipc_GateMP_Module__diagsEnabled__C
    008d196c ti_sdo_ipc_GateMP_Module__diagsIncluded__C
    008d1978 ti_sdo_ipc_GateMP_Module__diagsMask__C
    008d0a56 ti_sdo_ipc_GateMP_Module__id__C
    008d0eae ti_sdo_ipc_GateMP_Module__loggerDefined__C
    008d197c ti_sdo_ipc_GateMP_Module__loggerFxn2__C
    008d1980 ti_sdo_ipc_GateMP_Module__loggerFxn4__C
    008d1984 ti_sdo_ipc_GateMP_Module__loggerObj__C
    008cbdb0 ti_sdo_ipc_GateMP_Module__root__V
    008cbdb8 ti_sdo_ipc_GateMP_Module__state__V
    008d13b4 ti_sdo_ipc_GateMP_Object__DESC__C
    008d0ee8 ti_sdo_ipc_GateMP_Object__PARAMS__C
    008c1860 ti_sdo_ipc_GateMP_Object__create__S
    008c5a00 ti_sdo_ipc_GateMP_Object__delete__S
    008c73c0 ti_sdo_ipc_GateMP_Params__init__S
    008c73e0 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Object__create__S
    008c7400 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Object__delete__S
    008c7420 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Params__init__S
    008c7440 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Proxy__abstract__S
    008c7460 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Proxy__delegate__S
    008c7800 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_getReservedMask__E
    008c7820 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_query__E
    008c4f80 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_sharedMemReq__E
    008c7480 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Object__create__S
    008c74a0 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Object__delete__S
    008c74c0 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Params__init__S
    008c74e0 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Proxy__abstract__S
    008c7500 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Proxy__delegate__S
    008c7780 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_getReservedMask__E
    008c77a0 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_query__E
    008c77c0 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_sharedMemReq__E
    008c7520 ti_sdo_ipc_GateMP_RemoteSystemProxy_Object__create__S
    008c7540 ti_sdo_ipc_GateMP_RemoteSystemProxy_Object__delete__S
    008c7560 ti_sdo_ipc_GateMP_RemoteSystemProxy_Params__init__S
    008c7580 ti_sdo_ipc_GateMP_RemoteSystemProxy_Proxy__abstract__S
    008c75a0 ti_sdo_ipc_GateMP_RemoteSystemProxy_Proxy__delegate__S
    008c76e0 ti_sdo_ipc_GateMP_RemoteSystemProxy_getReservedMask__E
    008c7700 ti_sdo_ipc_GateMP_RemoteSystemProxy_query__E
    008c7720 ti_sdo_ipc_GateMP_RemoteSystemProxy_sharedMemReq__E
    008b7a60 ti_sdo_ipc_GateMP_attach__E
    008b7a60 ti_sdo_ipc_GateMP_attach__F
    008bc2a0 ti_sdo_ipc_GateMP_createLocal__E
    008bc2a0 ti_sdo_ipc_GateMP_createLocal__F
    008b7c40 ti_sdo_ipc_GateMP_getFreeResource__I
    008c1920 ti_sdo_ipc_GateMP_getRegion0ReservedSize__E
    008c1920 ti_sdo_ipc_GateMP_getRegion0ReservedSize__F
    008c75c0 ti_sdo_ipc_GateMP_getSharedAddr__E
    008c75c0 ti_sdo_ipc_GateMP_getSharedAddr__F
    008b99a0 ti_sdo_ipc_GateMP_openRegion0Reserved__E
    008b99a0 ti_sdo_ipc_GateMP_openRegion0Reserved__F
    008a9d20 ti_sdo_ipc_GateMP_setRegion0Reserved__E
    008a9d20 ti_sdo_ipc_GateMP_setRegion0Reserved__F
    008bef60 ti_sdo_ipc_GateMP_start__E
    008bef60 ti_sdo_ipc_GateMP_start__F
    008d1988 ti_sdo_ipc_Ipc_A_addrNotCacheAligned__C
    008d198c ti_sdo_ipc_Ipc_A_addrNotInSharedRegion__C
    008d1990 ti_sdo_ipc_Ipc_A_internal__C
    008d1994 ti_sdo_ipc_Ipc_A_invArgument__C
    008d1998 ti_sdo_ipc_Ipc_A_invParam__C
    008d199c ti_sdo_ipc_Ipc_A_nullArgument__C
    008d19a0 ti_sdo_ipc_Ipc_A_nullPointer__C
    008d19a4 ti_sdo_ipc_Ipc_E_internal__C
    008d19a8 ti_sdo_ipc_Ipc_E_nameFailed__C
    008d19ac ti_sdo_ipc_Ipc_E_versionMismatch__C
    008cd588 ti_sdo_ipc_Ipc_Module_State_0_procEntry__A
    008d19b0 ti_sdo_ipc_Ipc_Module__diagsEnabled__C
    008d19b4 ti_sdo_ipc_Ipc_Module__diagsIncluded__C
    008d19b8 ti_sdo_ipc_Ipc_Module__diagsMask__C
    008d1732 ti_sdo_ipc_Ipc_Module__id__C
    008cbe00 ti_sdo_ipc_Ipc_Module__state__V
    008d1752 ti_sdo_ipc_Ipc_generateSlaveDataForHost__C
    008d19bc ti_sdo_ipc_Ipc_numUserFxns__C
    008aa180 ti_sdo_ipc_Ipc_procSyncFinish__I
    008a80a0 ti_sdo_ipc_Ipc_procSyncStart__I
    008d19c0 ti_sdo_ipc_Ipc_procSync__C
    008d19c4 ti_sdo_ipc_Ipc_userFxns__C
    008b4280 ti_sdo_ipc_ListMP_Instance_finalize__F
    0089f100 ti_sdo_ipc_ListMP_Instance_init__F
    008d19c8 ti_sdo_ipc_ListMP_Module__diagsEnabled__C
    008d19cc ti_sdo_ipc_ListMP_Module__diagsIncluded__C
    008d19d0 ti_sdo_ipc_ListMP_Module__diagsMask__C
    008d1772 ti_sdo_ipc_ListMP_Module__id__C
    008cbe0c ti_sdo_ipc_ListMP_Module__root__V
    008cbe14 ti_sdo_ipc_ListMP_Module__state__V
    008d13d4 ti_sdo_ipc_ListMP_Object__DESC__C
    008d0fdc ti_sdo_ipc_ListMP_Object__PARAMS__C
    008c19e0 ti_sdo_ipc_ListMP_Object__create__S
    008c5a40 ti_sdo_ipc_ListMP_Object__delete__S
    008c75e0 ti_sdo_ipc_ListMP_Params__init__S
    008d19d4 ti_sdo_ipc_MessageQ_A_invalidMsg__C
    008d19d8 ti_sdo_ipc_MessageQ_A_invalidObj__C
    008d19dc ti_sdo_ipc_MessageQ_A_invalidQueueId__C
    008d19e0 ti_sdo_ipc_MessageQ_A_procIdInvalid__C
    008d19e4 ti_sdo_ipc_MessageQ_A_unregisteredTransport__C
    008d19e8 ti_sdo_ipc_MessageQ_Instance_State_highList__O
    008d19ec ti_sdo_ipc_MessageQ_Instance_State_normalList__O
    008d19f0 ti_sdo_ipc_MessageQ_LM_putLocal__C
    008cd6a8 ti_sdo_ipc_MessageQ_Module_State_0_heaps__A
    008cd738 ti_sdo_ipc_MessageQ_Module_State_0_transports__A
    008d19f4 ti_sdo_ipc_MessageQ_Module__diagsEnabled__C
    008d19f8 ti_sdo_ipc_MessageQ_Module__diagsIncluded__C
    008d19fc ti_sdo_ipc_MessageQ_Module__diagsMask__C
    008d1792 ti_sdo_ipc_MessageQ_Module__id__C
    008d17b2 ti_sdo_ipc_MessageQ_Module__loggerDefined__C
    008d1a00 ti_sdo_ipc_MessageQ_Module__loggerFxn4__C
    008d1a04 ti_sdo_ipc_MessageQ_Module__loggerObj__C
    008cbe18 ti_sdo_ipc_MessageQ_Module__root__V
    008cbe20 ti_sdo_ipc_MessageQ_Module__state__V
    008be5e0 ti_sdo_ipc_MessageQ_Module_startup__E
    008be5e0 ti_sdo_ipc_MessageQ_Module_startup__F
    008d1a08 ti_sdo_ipc_MessageQ_Object__count__C
    008c7600 ti_sdo_ipc_MessageQ_Object__get__S
    008bf760 ti_sdo_ipc_MessageQ_SetupTransportProxy_attach__E
    008c7920 ti_sdo_ipc_MessageQ_SetupTransportProxy_isRegistered__E
    008c5040 ti_sdo_ipc_MessageQ_SetupTransportProxy_sharedMemReq__E
    008bb100 ti_sdo_ipc_MessageQ_registerTransport__E
    008bb100 ti_sdo_ipc_MessageQ_registerTransport__F
    008bc400 ti_sdo_ipc_MessageQ_unregisterTransport__E
    008bc400 ti_sdo_ipc_MessageQ_unregisterTransport__F
    008d1a0c ti_sdo_ipc_Notify_A_alreadyRegistered__C
    008d1a10 ti_sdo_ipc_Notify_A_internal__C
    008d1a14 ti_sdo_ipc_Notify_A_invArgument__C
    008d1a18 ti_sdo_ipc_Notify_A_notRegistered__C
    008d1a1c ti_sdo_ipc_Notify_A_reservedEvent__C
    008bf060 ti_sdo_ipc_Notify_Instance_finalize__F
    008abf00 ti_sdo_ipc_Notify_Instance_init__F
    008c7620 ti_sdo_ipc_Notify_Module_GateProxy_enter__E
    008c7640 ti_sdo_ipc_Notify_Module_GateProxy_leave__E
    008c7de0 ti_sdo_ipc_Notify_Module_GateProxy_query__E
    008cd878 ti_sdo_ipc_Notify_Module_State_0_notifyHandles_0__A
    008cd880 ti_sdo_ipc_Notify_Module_State_0_notifyHandles_1__A
    008cd888 ti_sdo_ipc_Notify_Module_State_0_notifyHandles_2__A
    008cd828 ti_sdo_ipc_Notify_Module_State_0_notifyHandles__A
    008d1a20 ti_sdo_ipc_Notify_Module__diagsEnabled__C
    008d1a24 ti_sdo_ipc_Notify_Module__diagsIncluded__C
    008d1a28 ti_sdo_ipc_Notify_Module__diagsMask__C
    008d1a2c ti_sdo_ipc_Notify_Module__gateObj__C
    008d18ea ti_sdo_ipc_Notify_Module__id__C
    008cbe3c ti_sdo_ipc_Notify_Module__root__V
    008cbe44 ti_sdo_ipc_Notify_Module__state__V
    008bb280 ti_sdo_ipc_Notify_Module_startup__E
    008bb280 ti_sdo_ipc_Notify_Module_startup__F
    008d13f4 ti_sdo_ipc_Notify_Object__DESC__C
    008d17b4 ti_sdo_ipc_Notify_Object__PARAMS__C
    008c1aa0 ti_sdo_ipc_Notify_Object__create__S
    008d1a30 ti_sdo_ipc_Notify_Object__heap__C
    008c0920 ti_sdo_ipc_Notify_SetupProxy_attach__E
    008c76a0 ti_sdo_ipc_Notify_SetupProxy_numIntLines__E
    008c4e60 ti_sdo_ipc_Notify_SetupProxy_sharedMemReq__E
    008c1b60 ti_sdo_ipc_Notify_execMany__I
    008bd500 ti_sdo_ipc_Notify_exec__E
    008bd500 ti_sdo_ipc_Notify_exec__F
    008d1a34 ti_sdo_ipc_Notify_numEvents__C
    008d1902 ti_sdo_ipc_Notify_numLines__C
    008d1976 ti_sdo_ipc_Notify_reservedEvents__C
    008d1a38 ti_sdo_ipc_Notify_sendEventPollCount__C
    008d1a3c ti_sdo_ipc_SharedRegion_A_addrOutOfRange__C
    008d1a40 ti_sdo_ipc_SharedRegion_A_idTooLarge__C
    008d1a44 ti_sdo_ipc_SharedRegion_A_noHeap__C
    008d1a48 ti_sdo_ipc_SharedRegion_A_region0Invalid__C
    008d1a4c ti_sdo_ipc_SharedRegion_A_regionInvalid__C
    008d1a50 ti_sdo_ipc_SharedRegion_A_reserveTooMuch__C
    008d1a54 ti_sdo_ipc_SharedRegion_INVALIDSRPTR__C
    008ccfc8 ti_sdo_ipc_SharedRegion_Module_State_0_regions__A
    008d1a58 ti_sdo_ipc_SharedRegion_Module__diagsEnabled__C
    008d1a5c ti_sdo_ipc_SharedRegion_Module__diagsIncluded__C
    008d1a60 ti_sdo_ipc_SharedRegion_Module__diagsMask__C
    008d1e24 ti_sdo_ipc_SharedRegion_Module__id__C
    008cbe4c ti_sdo_ipc_SharedRegion_Module__state__V
    008bf160 ti_sdo_ipc_SharedRegion_attach__E
    008bf160 ti_sdo_ipc_SharedRegion_attach__F
    008d1a64 ti_sdo_ipc_SharedRegion_cacheLineSize__C
    008bf260 ti_sdo_ipc_SharedRegion_clearReservedMemory__E
    008bf260 ti_sdo_ipc_SharedRegion_clearReservedMemory__F
    008d1e26 ti_sdo_ipc_SharedRegion_numEntries__C
    008d1a68 ti_sdo_ipc_SharedRegion_numOffsetBits__C
    008d1a6c ti_sdo_ipc_SharedRegion_offsetMask__C
    008ac700 ti_sdo_ipc_SharedRegion_reserveMemory__E
    008ac700 ti_sdo_ipc_SharedRegion_reserveMemory__F
    008a6a20 ti_sdo_ipc_SharedRegion_start__E
    008a6a20 ti_sdo_ipc_SharedRegion_start__F
    008d1e28 ti_sdo_ipc_SharedRegion_translate__C
    008d1a70 ti_sdo_ipc_family_c647x_Interrupt_INTERDSPINT__C
    008d1a74 ti_sdo_ipc_family_c647x_Interrupt_IPCAR0__C
    008d1a78 ti_sdo_ipc_family_c647x_Interrupt_IPCGR0__C
    008d1a7c ti_sdo_ipc_family_c647x_Interrupt_KICK0__C
    008d1a80 ti_sdo_ipc_family_c647x_Interrupt_KICK1__C
    008cd750 ti_sdo_ipc_family_c647x_Interrupt_Module_State_0_fxnTable__A
    008cbe50 ti_sdo_ipc_family_c647x_Interrupt_Module__state__V
    008bf360 ti_sdo_ipc_family_c647x_Interrupt_Module_startup__E
    008bf360 ti_sdo_ipc_family_c647x_Interrupt_Module_startup__F
    008d1e2a ti_sdo_ipc_family_c647x_Interrupt_enableKick__C
    008c5a80 ti_sdo_ipc_family_c647x_Interrupt_intClear__E
    008c7660 ti_sdo_ipc_family_c647x_Interrupt_intDisable__E
    008c7680 ti_sdo_ipc_family_c647x_Interrupt_intEnable__E
    008be700 ti_sdo_ipc_family_c647x_Interrupt_intRegister__E
    008c5ac0 ti_sdo_ipc_family_c647x_Interrupt_intSend__E
    008c1c20 ti_sdo_ipc_family_c647x_Interrupt_intShmStub__I
    008c3040 ti_sdo_ipc_family_c647x_Interrupt_intUnregister__E
    008d1a84 ti_sdo_ipc_family_c647x_MultiProcSetup_A_invalidProcessor__C
    008d1a88 ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsEnabled__C
    008d1a8c ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsIncluded__C
    008d1a90 ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsMask__C
    008d1e2c ti_sdo_ipc_family_c647x_MultiProcSetup_Module__id__C
    008b7460 ti_sdo_ipc_family_c647x_MultiProcSetup_init__I
    008d1970 ti_sdo_ipc_family_c647x_MultiProcSetup_procMap__A
    008d1a94 ti_sdo_ipc_family_c647x_MultiProcSetup_procMap__C
    008c0920 ti_sdo_ipc_family_c647x_NotifySetup_attach__E
    008d1a98 ti_sdo_ipc_family_c647x_NotifySetup_dspIntVectId__C
    008c76a0 ti_sdo_ipc_family_c647x_NotifySetup_numIntLines__E
    008c4e60 ti_sdo_ipc_family_c647x_NotifySetup_sharedMemReq__E
    008d1a9c ti_sdo_ipc_gates_GateHWSem_A_invSemNum__C
    008c5b00 ti_sdo_ipc_gates_GateHWSem_Handle__label__S
    008bc560 ti_sdo_ipc_gates_GateHWSem_Instance_init__F
    008d1008 ti_sdo_ipc_gates_GateHWSem_Module__FXNS__C
    008d1aa0 ti_sdo_ipc_gates_GateHWSem_Module__diagsEnabled__C
    008d1aa4 ti_sdo_ipc_gates_GateHWSem_Module__diagsIncluded__C
    008d1aa8 ti_sdo_ipc_gates_GateHWSem_Module__diagsMask__C
    008d1e2e ti_sdo_ipc_gates_GateHWSem_Module__id__C
    008cbe58 ti_sdo_ipc_gates_GateHWSem_Module__root__V
    008bf460 ti_sdo_ipc_gates_GateHWSem_Module_startup__E
    008bf460 ti_sdo_ipc_gates_GateHWSem_Module_startup__F
    008d1414 ti_sdo_ipc_gates_GateHWSem_Object__DESC__C
    008d117c ti_sdo_ipc_gates_GateHWSem_Object__PARAMS__C
    008c3780 ti_sdo_ipc_gates_GateHWSem_Object__create__S
    008c5b40 ti_sdo_ipc_gates_GateHWSem_Object__delete__S
    008c76c0 ti_sdo_ipc_gates_GateHWSem_Params__init__S
    008d1aac ti_sdo_ipc_gates_GateHWSem_baseAddr__C
    008c0a00 ti_sdo_ipc_gates_GateHWSem_enter__E
    008c76e0 ti_sdo_ipc_gates_GateHWSem_getReservedMask__E
    008c4ec0 ti_sdo_ipc_gates_GateHWSem_leave__E
    008d1ab0 ti_sdo_ipc_gates_GateHWSem_numSems__C
    008c7700 ti_sdo_ipc_gates_GateHWSem_query__E
    008c7700 ti_sdo_ipc_gates_GateHWSem_query__F
    008d1ab8 ti_sdo_ipc_gates_GateHWSem_reservedMaskArr__A
    008d1ab4 ti_sdo_ipc_gates_GateHWSem_reservedMaskArr__C
    008c7720 ti_sdo_ipc_gates_GateHWSem_sharedMemReq__E
    008d1abc ti_sdo_ipc_gates_GateMPSupportNull_A_invalidAction__C
    008c5b80 ti_sdo_ipc_gates_GateMPSupportNull_Handle__label__S
    008c7740 ti_sdo_ipc_gates_GateMPSupportNull_Instance_init__F
    008d1034 ti_sdo_ipc_gates_GateMPSupportNull_Module__FXNS__C
    008d1ac0 ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsEnabled__C
    008d1ac4 ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsIncluded__C
    008d1ac8 ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsMask__C
    008d1e30 ti_sdo_ipc_gates_GateMPSupportNull_Module__id__C
    008cbe60 ti_sdo_ipc_gates_GateMPSupportNull_Module__root__V
    008d1434 ti_sdo_ipc_gates_GateMPSupportNull_Object__DESC__C
    008d11a0 ti_sdo_ipc_gates_GateMPSupportNull_Object__PARAMS__C
    008c3800 ti_sdo_ipc_gates_GateMPSupportNull_Object__create__S
    008c5bc0 ti_sdo_ipc_gates_GateMPSupportNull_Object__delete__S
    008c7760 ti_sdo_ipc_gates_GateMPSupportNull_Params__init__S
    008d1acc ti_sdo_ipc_gates_GateMPSupportNull_action__C
    008bf560 ti_sdo_ipc_gates_GateMPSupportNull_enter__E
    008c7780 ti_sdo_ipc_gates_GateMPSupportNull_getReservedMask__E
    008bf660 ti_sdo_ipc_gates_GateMPSupportNull_leave__E
    008c77a0 ti_sdo_ipc_gates_GateMPSupportNull_query__E
    008c77a0 ti_sdo_ipc_gates_GateMPSupportNull_query__F
    008c77c0 ti_sdo_ipc_gates_GateMPSupportNull_sharedMemReq__E
    008d1ad0 ti_sdo_ipc_gates_GatePeterson_E_gateRemotelyOpened__C
    008c5c00 ti_sdo_ipc_gates_GatePeterson_Handle__label__S
    008c4f20 ti_sdo_ipc_gates_GatePeterson_Instance_finalize__F
    008a8fc0 ti_sdo_ipc_gates_GatePeterson_Instance_init__F
    008d1060 ti_sdo_ipc_gates_GatePeterson_Module__FXNS__C
    008d1ad4 ti_sdo_ipc_gates_GatePeterson_Module__diagsEnabled__C
    008d1ad8 ti_sdo_ipc_gates_GatePeterson_Module__diagsIncluded__C
    008d1adc ti_sdo_ipc_gates_GatePeterson_Module__diagsMask__C
    008d1e32 ti_sdo_ipc_gates_GatePeterson_Module__id__C
    008cbe68 ti_sdo_ipc_gates_GatePeterson_Module__root__V
    008d1454 ti_sdo_ipc_gates_GatePeterson_Object__DESC__C
    008d11c4 ti_sdo_ipc_gates_GatePeterson_Object__PARAMS__C
    008c1ce0 ti_sdo_ipc_gates_GatePeterson_Object__create__S
    008c5c40 ti_sdo_ipc_gates_GatePeterson_Object__delete__S
    008c77e0 ti_sdo_ipc_gates_GatePeterson_Params__init__S
    008bb400 ti_sdo_ipc_gates_GatePeterson_enter__E
    008c7800 ti_sdo_ipc_gates_GatePeterson_getReservedMask__E
    008c30e0 ti_sdo_ipc_gates_GatePeterson_leave__E
    008d1ae0 ti_sdo_ipc_gates_GatePeterson_numInstances__C
    008c7820 ti_sdo_ipc_gates_GatePeterson_query__E
    008c7820 ti_sdo_ipc_gates_GatePeterson_query__F
    008c4f80 ti_sdo_ipc_gates_GatePeterson_sharedMemReq__E
    008cbe70 ti_sdo_ipc_heaps_HeapBufMP_Module__root__V
    008cbe78 ti_sdo_ipc_heaps_HeapBufMP_Module__state__V
    008d1ae4 ti_sdo_ipc_heaps_HeapMemMP_A_align__C
    008d1ae8 ti_sdo_ipc_heaps_HeapMemMP_A_heapSize__C
    008d1aec ti_sdo_ipc_heaps_HeapMemMP_A_invalidFree__C
    008d1af0 ti_sdo_ipc_heaps_HeapMemMP_A_zeroBlock__C
    008d1af4 ti_sdo_ipc_heaps_HeapMemMP_E_memory__C
    008c5c80 ti_sdo_ipc_heaps_HeapMemMP_Handle__label__S
    008b44e0 ti_sdo_ipc_heaps_HeapMemMP_Instance_finalize__F
    008a0a40 ti_sdo_ipc_heaps_HeapMemMP_Instance_init__F
    008d108c ti_sdo_ipc_heaps_HeapMemMP_Module__FXNS__C
    008d1af8 ti_sdo_ipc_heaps_HeapMemMP_Module__diagsEnabled__C
    008d1afc ti_sdo_ipc_heaps_HeapMemMP_Module__diagsIncluded__C
    008d1b00 ti_sdo_ipc_heaps_HeapMemMP_Module__diagsMask__C
    008d1e34 ti_sdo_ipc_heaps_HeapMemMP_Module__id__C
    008cbe7c ti_sdo_ipc_heaps_HeapMemMP_Module__root__V
    008cbe84 ti_sdo_ipc_heaps_HeapMemMP_Module__state__V
    008d1474 ti_sdo_ipc_heaps_HeapMemMP_Object__DESC__C
    008d0f50 ti_sdo_ipc_heaps_HeapMemMP_Object__PARAMS__C
    008c1da0 ti_sdo_ipc_heaps_HeapMemMP_Object__create__S
    008c5cc0 ti_sdo_ipc_heaps_HeapMemMP_Object__delete__S
    008c7840 ti_sdo_ipc_heaps_HeapMemMP_Params__init__S
    0089c060 ti_sdo_ipc_heaps_HeapMemMP_alloc__E
    0089cac0 ti_sdo_ipc_heaps_HeapMemMP_free__E
    008aae60 ti_sdo_ipc_heaps_HeapMemMP_getStats__E
    008c7860 ti_sdo_ipc_heaps_HeapMemMP_isBlocking__E
    008c7860 ti_sdo_ipc_heaps_HeapMemMP_isBlocking__F
    008ab2a0 ti_sdo_ipc_heaps_HeapMemMP_postInit__I
    008d1b04 ti_sdo_ipc_interfaces_IGateMPSupport_Interface__BASE__C
    008d1b08 ti_sdo_ipc_interfaces_IMessageQTransport_Interface__BASE__C
    008d1b0c ti_sdo_ipc_interfaces_INotifyDriver_Interface__BASE__C
    008c5d00 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Handle__label__S
    008c3180 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Instance_finalize__F
    008a8ae0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Instance_init__F
    008c5a80 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intClear__E
    008c7660 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intDisable__E
    008c7680 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intEnable__E
    008be700 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intRegister__E
    008c5ac0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intSend__E
    008c3040 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intUnregister__E
    008d0eb0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__FXNS__C
    008d1b10 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsEnabled__C
    008d1b14 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsIncluded__C
    008d1b18 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsMask__C
    008d1e36 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__id__C
    008cbe88 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__root__V
    008d1494 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__DESC__C
    008d0f1c ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__PARAMS__C
    008c1e60 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__create__S
    008c5d40 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__delete__S
    008d1b1c ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__heap__C
    008c7880 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Params__init__S
    008b4740 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_disableEvent__E
    008c5d80 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_disable__E
    008b9b40 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_enableEvent__E
    008c5dc0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_enable__E
    008b05a0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_isr__I
    008b88e0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_registerEvent__E
    008b7660 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_sendEvent__E
    008c4fe0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_setNotifyHandle__E
    008b3140 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_sharedMemReq__E
    008b3140 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_sharedMemReq__F
    008b9ce0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_unregisterEvent__E
    008d1b20 ti_sdo_ipc_nsremote_NameServerRemoteNotify_A_invalidValueLen__C
    008c5e00 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Handle__label__S
    008d1b24 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_semMultiBlock__O
    008d1b28 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_semRemoteWait__O
    008d1b2c ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_swiObj__O
    008be820 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_finalize__F
    008a2760 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_init__F
    008d10b4 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__FXNS__C
    008d1b30 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsEnabled__C
    008d1b34 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsIncluded__C
    008d1b38 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsMask__C
    008d1e38 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__id__C
    008cbe90 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__root__V
    008d14b4 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__DESC__C
    008d14d4 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__PARAMS__C
    008c1f20 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__create__S
    008c5e40 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__delete__S
    008c78a0 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__first__S
    008c78c0 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__next__S
    008c78e0 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Params__init__S
    008b9e80 ti_sdo_ipc_nsremote_NameServerRemoteNotify_attach__E
    008c7900 ti_sdo_ipc_nsremote_NameServerRemoteNotify_cbFxn__I
    008c3880 ti_sdo_ipc_nsremote_NameServerRemoteNotify_detach__E
    008a75a0 ti_sdo_ipc_nsremote_NameServerRemoteNotify_get__E
    008a75a0 ti_sdo_ipc_nsremote_NameServerRemoteNotify_get__F
    008d1b3c ti_sdo_ipc_nsremote_NameServerRemoteNotify_notifyEventId__C
    008c5e80 ti_sdo_ipc_nsremote_NameServerRemoteNotify_sharedMemReq__E
    008adc20 ti_sdo_ipc_nsremote_NameServerRemoteNotify_swiFxn__I
    008d1b40 ti_sdo_ipc_nsremote_NameServerRemoteNotify_timeout__C
    008cd838 ti_sdo_ipc_transports_TransportShmSetup_Module_State_0_handles__A
    008cbea0 ti_sdo_ipc_transports_TransportShmSetup_Module__state__V
    008bf760 ti_sdo_ipc_transports_TransportShmSetup_attach__E
    008c7920 ti_sdo_ipc_transports_TransportShmSetup_isRegistered__E
    008d1b44 ti_sdo_ipc_transports_TransportShmSetup_priority__C
    008c5040 ti_sdo_ipc_transports_TransportShmSetup_sharedMemReq__E
    008c5ec0 ti_sdo_ipc_transports_TransportShm_Handle__label__S
    008d1b48 ti_sdo_ipc_transports_TransportShm_Instance_State_swiObj__O
    008b7860 ti_sdo_ipc_transports_TransportShm_Instance_finalize__F
    0089e7e0 ti_sdo_ipc_transports_TransportShm_Instance_init__F
    008d10dc ti_sdo_ipc_transports_TransportShm_Module__FXNS__C
    008d1b4c ti_sdo_ipc_transports_TransportShm_Module__diagsEnabled__C
    008d1b50 ti_sdo_ipc_transports_TransportShm_Module__diagsIncluded__C
    008d1b54 ti_sdo_ipc_transports_TransportShm_Module__diagsMask__C
    008d1e3a ti_sdo_ipc_transports_TransportShm_Module__id__C
    008cbe98 ti_sdo_ipc_transports_TransportShm_Module__root__V
    008d14f4 ti_sdo_ipc_transports_TransportShm_Object__DESC__C
    008d1104 ti_sdo_ipc_transports_TransportShm_Object__PARAMS__C
    008c1fe0 ti_sdo_ipc_transports_TransportShm_Object__create__S
    008c5f00 ti_sdo_ipc_transports_TransportShm_Object__delete__S
    008c7940 ti_sdo_ipc_transports_TransportShm_Params__init__S
    008c7960 ti_sdo_ipc_transports_TransportShm_control__E
    008c7980 ti_sdo_ipc_transports_TransportShm_getStatus__E
    008d1e3c ti_sdo_ipc_transports_TransportShm_notifyEventId__C
    008c79a0 ti_sdo_ipc_transports_TransportShm_notifyFxn__I
    008aeba0 ti_sdo_ipc_transports_TransportShm_openByAddr__E
    008aeba0 ti_sdo_ipc_transports_TransportShm_openByAddr__F
    008a7b20 ti_sdo_ipc_transports_TransportShm_put__E
    008c79c0 ti_sdo_ipc_transports_TransportShm_setErrFxn__E
    008c79c0 ti_sdo_ipc_transports_TransportShm_setErrFxn__F
    008bc6c0 ti_sdo_ipc_transports_TransportShm_sharedMemReq__E
    008bc6c0 ti_sdo_ipc_transports_TransportShm_sharedMemReq__F
    008c3900 ti_sdo_ipc_transports_TransportShm_swiFxn__I
    008d1b58 ti_sdo_utils_INameServerRemote_Interface__BASE__C
    008c79e0 ti_sdo_utils_List_Instance_init__F
    008cbea4 ti_sdo_utils_List_Module__root__V
    008d1514 ti_sdo_utils_List_Object__DESC__C
    008d17cc ti_sdo_utils_List_Object__PARAMS__C
    008c3980 ti_sdo_utils_List_Object__create__S
    008c5f40 ti_sdo_utils_List_Object__destruct__S
    008c7a00 ti_sdo_utils_List_Object__get__S
    008d1b5c ti_sdo_utils_MultiProc_A_invalidMultiProcId__C
    008d1b60 ti_sdo_utils_MultiProc_Module__diagsEnabled__C
    008d1b64 ti_sdo_utils_MultiProc_Module__diagsIncluded__C
    008d1b68 ti_sdo_utils_MultiProc_Module__diagsMask__C
    008d1e3e ti_sdo_utils_MultiProc_Module__id__C
    008cbeac ti_sdo_utils_MultiProc_Module__state__V
    008c7a20 ti_sdo_utils_MultiProc_getClusterId__E
    008c7a20 ti_sdo_utils_MultiProc_getClusterId__F
    008d1e40 ti_sdo_utils_MultiProc_numProcessors__C
    008d1e42 ti_sdo_utils_MultiProc_numProcsInCluster__C
    008cbec0 ti_sdo_utils_NameServerRemoteNull_Module__root__V
    008d1b6c ti_sdo_utils_NameServer_A_invArgument__C
    008d1b70 ti_sdo_utils_NameServer_A_invalidLen__C
    008d1b74 ti_sdo_utils_NameServer_E_entryExists__C
    008d1b78 ti_sdo_utils_NameServer_E_maxReached__C
    008d1b7c ti_sdo_utils_NameServer_Instance_State_freeList__O
    008d1b80 ti_sdo_utils_NameServer_Instance_State_nameList__O
    008816e0 ti_sdo_utils_NameServer_Module_State_0_nsRemoteHandle__A
    008d1b84 ti_sdo_utils_NameServer_Module__diagsEnabled__C
    008d1b88 ti_sdo_utils_NameServer_Module__diagsIncluded__C
    008d1b8c ti_sdo_utils_NameServer_Module__diagsMask__C
    008d1e44 ti_sdo_utils_NameServer_Module__id__C
    008cbeb0 ti_sdo_utils_NameServer_Module__root__V
    008c5f80 ti_sdo_utils_NameServer_Module__startupDone__F
    008c5f80 ti_sdo_utils_NameServer_Module__startupDone__S
    008cbeb8 ti_sdo_utils_NameServer_Module__state__V
    008bb580 ti_sdo_utils_NameServer_Module_startup__E
    008bb580 ti_sdo_utils_NameServer_Module_startup__F
    008d1b90 ti_sdo_utils_NameServer_Object__count__C
    008c7a40 ti_sdo_utils_NameServer_Object__first__S
    008c5fc0 ti_sdo_utils_NameServer_Object__get__S
    008c7a60 ti_sdo_utils_NameServer_Object__next__S
    008ccd50 ti_sdo_utils_NameServer_Object__table__V
    008b9e80 ti_sdo_utils_NameServer_SetupProxy_attach__E
    008c3880 ti_sdo_utils_NameServer_SetupProxy_detach__E
    008c5e80 ti_sdo_utils_NameServer_SetupProxy_sharedMemReq__E
    008bc820 ti_sdo_utils_NameServer_isRegistered__E
    008bc980 ti_sdo_utils_NameServer_registerRemoteDriver__E
    008bcae0 ti_sdo_utils_NameServer_unregisterRemoteDriver__E
    008d1b94 ti_sysbios_BIOS_Module__diagsEnabled__C
    008d1b98 ti_sysbios_BIOS_Module__diagsIncluded__C
    008d1b9c ti_sysbios_BIOS_Module__diagsMask__C
    008d1e46 ti_sysbios_BIOS_Module__id__C
    008cbec8 ti_sysbios_BIOS_Module__state__V
    008c7a80 ti_sysbios_BIOS_RtsGateProxy_enter__E
    008c7aa0 ti_sysbios_BIOS_RtsGateProxy_leave__E
    008c7da0 ti_sysbios_BIOS_RtsGateProxy_query__E
    008c20a0 ti_sysbios_BIOS_errorRaiseHook__I
    008c50a0 ti_sysbios_BIOS_exitFunc__I
    008c7ac0 ti_sysbios_BIOS_getThreadType__E
    008d1ba0 ti_sysbios_BIOS_installedErrorHook__C
    008c5100 ti_sysbios_BIOS_registerRTSLock__I
    008c7ae0 ti_sysbios_BIOS_setThreadType__E
    008c6000 ti_sysbios_BIOS_startFunc__I
    008c6040 ti_sysbios_BIOS_start__E
    008c7b00 ti_sysbios_family_c62_TaskSupport_Module__startupDone__S
    008c5880 ti_sysbios_family_c62_TaskSupport_buildTaskStack
    008c7b20 ti_sysbios_family_c62_TaskSupport_checkStack__E
    008c7120 ti_sysbios_family_c62_TaskSupport_glue
    008c3a00 ti_sysbios_family_c62_TaskSupport_start__E
    008c3500 ti_sysbios_family_c62_TaskSupport_swap__E
    008d1908 ti_sysbios_family_c64p_EventCombiner_EVTMASK__C
    008d1ba4 ti_sysbios_family_c64p_EventCombiner_E_unpluggedEvent__C
    008d1e48 ti_sysbios_family_c64p_EventCombiner_Module__id__C
    008cbee4 ti_sysbios_family_c64p_EventCombiner_Module__state__V
    008c5160 ti_sysbios_family_c64p_EventCombiner_Module_startup__E
    008c5160 ti_sysbios_family_c64p_EventCombiner_Module_startup__F
    008c6080 ti_sysbios_family_c64p_EventCombiner_disableEvent__E
    008c6080 ti_sysbios_family_c64p_EventCombiner_disableEvent__F
    008c51c0 ti_sysbios_family_c64p_EventCombiner_dispatchPlug__E
    008c51c0 ti_sysbios_family_c64p_EventCombiner_dispatchPlug__F
    008bf860 ti_sysbios_family_c64p_EventCombiner_dispatch__E
    008bf860 ti_sysbios_family_c64p_EventCombiner_dispatch__F
    008c60c0 ti_sysbios_family_c64p_EventCombiner_enableEvent__E
    008c60c0 ti_sysbios_family_c64p_EventCombiner_enableEvent__F
    008c5220 ti_sysbios_family_c64p_EventCombiner_unused__E
    008c5220 ti_sysbios_family_c64p_EventCombiner_unused__F
    008d1ba8 ti_sysbios_family_c64p_Exception_E_exceptionMin__C
    008d1e4a ti_sysbios_family_c64p_Exception_Module__id__C
    008cc2e4 ti_sysbios_family_c64p_Exception_Module__state__V
    008c3a80 ti_sysbios_family_c64p_Exception_Module_startup__E
    008c3a80 ti_sysbios_family_c64p_Exception_Module_startup__F
    008baf80 ti_sysbios_family_c64p_Exception_dispatch__E
    008d1bac ti_sysbios_family_c64p_Exception_exceptionHook__C
    008d1bb0 ti_sysbios_family_c64p_Exception_externalHook__C
    008a11c0 ti_sysbios_family_c64p_Exception_handler__I
    008b5520 ti_sysbios_family_c64p_Exception_internalHandler__I
    008d1bb4 ti_sysbios_family_c64p_Exception_internalHook__C
    008d1bb8 ti_sysbios_family_c64p_Exception_nmiHook__C
    008d3000 ti_sysbios_family_c64p_Hwi0
    008d3020 ti_sysbios_family_c64p_Hwi1
    008d3140 ti_sysbios_family_c64p_Hwi10
    008d3160 ti_sysbios_family_c64p_Hwi11
    008d3180 ti_sysbios_family_c64p_Hwi12
    008d31a0 ti_sysbios_family_c64p_Hwi13
    008d31c0 ti_sysbios_family_c64p_Hwi14
    008d31e0 ti_sysbios_family_c64p_Hwi15
    008d3040 ti_sysbios_family_c64p_Hwi2
    008d3060 ti_sysbios_family_c64p_Hwi3
    008d3080 ti_sysbios_family_c64p_Hwi4
    008d30a0 ti_sysbios_family_c64p_Hwi5
    008d30c0 ti_sysbios_family_c64p_Hwi6
    008d30e0 ti_sysbios_family_c64p_Hwi7
    008d3100 ti_sysbios_family_c64p_Hwi8
    008d3120 ti_sysbios_family_c64p_Hwi9
    008d1bbc ti_sysbios_family_c64p_Hwi_E_alreadyDefined__C
    008d1bc0 ti_sysbios_family_c64p_Hwi_E_handleNotFound__C
    008c0ae0 ti_sysbios_family_c64p_Hwi_Instance_finalize__F
    008c0bc0 ti_sysbios_family_c64p_Hwi_Instance_init__F
    008d1bc4 ti_sysbios_family_c64p_Hwi_LD_end__C
    008d1bc8 ti_sysbios_family_c64p_Hwi_LM_begin__C
    008d1bcc ti_sysbios_family_c64p_Hwi_Module__diagsEnabled__C
    008d1bd0 ti_sysbios_family_c64p_Hwi_Module__diagsIncluded__C
    008d1bd4 ti_sysbios_family_c64p_Hwi_Module__diagsMask__C
    008d1e4c ti_sysbios_family_c64p_Hwi_Module__id__C
    008d1e4e ti_sysbios_family_c64p_Hwi_Module__loggerDefined__C
    008d1bd8 ti_sysbios_family_c64p_Hwi_Module__loggerFxn1__C
    008d1bdc ti_sysbios_family_c64p_Hwi_Module__loggerFxn8__C
    008d1be0 ti_sysbios_family_c64p_Hwi_Module__loggerObj__C
    008cc310 ti_sysbios_family_c64p_Hwi_Module__root__V
    008c6100 ti_sysbios_family_c64p_Hwi_Module__startupDone__F
    008c6100 ti_sysbios_family_c64p_Hwi_Module__startupDone__S
    008cc318 ti_sysbios_family_c64p_Hwi_Module__state__V
    008bd640 ti_sysbios_family_c64p_Hwi_Module_startup__E
    008bd640 ti_sysbios_family_c64p_Hwi_Module_startup__F
    008d1534 ti_sysbios_family_c64p_Hwi_Object__DESC__C
    008d0f80 ti_sysbios_family_c64p_Hwi_Object__PARAMS__C
    008c2160 ti_sysbios_family_c64p_Hwi_Object__create__S
    008c6140 ti_sysbios_family_c64p_Hwi_Object__delete__S
    008cd250 ti_sysbios_family_c64p_Hwi_Object__table__V
    008c7b40 ti_sysbios_family_c64p_Hwi_Params__init__S
    008c7b60 ti_sysbios_family_c64p_Hwi_clearInterrupt__E
    008c6180 ti_sysbios_family_c64p_Hwi_disableInterrupt__E
    008b6e60 ti_sysbios_family_c64p_Hwi_dispatchAlways
    008aeea0 ti_sysbios_family_c64p_Hwi_dispatchC__I
    008c61c0 ti_sysbios_family_c64p_Hwi_enableInterrupt__E
    008c3b00 ti_sysbios_family_c64p_Hwi_eventMap__E
    008c7b80 ti_sysbios_family_c64p_Hwi_getHandle__E
    008c2d20 ti_sysbios_family_c64p_Hwi_plug__E
    008b5de0 ti_sysbios_family_c64p_Hwi_reconfig__E
    008c7ba0 ti_sysbios_family_c64p_Hwi_startup__E
    008c7bc0 ti_sysbios_family_c64p_Hwi_switchFromBootStack__E
    008c7be0 ti_sysbios_family_c64p_Hwi_unPluggedInterrupt__I
    008c7c00 ti_sysbios_family_c64p_tci6488_TimerSupport_enable__E
    008bd780 ti_sysbios_family_c66_Cache_Module_startup__E
    008bd780 ti_sysbios_family_c66_Cache_Module_startup__F
    008d1be4 ti_sysbios_family_c66_Cache_atomicBlockSize__C
    008d1928 ti_sysbios_family_c66_Cache_initSize__C
    008c3b80 ti_sysbios_family_c66_Cache_invL1pAll__E
    008c7c20 ti_sysbios_family_c66_Cache_inv__E
    008d02d0 ti_sysbios_family_c66_Cache_marvalues__C
    008c7c40 ti_sysbios_family_c66_Cache_wbInv__E
    008c7c60 ti_sysbios_family_c66_Cache_wb__E
    008d1be8 ti_sysbios_family_c66_tci66xx_CpIntc_E_unpluggedSysInt__C
    008cd848 ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_controller__A
    008cc4f0 ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_dispatchTab__A
    008cd2c8 ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_hostIntToSysInt__A
    008cd6e8 ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_initSIER__A
    008d1e50 ti_sysbios_family_c66_tci66xx_CpIntc_Module__id__C
    008cc380 ti_sysbios_family_c66_tci66xx_CpIntc_Module__state__V
    008b1580 ti_sysbios_family_c66_tci66xx_CpIntc_Module_startup__E
    008b1580 ti_sysbios_family_c66_tci66xx_CpIntc_Module_startup__F
    008c7c80 ti_sysbios_family_c66_tci66xx_CpIntc_disableHostInt__E
    008c7c80 ti_sysbios_family_c66_tci66xx_CpIntc_disableHostInt__F
    008c6200 ti_sysbios_family_c66_tci66xx_CpIntc_dispatchPlug__E
    008c6200 ti_sysbios_family_c66_tci66xx_CpIntc_dispatchPlug__F
    008ba020 ti_sysbios_family_c66_tci66xx_CpIntc_dispatch__E
    008ba020 ti_sysbios_family_c66_tci66xx_CpIntc_dispatch__F
    008c6240 ti_sysbios_family_c66_tci66xx_CpIntc_enableAllHostInts__E
    008c6240 ti_sysbios_family_c66_tci66xx_CpIntc_enableAllHostInts__F
    008c7ca0 ti_sysbios_family_c66_tci66xx_CpIntc_enableHostInt__E
    008c7ca0 ti_sysbios_family_c66_tci66xx_CpIntc_enableHostInt__F
    008d1718 ti_sysbios_family_c66_tci66xx_CpIntc_eventId__A
    008d1bec ti_sysbios_family_c66_tci66xx_CpIntc_eventId__C
    008c3c00 ti_sysbios_family_c66_tci66xx_CpIntc_getEventId__E
    008c3c00 ti_sysbios_family_c66_tci66xx_CpIntc_getEventId__F
    008d1738 ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_0__A
    008d1758 ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_1__A
    008d1778 ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_2__A
    008d1798 ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_3__A
    008d1918 ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId__A
    008d1bf0 ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId__C
    008c3c80 ti_sysbios_family_c66_tci66xx_CpIntc_mapSysIntToHostInt__E
    008c3c80 ti_sysbios_family_c66_tci66xx_CpIntc_mapSysIntToHostInt__F
    008d1bf4 ti_sysbios_family_c66_tci66xx_CpIntc_numEvents__C
    008d1bf8 ti_sysbios_family_c66_tci66xx_CpIntc_numStatusRegs__C
    008d1bfc ti_sysbios_family_c66_tci66xx_CpIntc_numSysInts__C
    008d0a58 ti_sysbios_family_c66_tci66xx_CpIntc_sysIntToHostInt__A
    008d1c00 ti_sysbios_family_c66_tci66xx_CpIntc_sysIntToHostInt__C
    008c5280 ti_sysbios_family_c66_tci66xx_CpIntc_unused__E
    008c5280 ti_sysbios_family_c66_tci66xx_CpIntc_unused__F
    008c58c0 ti_sysbios_family_xxx_Hwi_switchToIsrStack
    008c7140 ti_sysbios_family_xxx_Hwi_switchToTaskStack
    008c6280 ti_sysbios_gates_GateAll_Handle__label__S
    008c7cc0 ti_sysbios_gates_GateAll_Instance_init__F
    008d11e8 ti_sysbios_gates_GateAll_Module__FXNS__C
    008cc390 ti_sysbios_gates_GateAll_Module__root__V
    008d1554 ti_sysbios_gates_GateAll_Object__DESC__C
    008d17e4 ti_sysbios_gates_GateAll_Object__PARAMS__C
    008c3d00 ti_sysbios_gates_GateAll_Object__create__S
    008c62c0 ti_sysbios_gates_GateAll_Object__delete__S
    008cd7e0 ti_sysbios_gates_GateAll_Object__table__V
    008c52e0 ti_sysbios_gates_GateAll_enter__E
    008c2220 ti_sysbios_gates_GateAll_leave__E
    008c7ce0 ti_sysbios_gates_GateAll_query__E
    008c7ce0 ti_sysbios_gates_GateAll_query__F
    008c6300 ti_sysbios_gates_GateHwi_Handle__label__S
    008c7d00 ti_sysbios_gates_GateHwi_Instance_init__F
    008d120c ti_sysbios_gates_GateHwi_Module__FXNS__C
    008cc398 ti_sysbios_gates_GateHwi_Module__root__V
    008d1574 ti_sysbios_gates_GateHwi_Object__DESC__C
    008d17fc ti_sysbios_gates_GateHwi_Object__PARAMS__C
    008c3d80 ti_sysbios_gates_GateHwi_Object__create__S
    008c6340 ti_sysbios_gates_GateHwi_Object__delete__S
    008cd890 ti_sysbios_gates_GateHwi_Object__table__V
    008c7d20 ti_sysbios_gates_GateHwi_enter__E
    008c7d40 ti_sysbios_gates_GateHwi_leave__E
    008c7d60 ti_sysbios_gates_GateHwi_query__E
    008c7d60 ti_sysbios_gates_GateHwi_query__F
    008d1c04 ti_sysbios_gates_GateMutexPri_A_badContext__C
    008c6380 ti_sysbios_gates_GateMutexPri_Handle__label__S
    008d1c08 ti_sysbios_gates_GateMutexPri_Instance_State_pendQ__O
    008c63c0 ti_sysbios_gates_GateMutexPri_Instance_finalize__F
    008c6400 ti_sysbios_gates_GateMutexPri_Instance_init__F
    008d1230 ti_sysbios_gates_GateMutexPri_Module__FXNS__C
    008d1c0c ti_sysbios_gates_GateMutexPri_Module__diagsEnabled__C
    008d1c10 ti_sysbios_gates_GateMutexPri_Module__diagsIncluded__C
    008d1c14 ti_sysbios_gates_GateMutexPri_Module__diagsMask__C
    008d1e52 ti_sysbios_gates_GateMutexPri_Module__id__C
    008cc3a8 ti_sysbios_gates_GateMutexPri_Module__root__V
    008d1594 ti_sysbios_gates_GateMutexPri_Object__DESC__C
    008d1814 ti_sysbios_gates_GateMutexPri_Object__PARAMS__C
    008c3e00 ti_sysbios_gates_GateMutexPri_Object__create__S
    008c6440 ti_sysbios_gates_GateMutexPri_Object__delete__S
    008c6480 ti_sysbios_gates_GateMutexPri_Object__destruct__S
    008cd768 ti_sysbios_gates_GateMutexPri_Object__table__V
    008afd20 ti_sysbios_gates_GateMutexPri_enter__E
    008bf960 ti_sysbios_gates_GateMutexPri_leave__E
    008c7d80 ti_sysbios_gates_GateMutexPri_query__E
    008c7d80 ti_sysbios_gates_GateMutexPri_query__F
    008d1c18 ti_sysbios_gates_GateMutex_A_badContext__C
    008c64c0 ti_sysbios_gates_GateMutex_Handle__label__S
    008d1c1c ti_sysbios_gates_GateMutex_Instance_State_sem__O
    008c6500 ti_sysbios_gates_GateMutex_Instance_finalize__F
    008c5340 ti_sysbios_gates_GateMutex_Instance_init__F
    008d1254 ti_sysbios_gates_GateMutex_Module__FXNS__C
    008d1c20 ti_sysbios_gates_GateMutex_Module__diagsEnabled__C
    008d1c24 ti_sysbios_gates_GateMutex_Module__diagsIncluded__C
    008d1c28 ti_sysbios_gates_GateMutex_Module__diagsMask__C
    008d1e54 ti_sysbios_gates_GateMutex_Module__id__C
    008cc3a0 ti_sysbios_gates_GateMutex_Module__root__V
    008d15b4 ti_sysbios_gates_GateMutex_Object__DESC__C
    008d182c ti_sysbios_gates_GateMutex_Object__PARAMS__C
    008c3e80 ti_sysbios_gates_GateMutex_Object__create__S
    008c6540 ti_sysbios_gates_GateMutex_Object__delete__S
    008cd488 ti_sysbios_gates_GateMutex_Object__table__V
    008ba1c0 ti_sysbios_gates_GateMutex_enter__E
    008c6580 ti_sysbios_gates_GateMutex_leave__E
    008c7da0 ti_sysbios_gates_GateMutex_query__E
    008c7da0 ti_sysbios_gates_GateMutex_query__F
    008d1c2c ti_sysbios_gates_GateSwi_A_badContext__C
    008c65c0 ti_sysbios_gates_GateSwi_Handle__label__S
    008c7dc0 ti_sysbios_gates_GateSwi_Instance_init__F
    008d1278 ti_sysbios_gates_GateSwi_Module__FXNS__C
    008d1c30 ti_sysbios_gates_GateSwi_Module__diagsEnabled__C
    008d1c34 ti_sysbios_gates_GateSwi_Module__diagsIncluded__C
    008d1c38 ti_sysbios_gates_GateSwi_Module__diagsMask__C
    008d1e56 ti_sysbios_gates_GateSwi_Module__id__C
    008cc3b0 ti_sysbios_gates_GateSwi_Module__root__V
    008d15d4 ti_sysbios_gates_GateSwi_Object__DESC__C
    008d1844 ti_sysbios_gates_GateSwi_Object__PARAMS__C
    008c3f00 ti_sysbios_gates_GateSwi_Object__create__S
    008c6600 ti_sysbios_gates_GateSwi_Object__delete__S
    008cd858 ti_sysbios_gates_GateSwi_Object__table__V
    008bd8c0 ti_sysbios_gates_GateSwi_enter__E
    008c3f80 ti_sysbios_gates_GateSwi_leave__E
    008c7de0 ti_sysbios_gates_GateSwi_query__E
    008c7de0 ti_sysbios_gates_GateSwi_query__F
    008c7c20 ti_sysbios_hal_Cache_CacheProxy_inv__E
    008c7c40 ti_sysbios_hal_Cache_CacheProxy_wbInv__E
    008c7c60 ti_sysbios_hal_Cache_CacheProxy_wb__E
    008c7c20 ti_sysbios_hal_Cache_inv__E
    008c7c40 ti_sysbios_hal_Cache_wbInv__E
    008c7c60 ti_sysbios_hal_Cache_wb__E
    008d1c3c ti_sysbios_hal_Hwi_E_stackOverflow__C
    008c7e00 ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S
    008c7b60 ti_sysbios_hal_Hwi_HwiProxy_clearInterrupt__E
    008c6180 ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E
    008c61c0 ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E
    008c7ba0 ti_sysbios_hal_Hwi_HwiProxy_startup__E
    008c7bc0 ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E
    008d1e58 ti_sysbios_hal_Hwi_Module__id__C
    008cc3b8 ti_sysbios_hal_Hwi_Module__root__V
    008c7e20 ti_sysbios_hal_Hwi_Module_startup__E
    008c7e20 ti_sysbios_hal_Hwi_Module_startup__F
    008cd798 ti_sysbios_hal_Hwi_Object__table__V
    008c4000 ti_sysbios_hal_Hwi_checkStack
    008c7b60 ti_sysbios_hal_Hwi_clearInterrupt__E
    008c6180 ti_sysbios_hal_Hwi_disableInterrupt__E
    008c61c0 ti_sysbios_hal_Hwi_enableInterrupt__E
    008c53a0 ti_sysbios_hal_Hwi_initStack
    008c7ba0 ti_sysbios_hal_Hwi_startup__E
    008c7bc0 ti_sysbios_hal_Hwi_switchFromBootStack__E
    008cc3c0 ti_sysbios_hal_Timer_Module__root__V
    008c6640 ti_sysbios_hal_Timer_Module__startupDone__F
    008c6640 ti_sysbios_hal_Timer_Module__startupDone__S
    008c7e40 ti_sysbios_hal_Timer_Module_startup__E
    008c7e40 ti_sysbios_hal_Timer_Module_startup__F
    008cd868 ti_sysbios_hal_Timer_Object__table__V
    008c7e60 ti_sysbios_hal_Timer_TimerProxy_Module__startupDone__S
    008c7e80 ti_sysbios_hal_Timer_TimerProxy_getExpiredCounts__E
    008c7ea0 ti_sysbios_hal_Timer_TimerProxy_getPeriod__E
    008c7ec0 ti_sysbios_hal_Timer_TimerProxy_setNextTick__E
    008c0d80 ti_sysbios_hal_Timer_TimerProxy_startup__E
    008c0d80 ti_sysbios_hal_Timer_startup__E
    008d1c40 ti_sysbios_heaps_HeapBuf_Instance_State_freeList__O
    008cc3c8 ti_sysbios_heaps_HeapBuf_Module__root__V
    008cc3d0 ti_sysbios_heaps_HeapBuf_Module__state__V
    008bb700 ti_sysbios_heaps_HeapBuf_Module_startup__E
    008bb700 ti_sysbios_heaps_HeapBuf_Module_startup__F
    008d1c44 ti_sysbios_heaps_HeapBuf_Object__count__C
    008c7ee0 ti_sysbios_heaps_HeapBuf_Object__get__S
    008d1c48 ti_sysbios_heaps_HeapBuf_numConstructedHeaps__C
    008d1c4c ti_sysbios_heaps_HeapMem_A_align__C
    008d1c50 ti_sysbios_heaps_HeapMem_A_heapSize__C
    008d1c54 ti_sysbios_heaps_HeapMem_A_invalidFree__C
    008d1c58 ti_sysbios_heaps_HeapMem_A_zeroBlock__C
    008d1c5c ti_sysbios_heaps_HeapMem_E_memory__C
    008c6680 ti_sysbios_heaps_HeapMem_Handle__label__S
    008816f0 ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A
    008bb880 ti_sysbios_heaps_HeapMem_Instance_init__F
    008c7f00 ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E
    008c7f20 ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E
    008c7da0 ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E
    008d112c ti_sysbios_heaps_HeapMem_Module__FXNS__C
    008d1c60 ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C
    008d1c64 ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C
    008d1c68 ti_sysbios_heaps_HeapMem_Module__diagsMask__C
    008d1c6c ti_sysbios_heaps_HeapMem_Module__gateObj__C
    008d1e5a ti_sysbios_heaps_HeapMem_Module__id__C
    008cc3d4 ti_sysbios_heaps_HeapMem_Module__root__V
    008d15f4 ti_sysbios_heaps_HeapMem_Object__DESC__C
    008d1614 ti_sysbios_heaps_HeapMem_Object__PARAMS__C
    008d1c70 ti_sysbios_heaps_HeapMem_Object__count__C
    008c4080 ti_sysbios_heaps_HeapMem_Object__create__S
    008c66c0 ti_sysbios_heaps_HeapMem_Object__delete__S
    008c6700 ti_sysbios_heaps_HeapMem_Object__get__S
    008cd7b8 ti_sysbios_heaps_HeapMem_Object__table__V
    008a4140 ti_sysbios_heaps_HeapMem_alloc__E
    008a34c0 ti_sysbios_heaps_HeapMem_free__E
    008c22e0 ti_sysbios_heaps_HeapMem_getStats__E
    008c3220 ti_sysbios_heaps_HeapMem_init__I
    008c7f40 ti_sysbios_heaps_HeapMem_isBlocking__E
    008d1c74 ti_sysbios_heaps_HeapMem_reqAlignMask__C
    008d1c78 ti_sysbios_heaps_HeapMem_reqAlign__C
    008d1c7c ti_sysbios_knl_Clock_A_badThreadType__C
    008bda00 ti_sysbios_knl_Clock_Instance_finalize__F
    008b33c0 ti_sysbios_knl_Clock_Instance_init__F
    008d1c80 ti_sysbios_knl_Clock_LM_begin__C
    008d1c84 ti_sysbios_knl_Clock_LM_tick__C
    008d1c88 ti_sysbios_knl_Clock_LW_delayed__C
    008d1c8c ti_sysbios_knl_Clock_Module_State_clockQ__O
    008d1c90 ti_sysbios_knl_Clock_Module__diagsEnabled__C
    008d1c94 ti_sysbios_knl_Clock_Module__diagsIncluded__C
    008d1c98 ti_sysbios_knl_Clock_Module__diagsMask__C
    008d1e5c ti_sysbios_knl_Clock_Module__id__C
    008d1e5e ti_sysbios_knl_Clock_Module__loggerDefined__C
    008d1c9c ti_sysbios_knl_Clock_Module__loggerFxn1__C
    008d1ca0 ti_sysbios_knl_Clock_Module__loggerFxn2__C
    008d1ca4 ti_sysbios_knl_Clock_Module__loggerObj__C
    008cc3dc ti_sysbios_knl_Clock_Module__root__V
    008cc3e4 ti_sysbios_knl_Clock_Module__state__V
    008c4100 ti_sysbios_knl_Clock_Module_startup__E
    008c4100 ti_sysbios_knl_Clock_Module_startup__F
    008d1634 ti_sysbios_knl_Clock_Object__DESC__C
    008d129c ti_sysbios_knl_Clock_Object__PARAMS__C
    008c4180 ti_sysbios_knl_Clock_Object__create__S
    008c6740 ti_sysbios_knl_Clock_Object__destruct__S
    008c7f60 ti_sysbios_knl_Clock_Params__init__S
    008c4200 ti_sysbios_knl_Clock_doTick__I
    008c4280 ti_sysbios_knl_Clock_getTicks__E
    008c23a0 ti_sysbios_knl_Clock_logTick__E
    008bfa60 ti_sysbios_knl_Clock_startI__E
    008c0ca0 ti_sysbios_knl_Clock_start__E
    008d1ca8 ti_sysbios_knl_Clock_tickMode__C
    008d1cac ti_sysbios_knl_Clock_tickSource__C
    008b1820 ti_sysbios_knl_Clock_workFunc__E
    008d1cb0 ti_sysbios_knl_Idle_funcList__A
    008d194c ti_sysbios_knl_Idle_funcList__C
    008c4300 ti_sysbios_knl_Idle_loop__E
    008c7f80 ti_sysbios_knl_Queue_Instance_init__F
    008cc410 ti_sysbios_knl_Queue_Module__root__V
    008d1654 ti_sysbios_knl_Queue_Object__DESC__C
    008d185c ti_sysbios_knl_Queue_Object__PARAMS__C
    008c4380 ti_sysbios_knl_Queue_Object__create__S
    008c6780 ti_sysbios_knl_Queue_Object__destruct__S
    008c7fa0 ti_sysbios_knl_Queue_Object__get__S
    008c7fc0 ti_sysbios_knl_Queue_empty__E
    008d1cb4 ti_sysbios_knl_Semaphore_A_badContext__C
    008d1cb8 ti_sysbios_knl_Semaphore_A_noEvents__C
    008d1cbc ti_sysbios_knl_Semaphore_A_overflow__C
    008d1cc0 ti_sysbios_knl_Semaphore_Instance_State_pendQ__O
    008c67c0 ti_sysbios_knl_Semaphore_Instance_finalize__F
    008bdb40 ti_sysbios_knl_Semaphore_Instance_init__F
    008d1cc4 ti_sysbios_knl_Semaphore_LM_pend__C
    008d1cc8 ti_sysbios_knl_Semaphore_LM_post__C
    008d1ccc ti_sysbios_knl_Semaphore_Module__diagsEnabled__C
    008d1cd0 ti_sysbios_knl_Semaphore_Module__diagsIncluded__C
    008d1cd4 ti_sysbios_knl_Semaphore_Module__diagsMask__C
    008d1e60 ti_sysbios_knl_Semaphore_Module__id__C
    008d1e62 ti_sysbios_knl_Semaphore_Module__loggerDefined__C
    008d1cd8 ti_sysbios_knl_Semaphore_Module__loggerFxn2__C
    008d1cdc ti_sysbios_knl_Semaphore_Module__loggerFxn4__C
    008d1ce0 ti_sysbios_knl_Semaphore_Module__loggerObj__C
    008cc418 ti_sysbios_knl_Semaphore_Module__root__V
    008d1674 ti_sysbios_knl_Semaphore_Object__DESC__C
    008d12c0 ti_sysbios_knl_Semaphore_Object__PARAMS__C
    008c4400 ti_sysbios_knl_Semaphore_Object__create__S
    008c6800 ti_sysbios_knl_Semaphore_Object__delete__S
    008c6840 ti_sysbios_knl_Semaphore_Object__destruct__S
    008cd780 ti_sysbios_knl_Semaphore_Object__table__V
    008c7fe0 ti_sysbios_knl_Semaphore_Params__init__S
    008c4480 ti_sysbios_knl_Semaphore_pendTimeout__I
    008ac300 ti_sysbios_knl_Semaphore_pend__E
    008b5760 ti_sysbios_knl_Semaphore_post__E
    008d1ce4 ti_sysbios_knl_Swi_A_badPriority__C
    008c2460 ti_sysbios_knl_Swi_Instance_finalize__F
    008b8aa0 ti_sysbios_knl_Swi_Instance_init__F
    008d1ce8 ti_sysbios_knl_Swi_LD_end__C
    008d1cec ti_sysbios_knl_Swi_LM_begin__C
    008d1cf0 ti_sysbios_knl_Swi_LM_post__C
    008cd0d8 ti_sysbios_knl_Swi_Module_State_0_readyQ__A
    008d1cf4 ti_sysbios_knl_Swi_Module__diagsEnabled__C
    008d1cf8 ti_sysbios_knl_Swi_Module__diagsIncluded__C
    008d1cfc ti_sysbios_knl_Swi_Module__diagsMask__C
    008d1e64 ti_sysbios_knl_Swi_Module__id__C
    008d1e66 ti_sysbios_knl_Swi_Module__loggerDefined__C
    008d1d00 ti_sysbios_knl_Swi_Module__loggerFxn1__C
    008d1d04 ti_sysbios_knl_Swi_Module__loggerFxn4__C
    008d1d08 ti_sysbios_knl_Swi_Module__loggerObj__C
    008cc420 ti_sysbios_knl_Swi_Module__root__V
    008cc428 ti_sysbios_knl_Swi_Module__state__V
    008c5400 ti_sysbios_knl_Swi_Module_startup__E
    008c5400 ti_sysbios_knl_Swi_Module_startup__F
    008d1694 ti_sysbios_knl_Swi_Object__DESC__C
    008d1154 ti_sysbios_knl_Swi_Object__PARAMS__C
    008d1d0c ti_sysbios_knl_Swi_Object__count__C
    008c2520 ti_sysbios_knl_Swi_Object__create__S
    008c6880 ti_sysbios_knl_Swi_Object__destruct__S
    008c68c0 ti_sysbios_knl_Swi_Object__get__S
    008cd628 ti_sysbios_knl_Swi_Object__table__V
    008c8000 ti_sysbios_knl_Swi_Params__init__S
    008c8020 ti_sysbios_knl_Swi_disable__E
    008c8040 ti_sysbios_knl_Swi_getTrigger__E
    008c6900 ti_sysbios_knl_Swi_inc__E
    008bdc80 ti_sysbios_knl_Swi_post__E
    008bfb60 ti_sysbios_knl_Swi_restoreHwi__E
    008b6000 ti_sysbios_knl_Swi_run__I
    008bba00 ti_sysbios_knl_Swi_schedule__I
    008c4500 ti_sysbios_knl_Swi_startup__E
    008d1d10 ti_sysbios_knl_Task_A_badPriority__C
    008d1d14 ti_sysbios_knl_Task_E_spOutOfBounds__C
    008d1d18 ti_sysbios_knl_Task_E_stackOverflow__C
    008896f0 ti_sysbios_knl_Task_Instance_State_0_hookEnv__A
    00896440 ti_sysbios_knl_Task_Instance_State_0_stack__A
    008d1d1c ti_sysbios_knl_Task_LD_block__C
    008d1d20 ti_sysbios_knl_Task_LD_exit__C
    008d1d24 ti_sysbios_knl_Task_LD_ready__C
    008d1d28 ti_sysbios_knl_Task_LM_setPri__C
    008d1d2c ti_sysbios_knl_Task_LM_switch__C
    008d1d30 ti_sysbios_knl_Task_LM_yield__C
    008cd158 ti_sysbios_knl_Task_Module_State_0_readyQ__A
    008d1d34 ti_sysbios_knl_Task_Module_State_inactiveQ__O
    008d1d38 ti_sysbios_knl_Task_Module_State_terminatedQ__O
    008d1d3c ti_sysbios_knl_Task_Module__diagsEnabled__C
    008d1d40 ti_sysbios_knl_Task_Module__diagsIncluded__C
    008d1d44 ti_sysbios_knl_Task_Module__diagsMask__C
    008d1e68 ti_sysbios_knl_Task_Module__id__C
    008d1e6a ti_sysbios_knl_Task_Module__loggerDefined__C
    008d1d48 ti_sysbios_knl_Task_Module__loggerFxn2__C
    008d1d4c ti_sysbios_knl_Task_Module__loggerFxn4__C
    008d1d50 ti_sysbios_knl_Task_Module__loggerObj__C
    008cc444 ti_sysbios_knl_Task_Module__root__V
    008cc44c ti_sysbios_knl_Task_Module__state__V
    008b0000 ti_sysbios_knl_Task_Module_startup__E
    008b0000 ti_sysbios_knl_Task_Module_startup__F
    008d1d54 ti_sysbios_knl_Task_Object__count__C
    008c8060 ti_sysbios_knl_Task_Object__first__S
    008c6940 ti_sysbios_knl_Task_Object__get__S
    008c8080 ti_sysbios_knl_Task_Object__next__S
    008cd440 ti_sysbios_knl_Task_Object__table__V
    008c80a0 ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S
    008c7b20 ti_sysbios_knl_Task_SupportProxy_checkStack__E
    008c3a00 ti_sysbios_knl_Task_SupportProxy_start__E
    008c3500 ti_sysbios_knl_Task_SupportProxy_swap__E
    008d1d58 ti_sysbios_knl_Task_allBlockedFunc__C
    008c5460 ti_sysbios_knl_Task_allBlockedFunction__I
    008bddc0 ti_sysbios_knl_Task_blockI__E
    008b8c60 ti_sysbios_knl_Task_checkStacks__E
    008d1e6c ti_sysbios_knl_Task_deleteTerminatedTasks__C
    008c80c0 ti_sysbios_knl_Task_disable__E
    008c80e0 ti_sysbios_knl_Task_enable__E
    008c54c0 ti_sysbios_knl_Task_enter__I
    008b3640 ti_sysbios_knl_Task_exit__E
    008c8100 ti_sysbios_knl_Task_getPri__E
    008d1878 ti_sysbios_knl_Task_hooks__A
    008d1954 ti_sysbios_knl_Task_hooks__C
    008d1e6e ti_sysbios_knl_Task_initStackFlag__C
    008d1d5c ti_sysbios_knl_Task_numConstructedTasks__C
    008d1d60 ti_sysbios_knl_Task_numPriorities__C
    008b7e20 ti_sysbios_knl_Task_postInit__I
    008c4580 ti_sysbios_knl_Task_restore__E
    008b6220 ti_sysbios_knl_Task_schedule__I
    008c8120 ti_sysbios_knl_Task_self__E
    008acac0 ti_sysbios_knl_Task_setPri__E
    008b6440 ti_sysbios_knl_Task_startup__E
    008bbb80 ti_sysbios_knl_Task_unblockI__E
    008bdf00 ti_sysbios_knl_Task_yield__E
    008cc480 ti_sysbios_syncs_SyncSem_Module__root__V
    008d1d64 ti_sysbios_timers_timer64_Timer_A_notAvailable__C
    008d1d68 ti_sysbios_timers_timer64_Timer_E_cannotSupport__C
    008cce68 ti_sysbios_timers_timer64_Timer_Module_State_0_device__A
    008cd4c8 ti_sysbios_timers_timer64_Timer_Module_State_0_gctrl__A
    008cd508 ti_sysbios_timers_timer64_Timer_Module_State_0_handles__A
    008cd548 ti_sysbios_timers_timer64_Timer_Module_State_0_intFreqs__A
    008d1d6c ti_sysbios_timers_timer64_Timer_Module__diagsEnabled__C
    008d1d70 ti_sysbios_timers_timer64_Timer_Module__diagsIncluded__C
    008d1d74 ti_sysbios_timers_timer64_Timer_Module__diagsMask__C
    008d1e70 ti_sysbios_timers_timer64_Timer_Module__id__C
    008cc488 ti_sysbios_timers_timer64_Timer_Module__root__V
    008c6980 ti_sysbios_timers_timer64_Timer_Module__startupDone__F
    008c6980 ti_sysbios_timers_timer64_Timer_Module__startupDone__S
    008cc490 ti_sysbios_timers_timer64_Timer_Module__state__V
    008a6fe0 ti_sysbios_timers_timer64_Timer_Module_startup__E
    008a6fe0 ti_sysbios_timers_timer64_Timer_Module_startup__F
    008cd3f0 ti_sysbios_timers_timer64_Timer_Object__table__V
    008c7c00 ti_sysbios_timers_timer64_Timer_TimerSupportProxy_enable__E
    008d1d78 ti_sysbios_timers_timer64_Timer_anyMask__C
    008d1d7c ti_sysbios_timers_timer64_Timer_freqDivisor__C
    008c4600 ti_sysbios_timers_timer64_Timer_getCount__E
    008c4600 ti_sysbios_timers_timer64_Timer_getExpiredCounts__E
    008b8000 ti_sysbios_timers_timer64_Timer_getFreq__E
    008c4680 ti_sysbios_timers_timer64_Timer_getPeriod__E
    008d1d80 ti_sysbios_timers_timer64_Timer_numLocalTimers__C
    008d1d84 ti_sysbios_timers_timer64_Timer_numTimerDevices__C
    008c8140 ti_sysbios_timers_timer64_Timer_setNextTick__E
    008b8e20 ti_sysbios_timers_timer64_Timer_setPeriodMicroSecs__E
    008ba360 ti_sysbios_timers_timer64_Timer_start__E
    008d1e72 ti_sysbios_timers_timer64_Timer_startupNeeded__C
    008c0d80 ti_sysbios_timers_timer64_Timer_startup__E
    008c25e0 ti_sysbios_timers_timer64_Timer_stop__E
    008c7d80 ti_sysbios_xdcruntime_GateProcessSupport_query__F
    008d1d88 ti_sysbios_xdcruntime_GateThreadSupport_Instance_State_gate__O
    008c69c0 ti_sysbios_xdcruntime_GateThreadSupport_Instance_finalize__F
    008c6a00 ti_sysbios_xdcruntime_GateThreadSupport_Instance_init__F
    008cc4a4 ti_sysbios_xdcruntime_GateThreadSupport_Module__root__V
    008d16b4 ti_sysbios_xdcruntime_GateThreadSupport_Object__DESC__C
    008d1890 ti_sysbios_xdcruntime_GateThreadSupport_Object__PARAMS__C
    008c4700 ti_sysbios_xdcruntime_GateThreadSupport_Object__create__S
    008c6a40 ti_sysbios_xdcruntime_GateThreadSupport_Object__delete__S
    008c6a80 ti_sysbios_xdcruntime_GateThreadSupport_enter__E
    008c6a80 ti_sysbios_xdcruntime_GateThreadSupport_enter__F
    008c6ac0 ti_sysbios_xdcruntime_GateThreadSupport_leave__E
    008c6ac0 ti_sysbios_xdcruntime_GateThreadSupport_leave__F
    008c7d80 ti_sysbios_xdcruntime_GateThreadSupport_query__E
    008c7d80 ti_sysbios_xdcruntime_GateThreadSupport_query__F
    008c6b00 time
    008d327c total_set_ranging_pulses_sent
    008bd280 transer_ByEDMA
    008d33a4 transferCallback
    008d32e0 tx_high
    008c4780 unlink
    008ae280 unregisterEdma3Interrupts
    008d3364 userInitConfig
    008896f8 userInstInitConfigArray
    008c32c0 write
    008c5520 writemsg
    0083e758 xPow
    008d3220 xPow_ll
    0081e3a0 x_corr_ll
    00820710 x_del
    0083e730 x_del_ll
    00820718 x_del_next
    00820720 x_ll
    0c001000 x_ll_shared
    008d1d8c xdc_runtime_Assert_E_assertFailed__C
    008c3360 xdc_runtime_Assert_raise__I
    008d1d90 xdc_runtime_Core_A_initializedParams__C
    008d1d94 xdc_runtime_Core_Module__diagsEnabled__C
    008d1d98 xdc_runtime_Core_Module__diagsIncluded__C
    008d1d9c xdc_runtime_Core_Module__diagsMask__C
    008d1e74 xdc_runtime_Core_Module__id__C
    008c4800 xdc_runtime_Core_assignLabel__I
    008c4880 xdc_runtime_Core_assignParams__I
    008b38c0 xdc_runtime_Core_createObject__I
    008bfc60 xdc_runtime_Core_deleteObject__I
    008d1da0 xdc_runtime_Error_E_generic__C
    008d1da4 xdc_runtime_Error_E_memory__C
    008d1da8 xdc_runtime_Error_Module__diagsEnabled__C
    008d1dac xdc_runtime_Error_Module__diagsIncluded__C
    008d1db0 xdc_runtime_Error_Module__diagsMask__C
    008d1e76 xdc_runtime_Error_Module__loggerDefined__C
    008d1db4 xdc_runtime_Error_Module__loggerFxn8__C
    008d1db8 xdc_runtime_Error_Module__loggerObj__C
    008cc4ac xdc_runtime_Error_Module__state__V
    008c6b40 xdc_runtime_Error_check__E
    008c6b40 xdc_runtime_Error_check__F
    008c6b80 xdc_runtime_Error_init__E
    008c6b80 xdc_runtime_Error_init__F
    008d1e78 xdc_runtime_Error_maxDepth__C
    008d1dbc xdc_runtime_Error_policy__C
    008c0e60 xdc_runtime_Error_print__E
    008c0e60 xdc_runtime_Error_print__F
    008d1dc0 xdc_runtime_Error_raiseHook__C
    008b3b40 xdc_runtime_Error_raiseX__E
    008b3b40 xdc_runtime_Error_raiseX__F
    008c6bc0 xdc_runtime_GateNull_Handle__label__S
    008d12e4 xdc_runtime_GateNull_Module__FXNS__C
    008cc4b0 xdc_runtime_GateNull_Module__root__V
    008d16d4 xdc_runtime_GateNull_Object__DESC__C
    008d18a8 xdc_runtime_GateNull_Object__PARAMS__C
    008c6c00 xdc_runtime_GateNull_Object__create__S
    008c6c40 xdc_runtime_GateNull_Object__delete__S
    008cd898 xdc_runtime_GateNull_Object__table__V
    008c8160 xdc_runtime_GateNull_enter__E
    008c8160 xdc_runtime_GateNull_enter__F
    008c8180 xdc_runtime_GateNull_leave__E
    008c8180 xdc_runtime_GateNull_leave__F
    008c81a0 xdc_runtime_GateNull_query__E
    008c81a0 xdc_runtime_GateNull_query__F
    008c81c0 xdc_runtime_Gate_enterSystem__E
    008c81c0 xdc_runtime_Gate_enterSystem__F
    008c6c80 xdc_runtime_Gate_leaveSystem__E
    008c6c80 xdc_runtime_Gate_leaveSystem__F
    008d1dc4 xdc_runtime_IGateProvider_Interface__BASE__C
    008d1dc8 xdc_runtime_IHeap_Interface__BASE__C
    008d1dcc xdc_runtime_IModule_Interface__BASE__C
    008d1dd0 xdc_runtime_Log_L_error__C
    008c7d60 xdc_runtime_Main_Module_GateProxy_query__E
    008d1dd4 xdc_runtime_Main_Module__diagsEnabled__C
    008d1dd8 xdc_runtime_Main_Module__diagsIncluded__C
    008d1ddc xdc_runtime_Main_Module__diagsMask__C
    008d1e7a xdc_runtime_Main_Module__id__C
    008d1e7c xdc_runtime_Main_Module__loggerDefined__C
    008d1de0 xdc_runtime_Main_Module__loggerFxn4__C
    008d1de4 xdc_runtime_Main_Module__loggerObj__C
    008c8220 xdc_runtime_Memory_HeapProxy_alloc__E
    008c8240 xdc_runtime_Memory_HeapProxy_free__E
    008d1e7e xdc_runtime_Memory_Module__id__C
    008cc4b8 xdc_runtime_Memory_Module__state__V
    008c0f40 xdc_runtime_Memory_alloc__E
    008c0f40 xdc_runtime_Memory_alloc__F
    008c5580 xdc_runtime_Memory_calloc__E
    008c5580 xdc_runtime_Memory_calloc__F
    008d1de8 xdc_runtime_Memory_defaultHeapInstance__C
    008c6cc0 xdc_runtime_Memory_free__E
    008c6cc0 xdc_runtime_Memory_free__F
    008c8260 xdc_runtime_Memory_getMaxDefaultTypeAlign__E
    008c8260 xdc_runtime_Memory_getMaxDefaultTypeAlign__F
    008c55e0 xdc_runtime_Memory_valloc__E
    008c55e0 xdc_runtime_Memory_valloc__F
    008cc4bc xdc_runtime_Registry_Module__state__V
    008c6d00 xdc_runtime_Registry_findById__E
    008c6d00 xdc_runtime_Registry_findById__F
    008c8280 xdc_runtime_Startup_Module__startupDone__S
    008cc4c4 xdc_runtime_Startup_Module__state__V
    00000001 xdc_runtime_Startup__EXECFXN__C
    00000001 xdc_runtime_Startup__RESETFXN__C
    008d1dec xdc_runtime_Startup_execImpl__C
    008bfd60 xdc_runtime_Startup_exec__E
    008bfd60 xdc_runtime_Startup_exec__F
    008c82a0 xdc_runtime_Startup_exec__I
    008d1938 xdc_runtime_Startup_firstFxns__A
    008d195c xdc_runtime_Startup_firstFxns__C
    008d1df0 xdc_runtime_Startup_lastFxns__A
    008d1964 xdc_runtime_Startup_lastFxns__C
    008d1df4 xdc_runtime_Startup_maxPasses__C
    008c82c0 xdc_runtime_Startup_reset__I
    008c82e0 xdc_runtime_Startup_rtsDone__E
    008c82e0 xdc_runtime_Startup_rtsDone__F
    008d1308 xdc_runtime_Startup_sfxnRts__A
    008d1df8 xdc_runtime_Startup_sfxnRts__C
    008d0de8 xdc_runtime_Startup_sfxnTab__A
    008d1dfc xdc_runtime_Startup_sfxnTab__C
    008b49a0 xdc_runtime_Startup_startMods__I
    008c5640 xdc_runtime_SysStd_abort__E
    008c5640 xdc_runtime_SysStd_abort__F
    008c8300 xdc_runtime_SysStd_exit__E
    008c8300 xdc_runtime_SysStd_exit__F
    008c8320 xdc_runtime_SysStd_putch__E
    008c8320 xdc_runtime_SysStd_putch__F
    008c8340 xdc_runtime_SysStd_ready__E
    008c8340 xdc_runtime_SysStd_ready__F
    008c8360 xdc_runtime_System_Module_GateProxy_enter__E
    008c8380 xdc_runtime_System_Module_GateProxy_leave__E
    008c7d60 xdc_runtime_System_Module_GateProxy_query__E
    008cd6c8 xdc_runtime_System_Module_State_0_atexitHandlers__A
    008d1e00 xdc_runtime_System_Module__gateObj__C
    008cc4cc xdc_runtime_System_Module__state__V
    008c83a0 xdc_runtime_System_Module_startup__E
    008c83a0 xdc_runtime_System_Module_startup__F
    008c5640 xdc_runtime_System_SupportProxy_abort__E
    008c8300 xdc_runtime_System_SupportProxy_exit__E
    008c8320 xdc_runtime_System_SupportProxy_putch__E
    008c8340 xdc_runtime_System_SupportProxy_ready__E
    008c6d40 xdc_runtime_System_abort__E
    008c6d40 xdc_runtime_System_abort__F
    008c6d80 xdc_runtime_System_aprintf__E
    008c56a0 xdc_runtime_System_aprintf_va__E
    008c56a0 xdc_runtime_System_aprintf_va__F
    008c4900 xdc_runtime_System_atexit__E
    008c4900 xdc_runtime_System_atexit__F
    008c56a0 xdc_runtime_System_avprintf__E
    008c56a0 xdc_runtime_System_avprintf__F
    0089de40 xdc_runtime_System_doPrint__I
    008c83c0 xdc_runtime_System_exit__E
    008c83c0 xdc_runtime_System_exit__F
    008d1e04 xdc_runtime_System_extendFxn__C
    008c26a0 xdc_runtime_System_formatNum__I
    008c83e0 xdc_runtime_System_lastFxn__I
    008d1e08 xdc_runtime_System_maxAtexitHandlers__C
    008b4c00 xdc_runtime_System_printfExtend__I
    008c6dc0 xdc_runtime_System_printf__E
    008c5700 xdc_runtime_System_printf_va__E
    008c5700 xdc_runtime_System_printf_va__F
    008c4980 xdc_runtime_System_rtsExit__I
    008c8400 xdc_runtime_System_sprintf_va__E
    008c8400 xdc_runtime_System_sprintf_va__F
    008c5700 xdc_runtime_System_vprintf__E
    008c5700 xdc_runtime_System_vprintf__F
    008c8400 xdc_runtime_System_vsprintf__E
    008c8400 xdc_runtime_System_vsprintf__F
    008cc4d8 xdc_runtime_Text_Module__state__V
    008d1e80 xdc_runtime_Text_charCnt__C
    008cd8a0 xdc_runtime_Text_charTab__A
    008d1e0c xdc_runtime_Text_charTab__C
    008c5760 xdc_runtime_Text_cordText__E
    008c5760 xdc_runtime_Text_cordText__F
    008d1e82 xdc_runtime_Text_isLoaded__C
    008d1e10 xdc_runtime_Text_nameEmpty__C
    008d1e14 xdc_runtime_Text_nameStatic__C
    008d1e18 xdc_runtime_Text_nameUnknown__C
    008d06d0 xdc_runtime_Text_nodeTab__A
    008d1e1c xdc_runtime_Text_nodeTab__C
    008c4a00 xdc_runtime_Text_printVisFxn__I
    008be940 xdc_runtime_Text_putLab__E
    008be940 xdc_runtime_Text_putLab__F
    008bfe60 xdc_runtime_Text_putMod__E
    008bfe60 xdc_runtime_Text_putMod__F
    008bbd00 xdc_runtime_Text_putSite__E
    008bbd00 xdc_runtime_Text_putSite__F
    008d1e84 xdc_runtime_Text_registryModsLastId__C
    008c6e00 xdc_runtime_Text_ropeText__E
    008c6e00 xdc_runtime_Text_ropeText__F
    008d1e86 xdc_runtime_Text_unnamedModsLastId__C
    008bff60 xdc_runtime_Text_visitRope2__I
    008d1e20 xdc_runtime_Text_visitRopeFxn__C
    008c8420 xdc_runtime_Text_visitRope__I
    008c4a80 xdc_runtime_Text_xprintf__I
    008c6e40 xdc_runtime_knl_GateThread_Handle__label__S
    008c6e80 xdc_runtime_knl_GateThread_Instance_finalize__F
    008c6ec0 xdc_runtime_knl_GateThread_Instance_init__F
    008d132c xdc_runtime_knl_GateThread_Module__FXNS__C
    008cc4e0 xdc_runtime_knl_GateThread_Module__root__V
    008c8440 xdc_runtime_knl_GateThread_Module__startupDone__S
    008d16f4 xdc_runtime_knl_GateThread_Object__DESC__C
    008d18c0 xdc_runtime_knl_GateThread_Object__PARAMS__C
    008c2760 xdc_runtime_knl_GateThread_Object__create__S
    008c6f00 xdc_runtime_knl_GateThread_Object__delete__S
    008c8460 xdc_runtime_knl_GateThread_Proxy_Object__create__S
    008c8480 xdc_runtime_knl_GateThread_Proxy_Object__delete__S
    008c84a0 xdc_runtime_knl_GateThread_Proxy_enter__E
    008c84c0 xdc_runtime_knl_GateThread_Proxy_leave__E
    008c7d80 xdc_runtime_knl_GateThread_Proxy_query__E
    008c84e0 xdc_runtime_knl_GateThread_enter__E
    008c84e0 xdc_runtime_knl_GateThread_enter__F
    008c8500 xdc_runtime_knl_GateThread_leave__E
    008c8500 xdc_runtime_knl_GateThread_leave__F
    008c7d80 xdc_runtime_knl_GateThread_query__E
    008c7d80 xdc_runtime_knl_GateThread_query__F
    0083e750 yPow
    008d3218 yPow_ll
    0083e738 y_AC_ll
    0081f340 y_corr_ll
    0083e728 y_est_ll
    0083e720 y_ll


    GLOBAL SYMBOLS: SORTED BY Symbol Address

    address name
    -------- ----
    00000000 _argsize
    00000001 __TI_args_main
    00000001 xdc_runtime_Startup__EXECFXN__C
    00000001 xdc_runtime_Startup__RESETFXN__C
    00001000 __TI_STACK_SIZE
    00800200 __ASM__
    00800270 __ISA__
    00800288 __PLAT__
    008002b0 __TARG__
    008002d8 __TRDR__
    0081e200 delay
    0081e210 corr_ll
    0081e3a0 x_corr_ll
    0081f340 y_corr_ll
    008202e0 corr
    00820470 abs_corr
    00820478 h_est
    008205b8 h_est_ll
    008206f8 scale
    00820700 stf_end
    00820708 ltf_begin
    00820710 x_del
    00820718 x_del_next
    00820720 x_ll
    0083e720 y_ll
    0083e728 y_est_ll
    0083e730 x_del_ll
    0083e738 y_AC_ll
    0083e750 yPow
    0083e758 xPow
    0083e760 CleanAdj
    00847760 Adj
    00850760 check
    00850780 localQueueName
    00850790 nextQueueName
    008507a0 random_val
    0086e7a0 preamble_vals
    008737a0 drvObj
    00874620 drvInstance
    00878e00 edma3DrvChBoundRes
    008816e0 ti_sdo_utils_NameServer_Module_State_0_nsRemoteHandle__A
    008816f0 ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A
    008896f0 ti_sysbios_knl_Task_Instance_State_0_hookEnv__A
    008896f8 userInstInitConfigArray
    0088b138 resMgrInstanceArray
    0088d9e0 edma3_dma_ch_max_val
    0088da00 edma3_link_ch_min_val
    0088da20 edma3_link_ch_max_val
    0088da40 edma3_qdma_ch_min_val
    0088da60 edma3_qdma_ch_max_val
    0088da80 edma3_log_ch_max_val
    0088daa0 resMgrObj
    00895440 RcvLog
    00895840 RcvTimeLog
    00895c40 SendTimeLog
    00896040 SendLog
    00896440 ti_sysbios_knl_Task_Instance_State_0_stack__A
    00897040 _tmpnams
    00897180 AC_SystemReset
    00897270 ICM_Send_Message_Local
    008972f0 loopback2Tx
    008985b4 AnalogueCancSetUp
    00898754 StartUp
    008987a4 Set_APU_Config
    008987a8 CallBackFunc
    008987c0 ti_sdo_ipc_GateMP_Instance_init__F
    00899980 main
    0089a8a0 EDMA3_DRV_requestChannel
    0089b4e0 EDMA3_RM_allocResource
    0089c060 ti_sdo_ipc_heaps_HeapMemMP_alloc__E
    0089cac0 ti_sdo_ipc_heaps_HeapMemMP_free__E
    0089d4a0 Ipc_attach
    0089de40 xdc_runtime_System_doPrint__I
    0089e7e0 ti_sdo_ipc_transports_TransportShm_Instance_init__F
    0089f100 ti_sdo_ipc_ListMP_Instance_init__F
    0089f9a0 ti_sdo_ipc_GateMP_Instance_finalize__F
    008a0200 MessageQ_put
    008a0a40 ti_sdo_ipc_heaps_HeapMemMP_Instance_init__F
    008a11c0 ti_sysbios_family_c64p_Exception_handler__I
    008a2060 Notify_registerEvent
    008a2760 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_init__F
    008a2e20 NameServer_add
    008a34c0 ti_sysbios_heaps_HeapMem_free__E
    008a3b20 Notify_sendEvent
    008a4140 ti_sysbios_heaps_HeapMem_alloc__E
    008a4760 EDMA3_RM_open
    008a4d40 Notify_registerEventSingle
    008a5320 ListMP_getHead
    008a58e0 Notify_unregisterEventSingle
    008a5ea0 __c6xabi_divd
    008a6a20 ti_sdo_ipc_SharedRegion_start__E
    008a6a20 ti_sdo_ipc_SharedRegion_start__F
    008a6fe0 ti_sysbios_timers_timer64_Timer_Module_startup__E
    008a6fe0 ti_sysbios_timers_timer64_Timer_Module_startup__F
    008a75a0 ti_sdo_ipc_nsremote_NameServerRemoteNotify_get__E
    008a75a0 ti_sdo_ipc_nsremote_NameServerRemoteNotify_get__F
    008a7b20 ti_sdo_ipc_transports_TransportShm_put__E
    008a80a0 ti_sdo_ipc_Ipc_procSyncStart__I
    008a85e0 TRxDataInterface_Initialize
    008a8614 Send_CPRIData
    008a88b0 Recv_CPRIData
    008a8ae0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Instance_init__F
    008a8fc0 ti_sdo_ipc_gates_GatePeterson_Instance_init__F
    008a9460 _printfi
    008a9d20 ti_sdo_ipc_GateMP_setRegion0Reserved__E
    008a9d20 ti_sdo_ipc_GateMP_setRegion0Reserved__F
    008aa180 ti_sdo_ipc_Ipc_procSyncFinish__I
    008aa5e0 ListMP_putTail
    008aae60 ti_sdo_ipc_heaps_HeapMemMP_getStats__E
    008ab2a0 ti_sdo_ipc_heaps_HeapMemMP_postInit__I
    008ab6e0 EDMA3_RM_freeResource
    008abb00 requestChannel
    008abb20 freeChannel
    008abb50 edma3_xfer
    008abf00 ti_sdo_ipc_Notify_Instance_init__F
    008ac300 ti_sysbios_knl_Semaphore_pend__E
    008ac700 ti_sdo_ipc_SharedRegion_reserveMemory__E
    008ac700 ti_sdo_ipc_SharedRegion_reserveMemory__F
    008acac0 ti_sysbios_knl_Task_setPri__E
    008ace80 fputs
    008ad220 HeapMemMP_sharedMemReq
    008ad5a0 EDMA3_RM_create
    008ad8e0 GateMP_sharedMemReq
    008adc20 ti_sdo_ipc_nsremote_NameServerRemoteNotify_swiFxn__I
    008ae280 unregisterEdma3Interrupts
    008ae34c registerEdma3Interrupts
    008ae5a0 EDMA3_DRV_freeChannel
    008ae8a0 GateMP_openByAddr
    008aeba0 ti_sdo_ipc_transports_TransportShm_openByAddr__E
    008aeba0 ti_sdo_ipc_transports_TransportShm_openByAddr__F
    008aeea0 ti_sysbios_family_c64p_Hwi_dispatchC__I
    008af2ec ICM_Send_Message
    008af350 ICM_Register_Callback
    008af358 ICM_Initialize
    008af480 SharedRegion_getEntry
    008af760 SharedRegion_getPtr
    008afd20 ti_sysbios_gates_GateMutexPri_enter__E
    008b0000 ti_sysbios_knl_Task_Module_startup__E
    008b0000 ti_sysbios_knl_Task_Module_startup__F
    008b02e0 EDMA3_DRV_open
    008b05a0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_isr__I
    008b0860 Ipc_start
    008b0b00 NameServer_getLocal
    008b1580 ti_sysbios_family_c66_tci66xx_CpIntc_Module_startup__E
    008b1580 ti_sysbios_family_c66_tci66xx_CpIntc_Module_startup__F
    008b1820 ti_sysbios_knl_Clock_workFunc__E
    008b1ac0 EDMA3_DRV_create
    008b1d40 EDMA3_DRV_disableTransfer
    008b20a0 ERR_Send_ErrorMsg
    008b20e8 ERR_Initialize
    008b21c8 ERR_Display
    008b2240 SharedRegion_getSRPtr
    008b24c0 __c6xabi_divf
    008b2ec0 edma3OsSemTake
    008b2ee8 edma3OsSemGive
    008b2f08 edma3OsSemDelete
    008b2f2c edma3OsSemCreate
    008b2f88 edma3OsProtectExit
    008b3018 edma3OsProtectEntry
    008b30d8 Edma3_CacheInvalidate
    008b3100 Edma3_CacheFlush
    008b3140 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_sharedMemReq__E
    008b3140 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_sharedMemReq__F
    008b33c0 ti_sysbios_knl_Clock_Instance_init__F
    008b3640 ti_sysbios_knl_Task_exit__E
    008b38c0 xdc_runtime_Core_createObject__I
    008b3b40 xdc_runtime_Error_raiseX__E
    008b3b40 xdc_runtime_Error_raiseX__F
    008b3dc0 EDMA3_DRV_enableTransfer
    008b4020 ListMP_sharedMemReq
    008b4280 ti_sdo_ipc_ListMP_Instance_finalize__F
    008b44e0 ti_sdo_ipc_heaps_HeapMemMP_Instance_finalize__F
    008b4740 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_disableEvent__E
    008b49a0 xdc_runtime_Startup_startMods__I
    008b4c00 xdc_runtime_System_printfExtend__I
    008b4e60 __c6xabi_divull
    008b5520 ti_sysbios_family_c64p_Exception_internalHandler__I
    008b5760 ti_sysbios_knl_Semaphore_post__E
    008b5bc0 fputc
    008b5de0 ti_sysbios_family_c64p_Hwi_reconfig__E
    008b6000 ti_sysbios_knl_Swi_run__I
    008b6220 ti_sysbios_knl_Task_schedule__I
    008b6440 ti_sysbios_knl_Task_startup__E
    008b6660 GateMP_enter
    008b6860 GateMP_leave
    008b6a60 ListMP_openByAddr
    008b6e60 ti_sysbios_family_c64p_Hwi_dispatchAlways
    008b7260 setvbuf
    008b7460 ti_sdo_ipc_family_c647x_MultiProcSetup_init__I
    008b7660 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_sendEvent__E
    008b7860 ti_sdo_ipc_transports_TransportShm_Instance_finalize__F
    008b7a60 ti_sdo_ipc_GateMP_attach__E
    008b7a60 ti_sdo_ipc_GateMP_attach__F
    008b7c40 ti_sdo_ipc_GateMP_getFreeResource__I
    008b7e20 ti_sysbios_knl_Task_postInit__I
    008b8000 ti_sysbios_timers_timer64_Timer_getFreq__E
    008b81e0 EDMA3_RM_close
    008b83a0 HeapMemMP_openByAddr
    008b8720 edma3init
    008b8864 edma3deinit
    008b88e0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_registerEvent__E
    008b8aa0 ti_sysbios_knl_Swi_Instance_init__F
    008b8c60 ti_sysbios_knl_Task_checkStacks__E
    008b8e20 ti_sysbios_timers_timer64_Timer_setPeriodMicroSecs__E
    008b8fe0 HOSTrename
    008b9180 SharedRegion_getCacheLineSize
    008b9320 SharedRegion_getHeap
    008b94c0 SharedRegion_isCacheEnabled
    008b9660 __c6xabi_divul
    008b9800 log
    008b99a0 ti_sdo_ipc_GateMP_openRegion0Reserved__E
    008b99a0 ti_sdo_ipc_GateMP_openRegion0Reserved__F
    008b9b40 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_enableEvent__E
    008b9ce0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_unregisterEvent__E
    008b9e80 ti_sdo_ipc_nsremote_NameServerRemoteNotify_attach__E
    008b9e80 ti_sdo_utils_NameServer_SetupProxy_attach__E
    008ba020 ti_sysbios_family_c66_tci66xx_CpIntc_dispatch__E
    008ba020 ti_sysbios_family_c66_tci66xx_CpIntc_dispatch__F
    008ba1c0 ti_sysbios_gates_GateMutex_enter__E
    008ba360 ti_sysbios_timers_timer64_Timer_start__E
    008ba500 EDMA3_RM_registerTccCb
    008ba680 MultiProc_setLocalId
    008ba800 NameServer_getHandle
    008ba980 Notify_intLineRegistered
    008bae00 frexp
    008baf80 ti_sysbios_family_c64p_Exception_dispatch__E
    008bb100 ti_sdo_ipc_MessageQ_registerTransport__E
    008bb100 ti_sdo_ipc_MessageQ_registerTransport__F
    008bb280 ti_sdo_ipc_Notify_Module_startup__E
    008bb280 ti_sdo_ipc_Notify_Module_startup__F
    008bb400 ti_sdo_ipc_gates_GatePeterson_enter__E
    008bb580 ti_sdo_utils_NameServer_Module_startup__E
    008bb580 ti_sdo_utils_NameServer_Module_startup__F
    008bb700 ti_sysbios_heaps_HeapBuf_Module_startup__E
    008bb700 ti_sysbios_heaps_HeapBuf_Module_startup__F
    008bb880 ti_sysbios_heaps_HeapMem_Instance_init__F
    008bba00 ti_sysbios_knl_Swi_schedule__I
    008bbb80 ti_sysbios_knl_Task_unblockI__E
    008bbd00 xdc_runtime_Text_putSite__E
    008bbd00 xdc_runtime_Text_putSite__F
    008bbe80 EDMA3_DRV_close
    008bbfe0 EDMA3_RM_unregisterTccCb
    008bc2a0 ti_sdo_ipc_GateMP_createLocal__E
    008bc2a0 ti_sdo_ipc_GateMP_createLocal__F
    008bc400 ti_sdo_ipc_MessageQ_unregisterTransport__E
    008bc400 ti_sdo_ipc_MessageQ_unregisterTransport__F
    008bc560 ti_sdo_ipc_gates_GateHWSem_Instance_init__F
    008bc6c0 ti_sdo_ipc_transports_TransportShm_sharedMemReq__E
    008bc6c0 ti_sdo_ipc_transports_TransportShm_sharedMemReq__F
    008bc820 ti_sdo_utils_NameServer_isRegistered__E
    008bc980 ti_sdo_utils_NameServer_registerRemoteDriver__E
    008bcae0 ti_sdo_utils_NameServer_unregisterRemoteDriver__E
    008bcc40 EDMA3_DRV_setPaRAM
    008bcd80 GateMP_close
    008bcec0 Notify_attach
    008bd000 _auto_init_elf
    008bd280 transer_ByEDMA
    008bd2e8 init_data_transfer
    008bd340 copy_data_ByEDMA
    008bd500 ti_sdo_ipc_Notify_exec__E
    008bd500 ti_sdo_ipc_Notify_exec__F
    008bd640 ti_sysbios_family_c64p_Hwi_Module_startup__E
    008bd640 ti_sysbios_family_c64p_Hwi_Module_startup__F
    008bd780 ti_sysbios_family_c66_Cache_Module_startup__E
    008bd780 ti_sysbios_family_c66_Cache_Module_startup__F
    008bd8c0 ti_sysbios_gates_GateSwi_enter__E
    008bda00 ti_sysbios_knl_Clock_Instance_finalize__F
    008bdb40 ti_sysbios_knl_Semaphore_Instance_init__F
    008bdc80 ti_sysbios_knl_Swi_post__E
    008bddc0 ti_sysbios_knl_Task_blockI__E
    008bdf00 ti_sysbios_knl_Task_yield__E
    008be040 EDMA3_DRV_clearErrorBits
    008be160 _closefile
    008be3a0 fseek
    008be5e0 ti_sdo_ipc_MessageQ_Module_startup__E
    008be5e0 ti_sdo_ipc_MessageQ_Module_startup__F
    008be700 ti_sdo_ipc_family_c647x_Interrupt_intRegister__E
    008be700 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intRegister__E
    008be820 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_finalize__F
    008be940 xdc_runtime_Text_putLab__E
    008be940 xdc_runtime_Text_putLab__F
    008bea60 HOSTlseek
    008beb60 _wrt_ok
    008bec60 callback2
    008bec90 callback1
    008bed60 fprintf
    008bef60 ti_sdo_ipc_GateMP_start__E
    008bef60 ti_sdo_ipc_GateMP_start__F
    008bf060 ti_sdo_ipc_Notify_Instance_finalize__F
    008bf160 ti_sdo_ipc_SharedRegion_attach__E
    008bf160 ti_sdo_ipc_SharedRegion_attach__F
    008bf260 ti_sdo_ipc_SharedRegion_clearReservedMemory__E
    008bf260 ti_sdo_ipc_SharedRegion_clearReservedMemory__F
    008bf360 ti_sdo_ipc_family_c647x_Interrupt_Module_startup__E
    008bf360 ti_sdo_ipc_family_c647x_Interrupt_Module_startup__F
    008bf460 ti_sdo_ipc_gates_GateHWSem_Module_startup__E
    008bf460 ti_sdo_ipc_gates_GateHWSem_Module_startup__F
    008bf560 ti_sdo_ipc_gates_GateMPSupportNull_enter__E
    008bf660 ti_sdo_ipc_gates_GateMPSupportNull_leave__E
    008bf760 ti_sdo_ipc_MessageQ_SetupTransportProxy_attach__E
    008bf760 ti_sdo_ipc_transports_TransportShmSetup_attach__E
    008bf860 ti_sysbios_family_c64p_EventCombiner_dispatch__E
    008bf860 ti_sysbios_family_c64p_EventCombiner_dispatch__F
    008bf960 ti_sysbios_gates_GateMutexPri_leave__E
    008bfa60 ti_sysbios_knl_Clock_startI__E
    008bfb60 ti_sysbios_knl_Swi_restoreHwi__E
    008bfc60 xdc_runtime_Core_deleteObject__I
    008bfd60 xdc_runtime_Startup_exec__E
    008bfd60 xdc_runtime_Startup_exec__F
    008bfe60 xdc_runtime_Text_putMod__E
    008bfe60 xdc_runtime_Text_putMod__F
    008bff60 xdc_runtime_Text_visitRope2__I
    008c0060 EDMA3_DRV_delete
    008c0140 HOSTopen
    008c0300 atoi
    008c03e0 close
    008c04c0 __TI_zero_init
    008c05a0 fflush
    008c0680 gpio_Init
    008c06b4 gpio_SetOutput
    008c06f8 gpio_SetInput
    008c0760 ltoa
    008c0840 memset
    008c0920 ti_sdo_ipc_Notify_SetupProxy_attach__E
    008c0920 ti_sdo_ipc_family_c647x_NotifySetup_attach__E
    008c0a00 ti_sdo_ipc_gates_GateHWSem_enter__E
    008c0ae0 ti_sysbios_family_c64p_Hwi_Instance_finalize__F
    008c0bc0 ti_sysbios_family_c64p_Hwi_Instance_init__F
    008c0ca0 ti_sysbios_knl_Clock_start__E
    008c0d80 ti_sysbios_hal_Timer_TimerProxy_startup__E
    008c0d80 ti_sysbios_hal_Timer_startup__E
    008c0d80 ti_sysbios_timers_timer64_Timer_startup__E
    008c0e60 xdc_runtime_Error_print__E
    008c0e60 xdc_runtime_Error_print__F
    008c0f40 xdc_runtime_Memory_alloc__E
    008c0f40 xdc_runtime_Memory_alloc__F
    008c1020 EDMA3_RM_delete
    008c10e0 HOSTread
    008c11a0 HOSTunlink
    008c1260 HOSTwrite
    008c1320 HeapMemMP_create
    008c13e0 ListMP_create
    008c1560 __cxa_finalize
    008c1620 __c6xabi_divu
    008c1620 __divu
    008c16e0 _doflush
    008c17a0 exit
    008c1860 ti_sdo_ipc_GateMP_Object__create__S
    008c1920 ti_sdo_ipc_GateMP_getRegion0ReservedSize__E
    008c1920 ti_sdo_ipc_GateMP_getRegion0ReservedSize__F
    008c19e0 ti_sdo_ipc_ListMP_Object__create__S
    008c1aa0 ti_sdo_ipc_Notify_Object__create__S
    008c1b60 ti_sdo_ipc_Notify_execMany__I
    008c1c20 ti_sdo_ipc_family_c647x_Interrupt_intShmStub__I
    008c1ce0 ti_sdo_ipc_gates_GatePeterson_Object__create__S
    008c1da0 ti_sdo_ipc_heaps_HeapMemMP_Object__create__S
    008c1e60 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__create__S
    008c1f20 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__create__S
    008c1fe0 ti_sdo_ipc_transports_TransportShm_Object__create__S
    008c20a0 ti_sysbios_BIOS_errorRaiseHook__I
    008c2160 ti_sysbios_family_c64p_Hwi_Object__create__S
    008c2220 ti_sysbios_gates_GateAll_leave__E
    008c22e0 ti_sysbios_heaps_HeapMem_getStats__E
    008c23a0 ti_sysbios_knl_Clock_logTick__E
    008c2460 ti_sysbios_knl_Swi_Instance_finalize__F
    008c2520 ti_sysbios_knl_Swi_Object__create__S
    008c25e0 ti_sysbios_timers_timer64_Timer_stop__E
    008c26a0 xdc_runtime_System_formatNum__I
    008c2760 xdc_runtime_knl_GateThread_Object__create__S
    008c2820 HOSTclose
    008c28c0 HOSTtime
    008c2960 __c6xabi_remu
    008c2960 __remu
    008c2a00 _c_int00
    008c2aa0 _cleanup
    008c2d20 ti_sysbios_family_c64p_Hwi_plug__E
    008c2e60 lseek
    008c2f00 memcpy
    008c2fa0 modf
    008c3040 ti_sdo_ipc_family_c647x_Interrupt_intUnregister__E
    008c3040 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intUnregister__E
    008c30e0 ti_sdo_ipc_gates_GatePeterson_leave__E
    008c3180 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Instance_finalize__F
    008c3220 ti_sysbios_heaps_HeapMem_init__I
    008c32c0 write
    008c3360 xdc_runtime_Assert_raise__I
    008c3400 __c6xabi_fixdu
    008c3480 __c6xabi_llshl
    008c3500 ti_sysbios_family_c62_TaskSupport_swap__E
    008c3500 ti_sysbios_knl_Task_SupportProxy_swap__E
    008c3580 edma3MemCpy
    008c3600 malloc
    008c3680 rand
    008c3700 readmsg
    008c3780 ti_sdo_ipc_gates_GateHWSem_Object__create__S
    008c3800 ti_sdo_ipc_gates_GateMPSupportNull_Object__create__S
    008c3880 ti_sdo_ipc_nsremote_NameServerRemoteNotify_detach__E
    008c3880 ti_sdo_utils_NameServer_SetupProxy_detach__E
    008c3900 ti_sdo_ipc_transports_TransportShm_swiFxn__I
    008c3980 ti_sdo_utils_List_Object__create__S
    008c3a00 ti_sysbios_family_c62_TaskSupport_start__E
    008c3a00 ti_sysbios_knl_Task_SupportProxy_start__E
    008c3a80 ti_sysbios_family_c64p_Exception_Module_startup__E
    008c3a80 ti_sysbios_family_c64p_Exception_Module_startup__F
    008c3b00 ti_sysbios_family_c64p_Hwi_eventMap__E
    008c3b80 ti_sysbios_family_c66_Cache_invL1pAll__E
    008c3c00 ti_sysbios_family_c66_tci66xx_CpIntc_getEventId__E
    008c3c00 ti_sysbios_family_c66_tci66xx_CpIntc_getEventId__F
    008c3c80 ti_sysbios_family_c66_tci66xx_CpIntc_mapSysIntToHostInt__E
    008c3c80 ti_sysbios_family_c66_tci66xx_CpIntc_mapSysIntToHostInt__F
    008c3d00 ti_sysbios_gates_GateAll_Object__create__S
    008c3d80 ti_sysbios_gates_GateHwi_Object__create__S
    008c3e00 ti_sysbios_gates_GateMutexPri_Object__create__S
    008c3e80 ti_sysbios_gates_GateMutex_Object__create__S
    008c3f00 ti_sysbios_gates_GateSwi_Object__create__S
    008c3f80 ti_sysbios_gates_GateSwi_leave__E
    008c4000 ti_sysbios_hal_Hwi_checkStack
    008c4080 ti_sysbios_heaps_HeapMem_Object__create__S
    008c4100 ti_sysbios_knl_Clock_Module_startup__E
    008c4100 ti_sysbios_knl_Clock_Module_startup__F
    008c4180 ti_sysbios_knl_Clock_Object__create__S
    008c4200 ti_sysbios_knl_Clock_doTick__I
    008c4280 ti_sysbios_knl_Clock_getTicks__E
    008c4300 ti_sysbios_knl_Idle_loop__E
    008c4380 ti_sysbios_knl_Queue_Object__create__S
    008c4400 ti_sysbios_knl_Semaphore_Object__create__S
    008c4480 ti_sysbios_knl_Semaphore_pendTimeout__I
    008c4500 ti_sysbios_knl_Swi_startup__E
    008c4580 ti_sysbios_knl_Task_restore__E
    008c4600 ti_sysbios_timers_timer64_Timer_getCount__E
    008c4600 ti_sysbios_timers_timer64_Timer_getExpiredCounts__E
    008c4680 ti_sysbios_timers_timer64_Timer_getPeriod__E
    008c4700 ti_sysbios_xdcruntime_GateThreadSupport_Object__create__S
    008c4780 remove
    008c4780 unlink
    008c4800 xdc_runtime_Core_assignLabel__I
    008c4880 xdc_runtime_Core_assignParams__I
    008c4900 xdc_runtime_System_atexit__E
    008c4900 xdc_runtime_System_atexit__F
    008c4980 xdc_runtime_System_rtsExit__I
    008c4a00 xdc_runtime_Text_printVisFxn__I
    008c4a80 xdc_runtime_Text_xprintf__I
    008c4b00 GateMP_Params_init
    008c4b60 HeapMemMP_Params_init
    008c4bc0 __c6xabi_abort_msg
    008c4c20 __c6xabi_frcmpyd_div
    008c4c80 __c6xabi_llshru
    008c4ce0 _subcull
    008c4d40 isGblConfigRequired
    008c4d54 getGlobalAddr
    008c4d78 determineProcId
    008c4da0 memccpy
    008c4e00 srand
    008c4e60 ti_sdo_ipc_Notify_SetupProxy_sharedMemReq__E
    008c4e60 ti_sdo_ipc_family_c647x_NotifySetup_sharedMemReq__E
    008c4ec0 ti_sdo_ipc_gates_GateHWSem_leave__E
    008c4f20 ti_sdo_ipc_gates_GatePeterson_Instance_finalize__F
    008c4f80 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_sharedMemReq__E
    008c4f80 ti_sdo_ipc_gates_GatePeterson_sharedMemReq__E
    008c4fe0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_setNotifyHandle__E
    008c5040 ti_sdo_ipc_MessageQ_SetupTransportProxy_sharedMemReq__E
    008c5040 ti_sdo_ipc_transports_TransportShmSetup_sharedMemReq__E
    008c50a0 ti_sysbios_BIOS_exitFunc__I
    008c5100 ti_sysbios_BIOS_registerRTSLock__I
    008c5160 ti_sysbios_family_c64p_EventCombiner_Module_startup__E
    008c5160 ti_sysbios_family_c64p_EventCombiner_Module_startup__F
    008c51c0 ti_sysbios_family_c64p_EventCombiner_dispatchPlug__E
    008c51c0 ti_sysbios_family_c64p_EventCombiner_dispatchPlug__F
    008c5220 ti_sysbios_family_c64p_EventCombiner_unused__E
    008c5220 ti_sysbios_family_c64p_EventCombiner_unused__F
    008c5280 ti_sysbios_family_c66_tci66xx_CpIntc_unused__E
    008c5280 ti_sysbios_family_c66_tci66xx_CpIntc_unused__F
    008c52e0 ti_sysbios_gates_GateAll_enter__E
    008c5340 ti_sysbios_gates_GateMutex_Instance_init__F
    008c53a0 ti_sysbios_hal_Hwi_initStack
    008c5400 ti_sysbios_knl_Swi_Module_startup__E
    008c5400 ti_sysbios_knl_Swi_Module_startup__F
    008c5460 ti_sysbios_knl_Task_allBlockedFunction__I
    008c54c0 ti_sysbios_knl_Task_enter__I
    008c5520 writemsg
    008c5578 C$$IO$$
    008c5580 xdc_runtime_Memory_calloc__E
    008c5580 xdc_runtime_Memory_calloc__F
    008c55e0 xdc_runtime_Memory_valloc__E
    008c55e0 xdc_runtime_Memory_valloc__F
    008c5640 xdc_runtime_SysStd_abort__E
    008c5640 xdc_runtime_SysStd_abort__F
    008c5640 xdc_runtime_System_SupportProxy_abort__E
    008c56a0 xdc_runtime_System_aprintf_va__E
    008c56a0 xdc_runtime_System_aprintf_va__F
    008c56a0 xdc_runtime_System_avprintf__E
    008c56a0 xdc_runtime_System_avprintf__F
    008c5700 xdc_runtime_System_printf_va__E
    008c5700 xdc_runtime_System_printf_va__F
    008c5700 xdc_runtime_System_vprintf__E
    008c5700 xdc_runtime_System_vprintf__F
    008c5760 xdc_runtime_Text_cordText__E
    008c5760 xdc_runtime_Text_cordText__F
    008c57c0 __c6xabi_isinf
    008c5840 _args_main
    008c5880 ti_sysbios_family_c62_TaskSupport_buildTaskStack
    008c58c0 ti_sysbios_family_xxx_Hwi_switchToIsrStack
    008c5900 edma3ParamCpy
    008c5940 free
    008c5980 log10
    008c5a00 ti_sdo_ipc_GateMP_Object__delete__S
    008c5a40 ti_sdo_ipc_ListMP_Object__delete__S
    008c5a80 ti_sdo_ipc_family_c647x_Interrupt_intClear__E
    008c5a80 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intClear__E
    008c5ac0 ti_sdo_ipc_family_c647x_Interrupt_intSend__E
    008c5ac0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intSend__E
    008c5b00 ti_sdo_ipc_gates_GateHWSem_Handle__label__S
    008c5b40 ti_sdo_ipc_gates_GateHWSem_Object__delete__S
    008c5b80 ti_sdo_ipc_gates_GateMPSupportNull_Handle__label__S
    008c5bc0 ti_sdo_ipc_gates_GateMPSupportNull_Object__delete__S
    008c5c00 ti_sdo_ipc_gates_GatePeterson_Handle__label__S
    008c5c40 ti_sdo_ipc_gates_GatePeterson_Object__delete__S
    008c5c80 ti_sdo_ipc_heaps_HeapMemMP_Handle__label__S
    008c5cc0 ti_sdo_ipc_heaps_HeapMemMP_Object__delete__S
    008c5d00 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Handle__label__S
    008c5d40 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__delete__S
    008c5d80 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_disable__E
    008c5dc0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_enable__E
    008c5e00 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Handle__label__S
    008c5e40 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__delete__S
    008c5e80 ti_sdo_ipc_nsremote_NameServerRemoteNotify_sharedMemReq__E
    008c5e80 ti_sdo_utils_NameServer_SetupProxy_sharedMemReq__E
    008c5ec0 ti_sdo_ipc_transports_TransportShm_Handle__label__S
    008c5f00 ti_sdo_ipc_transports_TransportShm_Object__delete__S
    008c5f40 ti_sdo_utils_List_Object__destruct__S
    008c5f80 ti_sdo_utils_NameServer_Module__startupDone__F
    008c5f80 ti_sdo_utils_NameServer_Module__startupDone__S
    008c5fc0 ti_sdo_utils_NameServer_Object__get__S
    008c6000 ti_sysbios_BIOS_startFunc__I
    008c6040 ti_sysbios_BIOS_start__E
    008c6080 ti_sysbios_family_c64p_EventCombiner_disableEvent__E
    008c6080 ti_sysbios_family_c64p_EventCombiner_disableEvent__F
    008c60c0 ti_sysbios_family_c64p_EventCombiner_enableEvent__E
    008c60c0 ti_sysbios_family_c64p_EventCombiner_enableEvent__F
    008c6100 ti_sysbios_family_c64p_Hwi_Module__startupDone__F
    008c6100 ti_sysbios_family_c64p_Hwi_Module__startupDone__S
    008c6140 ti_sysbios_family_c64p_Hwi_Object__delete__S
    008c6180 ti_sysbios_family_c64p_Hwi_disableInterrupt__E
    008c6180 ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E
    008c6180 ti_sysbios_hal_Hwi_disableInterrupt__E
    008c61c0 ti_sysbios_family_c64p_Hwi_enableInterrupt__E
    008c61c0 ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E
    008c61c0 ti_sysbios_hal_Hwi_enableInterrupt__E
    008c6200 ti_sysbios_family_c66_tci66xx_CpIntc_dispatchPlug__E
    008c6200 ti_sysbios_family_c66_tci66xx_CpIntc_dispatchPlug__F
    008c6240 ti_sysbios_family_c66_tci66xx_CpIntc_enableAllHostInts__E
    008c6240 ti_sysbios_family_c66_tci66xx_CpIntc_enableAllHostInts__F
    008c6280 ti_sysbios_gates_GateAll_Handle__label__S
    008c62c0 ti_sysbios_gates_GateAll_Object__delete__S
    008c6300 ti_sysbios_gates_GateHwi_Handle__label__S
    008c6340 ti_sysbios_gates_GateHwi_Object__delete__S
    008c6380 ti_sysbios_gates_GateMutexPri_Handle__label__S
    008c63c0 ti_sysbios_gates_GateMutexPri_Instance_finalize__F
    008c6400 ti_sysbios_gates_GateMutexPri_Instance_init__F
    008c6440 ti_sysbios_gates_GateMutexPri_Object__delete__S
    008c6480 ti_sysbios_gates_GateMutexPri_Object__destruct__S
    008c64c0 ti_sysbios_gates_GateMutex_Handle__label__S
    008c6500 ti_sysbios_gates_GateMutex_Instance_finalize__F
    008c6540 ti_sysbios_gates_GateMutex_Object__delete__S
    008c6580 ti_sysbios_gates_GateMutex_leave__E
    008c65c0 ti_sysbios_gates_GateSwi_Handle__label__S
    008c6600 ti_sysbios_gates_GateSwi_Object__delete__S
    008c6640 ti_sysbios_hal_Timer_Module__startupDone__F
    008c6640 ti_sysbios_hal_Timer_Module__startupDone__S
    008c6680 ti_sysbios_heaps_HeapMem_Handle__label__S
    008c66c0 ti_sysbios_heaps_HeapMem_Object__delete__S
    008c6700 ti_sysbios_heaps_HeapMem_Object__get__S
    008c6740 ti_sysbios_knl_Clock_Object__destruct__S
    008c6780 ti_sysbios_knl_Queue_Object__destruct__S
    008c67c0 ti_sysbios_knl_Semaphore_Instance_finalize__F
    008c6800 ti_sysbios_knl_Semaphore_Object__delete__S
    008c6840 ti_sysbios_knl_Semaphore_Object__destruct__S
    008c6880 ti_sysbios_knl_Swi_Object__destruct__S
    008c68c0 ti_sysbios_knl_Swi_Object__get__S
    008c6900 ti_sysbios_knl_Swi_inc__E
    008c6940 ti_sysbios_knl_Task_Object__get__S
    008c6980 ti_sysbios_timers_timer64_Timer_Module__startupDone__F
    008c6980 ti_sysbios_timers_timer64_Timer_Module__startupDone__S
    008c69c0 ti_sysbios_xdcruntime_GateThreadSupport_Instance_finalize__F
    008c6a00 ti_sysbios_xdcruntime_GateThreadSupport_Instance_init__F
    008c6a40 ti_sysbios_xdcruntime_GateThreadSupport_Object__delete__S
    008c6a80 ti_sysbios_xdcruntime_GateThreadSupport_enter__E
    008c6a80 ti_sysbios_xdcruntime_GateThreadSupport_enter__F
    008c6ac0 ti_sysbios_xdcruntime_GateThreadSupport_leave__E
    008c6ac0 ti_sysbios_xdcruntime_GateThreadSupport_leave__F
    008c6b00 time
    008c6b40 xdc_runtime_Error_check__E
    008c6b40 xdc_runtime_Error_check__F
    008c6b80 xdc_runtime_Error_init__E
    008c6b80 xdc_runtime_Error_init__F
    008c6bc0 xdc_runtime_GateNull_Handle__label__S
    008c6c00 xdc_runtime_GateNull_Object__create__S
    008c6c40 xdc_runtime_GateNull_Object__delete__S
    008c6c80 xdc_runtime_Gate_leaveSystem__E
    008c6c80 xdc_runtime_Gate_leaveSystem__F
    008c6cc0 xdc_runtime_Memory_free__E
    008c6cc0 xdc_runtime_Memory_free__F
    008c6d00 xdc_runtime_Registry_findById__E
    008c6d00 xdc_runtime_Registry_findById__F
    008c6d40 xdc_runtime_System_abort__E
    008c6d40 xdc_runtime_System_abort__F
    008c6d80 xdc_runtime_System_aprintf__E
    008c6dc0 xdc_runtime_System_printf__E
    008c6e00 xdc_runtime_Text_ropeText__E
    008c6e00 xdc_runtime_Text_ropeText__F
    008c6e40 xdc_runtime_knl_GateThread_Handle__label__S
    008c6e80 xdc_runtime_knl_GateThread_Instance_finalize__F
    008c6ec0 xdc_runtime_knl_GateThread_Instance_init__F
    008c6f00 xdc_runtime_knl_GateThread_Object__delete__S
    008c6f40 CSL_GPIO_open
    008c6f60 MultiProc_getNumProcessors
    008c6f80 MultiProc_self
    008c6fa0 __c6xabi_errno_addr
    008c6fc0 __c6xabi_negll
    008c6fe0 __cxa_atexit
    008c7000 __cxa_ia64_exit
    008c7020 __c6xabi_pop_rts
    008c7020 __pop_rts
    008c7040 __c6xabi_push_rts
    008c7040 __push_rts
    008c7060 __xdc__init
    008c7080 _nop
    008c70e0 _register_lock
    008c7100 _register_unlock
    008c7120 ti_sysbios_family_c62_TaskSupport_glue
    008c7140 ti_sysbios_family_xxx_Hwi_switchToTaskStack
    008c7160 C$$EXIT
    008c7160 abort
    008c7180 atexit
    008c71a0 CSL_tscEnable
    008c71a8 CSL_tscRead
    008c71c0 __TI_decompress_none
    008c71e0 __TI_decompress_rle24
    008c7200 edma3MemZero
    008c7220 lisrEdma3CCErrHandler0
    008c7240 lisrEdma3ComplHandler0
    008c7260 lisrEdma3TC0ErrHandler0
    008c7280 lisrEdma3TC1ErrHandler0
    008c72a0 lisrEdma3TC2ErrHandler0
    008c72c0 lisrEdma3TC3ErrHandler0
    008c72e0 lisrEdma3TC4ErrHandler0
    008c7300 lisrEdma3TC5ErrHandler0
    008c7320 lisrEdma3TC6ErrHandler0
    008c7340 lisrEdma3TC7ErrHandler0
    008c7380 putc
    008c73a0 putchar
    008c73c0 ti_sdo_ipc_GateMP_Params__init__S
    008c73e0 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Object__create__S
    008c7400 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Object__delete__S
    008c7420 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Params__init__S
    008c7440 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Proxy__abstract__S
    008c7460 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Proxy__delegate__S
    008c7480 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Object__create__S
    008c74a0 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Object__delete__S
    008c74c0 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Params__init__S
    008c74e0 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Proxy__abstract__S
    008c7500 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Proxy__delegate__S
    008c7520 ti_sdo_ipc_GateMP_RemoteSystemProxy_Object__create__S
    008c7540 ti_sdo_ipc_GateMP_RemoteSystemProxy_Object__delete__S
    008c7560 ti_sdo_ipc_GateMP_RemoteSystemProxy_Params__init__S
    008c7580 ti_sdo_ipc_GateMP_RemoteSystemProxy_Proxy__abstract__S
    008c75a0 ti_sdo_ipc_GateMP_RemoteSystemProxy_Proxy__delegate__S
    008c75c0 ti_sdo_ipc_GateMP_getSharedAddr__E
    008c75c0 ti_sdo_ipc_GateMP_getSharedAddr__F
    008c75e0 ti_sdo_ipc_ListMP_Params__init__S
    008c7600 ti_sdo_ipc_MessageQ_Object__get__S
    008c7620 ti_sdo_ipc_Notify_Module_GateProxy_enter__E
    008c7640 ti_sdo_ipc_Notify_Module_GateProxy_leave__E
    008c7660 ti_sdo_ipc_family_c647x_Interrupt_intDisable__E
    008c7660 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intDisable__E
    008c7680 ti_sdo_ipc_family_c647x_Interrupt_intEnable__E
    008c7680 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intEnable__E
    008c76a0 ti_sdo_ipc_Notify_SetupProxy_numIntLines__E
    008c76a0 ti_sdo_ipc_family_c647x_NotifySetup_numIntLines__E
    008c76c0 ti_sdo_ipc_gates_GateHWSem_Params__init__S
    008c76e0 ti_sdo_ipc_GateMP_RemoteSystemProxy_getReservedMask__E
    008c76e0 ti_sdo_ipc_gates_GateHWSem_getReservedMask__E
    008c7700 ti_sdo_ipc_GateMP_RemoteSystemProxy_query__E
    008c7700 ti_sdo_ipc_gates_GateHWSem_query__E
    008c7700 ti_sdo_ipc_gates_GateHWSem_query__F
    008c7720 ti_sdo_ipc_GateMP_RemoteSystemProxy_sharedMemReq__E
    008c7720 ti_sdo_ipc_gates_GateHWSem_sharedMemReq__E
    008c7740 ti_sdo_ipc_gates_GateMPSupportNull_Instance_init__F
    008c7760 ti_sdo_ipc_gates_GateMPSupportNull_Params__init__S
    008c7780 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_getReservedMask__E
    008c7780 ti_sdo_ipc_gates_GateMPSupportNull_getReservedMask__E
    008c77a0 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_query__E
    008c77a0 ti_sdo_ipc_gates_GateMPSupportNull_query__E
    008c77a0 ti_sdo_ipc_gates_GateMPSupportNull_query__F
    008c77c0 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_sharedMemReq__E
    008c77c0 ti_sdo_ipc_gates_GateMPSupportNull_sharedMemReq__E
    008c77e0 ti_sdo_ipc_gates_GatePeterson_Params__init__S
    008c7800 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_getReservedMask__E
    008c7800 ti_sdo_ipc_gates_GatePeterson_getReservedMask__E
    008c7820 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_query__E
    008c7820 ti_sdo_ipc_gates_GatePeterson_query__E
    008c7820 ti_sdo_ipc_gates_GatePeterson_query__F
    008c7840 ti_sdo_ipc_heaps_HeapMemMP_Params__init__S
    008c7860 ti_sdo_ipc_heaps_HeapMemMP_isBlocking__E
    008c7860 ti_sdo_ipc_heaps_HeapMemMP_isBlocking__F
    008c7880 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Params__init__S
    008c78a0 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__first__S
    008c78c0 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__next__S
    008c78e0 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Params__init__S
    008c7900 ti_sdo_ipc_nsremote_NameServerRemoteNotify_cbFxn__I
    008c7920 ti_sdo_ipc_MessageQ_SetupTransportProxy_isRegistered__E
    008c7920 ti_sdo_ipc_transports_TransportShmSetup_isRegistered__E
    008c7940 ti_sdo_ipc_transports_TransportShm_Params__init__S
    008c7960 ti_sdo_ipc_transports_TransportShm_control__E
    008c7980 ti_sdo_ipc_transports_TransportShm_getStatus__E
    008c79a0 ti_sdo_ipc_transports_TransportShm_notifyFxn__I
    008c79c0 ti_sdo_ipc_transports_TransportShm_setErrFxn__E
    008c79c0 ti_sdo_ipc_transports_TransportShm_setErrFxn__F
    008c79e0 ti_sdo_utils_List_Instance_init__F
    008c7a00 ti_sdo_utils_List_Object__get__S
    008c7a20 ti_sdo_utils_MultiProc_getClusterId__E
    008c7a20 ti_sdo_utils_MultiProc_getClusterId__F
    008c7a40 ti_sdo_utils_NameServer_Object__first__S
    008c7a60 ti_sdo_utils_NameServer_Object__next__S
    008c7a80 ti_sysbios_BIOS_RtsGateProxy_enter__E
    008c7aa0 ti_sysbios_BIOS_RtsGateProxy_leave__E
    008c7ac0 ti_sysbios_BIOS_getThreadType__E
    008c7ae0 ti_sysbios_BIOS_setThreadType__E
    008c7b00 ti_sysbios_family_c62_TaskSupport_Module__startupDone__S
    008c7b20 ti_sysbios_family_c62_TaskSupport_checkStack__E
    008c7b20 ti_sysbios_knl_Task_SupportProxy_checkStack__E
    008c7b40 ti_sysbios_family_c64p_Hwi_Params__init__S
    008c7b60 ti_sysbios_family_c64p_Hwi_clearInterrupt__E
    008c7b60 ti_sysbios_hal_Hwi_HwiProxy_clearInterrupt__E
    008c7b60 ti_sysbios_hal_Hwi_clearInterrupt__E
    008c7b80 ti_sysbios_family_c64p_Hwi_getHandle__E
    008c7ba0 ti_sysbios_family_c64p_Hwi_startup__E
    008c7ba0 ti_sysbios_hal_Hwi_HwiProxy_startup__E
    008c7ba0 ti_sysbios_hal_Hwi_startup__E
    008c7bc0 ti_sysbios_family_c64p_Hwi_switchFromBootStack__E
    008c7bc0 ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E
    008c7bc0 ti_sysbios_hal_Hwi_switchFromBootStack__E
    008c7be0 ti_sysbios_family_c64p_Hwi_unPluggedInterrupt__I
    008c7c00 ti_sysbios_family_c64p_tci6488_TimerSupport_enable__E
    008c7c00 ti_sysbios_timers_timer64_Timer_TimerSupportProxy_enable__E
    008c7c20 ti_sysbios_family_c66_Cache_inv__E
    008c7c20 ti_sysbios_hal_Cache_CacheProxy_inv__E
    008c7c20 ti_sysbios_hal_Cache_inv__E
    008c7c40 ti_sysbios_family_c66_Cache_wbInv__E
    008c7c40 ti_sysbios_hal_Cache_CacheProxy_wbInv__E
    008c7c40 ti_sysbios_hal_Cache_wbInv__E
    008c7c60 ti_sysbios_family_c66_Cache_wb__E
    008c7c60 ti_sysbios_hal_Cache_CacheProxy_wb__E
    008c7c60 ti_sysbios_hal_Cache_wb__E
    008c7c80 ti_sysbios_family_c66_tci66xx_CpIntc_disableHostInt__E
    008c7c80 ti_sysbios_family_c66_tci66xx_CpIntc_disableHostInt__F
    008c7ca0 ti_sysbios_family_c66_tci66xx_CpIntc_enableHostInt__E
    008c7ca0 ti_sysbios_family_c66_tci66xx_CpIntc_enableHostInt__F
    008c7cc0 ti_sysbios_gates_GateAll_Instance_init__F
    008c7ce0 ti_sysbios_gates_GateAll_query__E
    008c7ce0 ti_sysbios_gates_GateAll_query__F
    008c7d00 ti_sysbios_gates_GateHwi_Instance_init__F
    008c7d20 ti_sysbios_gates_GateHwi_enter__E
    008c7d40 ti_sysbios_gates_GateHwi_leave__E
    008c7d60 ti_sysbios_gates_GateHwi_query__E
    008c7d60 ti_sysbios_gates_GateHwi_query__F
    008c7d60 xdc_runtime_Main_Module_GateProxy_query__E
    008c7d60 xdc_runtime_System_Module_GateProxy_query__E
    008c7d80 ti_sysbios_gates_GateMutexPri_query__E
    008c7d80 ti_sysbios_gates_GateMutexPri_query__F
    008c7d80 ti_sysbios_xdcruntime_GateProcessSupport_query__F
    008c7d80 ti_sysbios_xdcruntime_GateThreadSupport_query__E
    008c7d80 ti_sysbios_xdcruntime_GateThreadSupport_query__F
    008c7d80 xdc_runtime_knl_GateThread_Proxy_query__E
    008c7d80 xdc_runtime_knl_GateThread_query__E
    008c7d80 xdc_runtime_knl_GateThread_query__F
    008c7da0 ti_sysbios_BIOS_RtsGateProxy_query__E
    008c7da0 ti_sysbios_gates_GateMutex_query__E
    008c7da0 ti_sysbios_gates_GateMutex_query__F
    008c7da0 ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E
    008c7dc0 ti_sysbios_gates_GateSwi_Instance_init__F
    008c7de0 ti_sdo_ipc_Notify_Module_GateProxy_query__E
    008c7de0 ti_sysbios_gates_GateSwi_query__E
    008c7de0 ti_sysbios_gates_GateSwi_query__F
    008c7e00 ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S
    008c7e20 ti_sysbios_hal_Hwi_Module_startup__E
    008c7e20 ti_sysbios_hal_Hwi_Module_startup__F
    008c7e40 ti_sysbios_hal_Timer_Module_startup__E
    008c7e40 ti_sysbios_hal_Timer_Module_startup__F
    008c7e60 ti_sysbios_hal_Timer_TimerProxy_Module__startupDone__S
    008c7e80 ti_sysbios_hal_Timer_TimerProxy_getExpiredCounts__E
    008c7ea0 ti_sysbios_hal_Timer_TimerProxy_getPeriod__E
    008c7ec0 ti_sysbios_hal_Timer_TimerProxy_setNextTick__E
    008c7ee0 ti_sysbios_heaps_HeapBuf_Object__get__S
    008c7f00 ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E
    008c7f20 ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E
    008c7f40 ti_sysbios_heaps_HeapMem_isBlocking__E
    008c7f60 ti_sysbios_knl_Clock_Params__init__S
    008c7f80 ti_sysbios_knl_Queue_Instance_init__F
    008c7fa0 ti_sysbios_knl_Queue_Object__get__S
    008c7fc0 ti_sysbios_knl_Queue_empty__E
    008c7fe0 ti_sysbios_knl_Semaphore_Params__init__S
    008c8000 ti_sysbios_knl_Swi_Params__init__S
    008c8020 ti_sysbios_knl_Swi_disable__E
    008c8040 ti_sysbios_knl_Swi_getTrigger__E
    008c8060 ti_sysbios_knl_Task_Object__first__S
    008c8080 ti_sysbios_knl_Task_Object__next__S
    008c80a0 ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S
    008c80c0 ti_sysbios_knl_Task_disable__E
    008c80e0 ti_sysbios_knl_Task_enable__E
    008c8100 ti_sysbios_knl_Task_getPri__E
    008c8120 ti_sysbios_knl_Task_self__E
    008c8140 ti_sysbios_timers_timer64_Timer_setNextTick__E
    008c8160 xdc_runtime_GateNull_enter__E
    008c8160 xdc_runtime_GateNull_enter__F
    008c8180 xdc_runtime_GateNull_leave__E
    008c8180 xdc_runtime_GateNull_leave__F
    008c81a0 xdc_runtime_GateNull_query__E
    008c81a0 xdc_runtime_GateNull_query__F
    008c81c0 xdc_runtime_Gate_enterSystem__E
    008c81c0 xdc_runtime_Gate_enterSystem__F
    008c8220 xdc_runtime_Memory_HeapProxy_alloc__E
    008c8240 xdc_runtime_Memory_HeapProxy_free__E
    008c8260 xdc_runtime_Memory_getMaxDefaultTypeAlign__E
    008c8260 xdc_runtime_Memory_getMaxDefaultTypeAlign__F
    008c8280 xdc_runtime_Startup_Module__startupDone__S
    008c82a0 xdc_runtime_Startup_exec__I
    008c82c0 xdc_runtime_Startup_reset__I
    008c82e0 xdc_runtime_Startup_rtsDone__E
    008c82e0 xdc_runtime_Startup_rtsDone__F
    008c8300 xdc_runtime_SysStd_exit__E
    008c8300 xdc_runtime_SysStd_exit__F
    008c8300 xdc_runtime_System_SupportProxy_exit__E
    008c8320 xdc_runtime_SysStd_putch__E
    008c8320 xdc_runtime_SysStd_putch__F
    008c8320 xdc_runtime_System_SupportProxy_putch__E
    008c8340 xdc_runtime_SysStd_ready__E
    008c8340 xdc_runtime_SysStd_ready__F
    008c8340 xdc_runtime_System_SupportProxy_ready__E
    008c8360 xdc_runtime_System_Module_GateProxy_enter__E
    008c8380 xdc_runtime_System_Module_GateProxy_leave__E
    008c83a0 xdc_runtime_System_Module_startup__E
    008c83a0 xdc_runtime_System_Module_startup__F
    008c83c0 xdc_runtime_System_exit__E
    008c83c0 xdc_runtime_System_exit__F
    008c83e0 xdc_runtime_System_lastFxn__I
    008c8400 xdc_runtime_System_sprintf_va__E
    008c8400 xdc_runtime_System_sprintf_va__F
    008c8400 xdc_runtime_System_vsprintf__E
    008c8400 xdc_runtime_System_vsprintf__F
    008c8420 xdc_runtime_Text_visitRope__I
    008c8440 xdc_runtime_knl_GateThread_Module__startupDone__S
    008c8460 xdc_runtime_knl_GateThread_Proxy_Object__create__S
    008c8480 xdc_runtime_knl_GateThread_Proxy_Object__delete__S
    008c84a0 xdc_runtime_knl_GateThread_Proxy_enter__E
    008c84c0 xdc_runtime_knl_GateThread_Proxy_leave__E
    008c84e0 xdc_runtime_knl_GateThread_enter__E
    008c84e0 xdc_runtime_knl_GateThread_enter__F
    008c8500 xdc_runtime_knl_GateThread_leave__E
    008c8500 xdc_runtime_knl_GateThread_leave__F
    008c8520 defInstInitConfig
    008c94e0 sampleInstInitConfig
    008ca4a0 edma3GblCfgParams
    008cad28 sampleEdma3GblCfgParams
    008cb5b0 ti_sdo_ipc_GateMP_Module_State_0_remoteCustom1Gates__A
    008cbdb0 ti_sdo_ipc_GateMP_Module__root__V
    008cbdb8 ti_sdo_ipc_GateMP_Module__state__V
    008cbe00 ti_sdo_ipc_Ipc_Module__state__V
    008cbe0c ti_sdo_ipc_ListMP_Module__root__V
    008cbe14 ti_sdo_ipc_ListMP_Module__state__V
    008cbe18 ti_sdo_ipc_MessageQ_Module__root__V
    008cbe20 ti_sdo_ipc_MessageQ_Module__state__V
    008cbe3c ti_sdo_ipc_Notify_Module__root__V
    008cbe44 ti_sdo_ipc_Notify_Module__state__V
    008cbe4c ti_sdo_ipc_SharedRegion_Module__state__V
    008cbe50 ti_sdo_ipc_family_c647x_Interrupt_Module__state__V
    008cbe58 ti_sdo_ipc_gates_GateHWSem_Module__root__V
    008cbe60 ti_sdo_ipc_gates_GateMPSupportNull_Module__root__V
    008cbe68 ti_sdo_ipc_gates_GatePeterson_Module__root__V
    008cbe70 ti_sdo_ipc_heaps_HeapBufMP_Module__root__V
    008cbe78 ti_sdo_ipc_heaps_HeapBufMP_Module__state__V
    008cbe7c ti_sdo_ipc_heaps_HeapMemMP_Module__root__V
    008cbe84 ti_sdo_ipc_heaps_HeapMemMP_Module__state__V
    008cbe88 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__root__V
    008cbe90 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__root__V
    008cbe98 ti_sdo_ipc_transports_TransportShm_Module__root__V
    008cbea0 ti_sdo_ipc_transports_TransportShmSetup_Module__state__V
    008cbea4 ti_sdo_utils_List_Module__root__V
    008cbeac ti_sdo_utils_MultiProc_Module__state__V
    008cbeb0 ti_sdo_utils_NameServer_Module__root__V
    008cbeb8 ti_sdo_utils_NameServer_Module__state__V
    008cbec0 ti_sdo_utils_NameServerRemoteNull_Module__root__V
    008cbec8 ti_sysbios_BIOS_Module__state__V
    008cbee4 ti_sysbios_family_c64p_EventCombiner_Module__state__V
    008cc2e4 ti_sysbios_family_c64p_Exception_Module__state__V
    008cc310 ti_sysbios_family_c64p_Hwi_Module__root__V
    008cc318 ti_sysbios_family_c64p_Hwi_Module__state__V
    008cc380 ti_sysbios_family_c66_tci66xx_CpIntc_Module__state__V
    008cc390 ti_sysbios_gates_GateAll_Module__root__V
    008cc398 ti_sysbios_gates_GateHwi_Module__root__V
    008cc3a0 ti_sysbios_gates_GateMutex_Module__root__V
    008cc3a8 ti_sysbios_gates_GateMutexPri_Module__root__V
    008cc3b0 ti_sysbios_gates_GateSwi_Module__root__V
    008cc3b8 ti_sysbios_hal_Hwi_Module__root__V
    008cc3c0 ti_sysbios_hal_Timer_Module__root__V
    008cc3c8 ti_sysbios_heaps_HeapBuf_Module__root__V
    008cc3d0 ti_sysbios_heaps_HeapBuf_Module__state__V
    008cc3d4 ti_sysbios_heaps_HeapMem_Module__root__V
    008cc3dc ti_sysbios_knl_Clock_Module__root__V
    008cc3e4 ti_sysbios_knl_Clock_Module__state__V
    008cc410 ti_sysbios_knl_Queue_Module__root__V
    008cc418 ti_sysbios_knl_Semaphore_Module__root__V
    008cc420 ti_sysbios_knl_Swi_Module__root__V
    008cc428 ti_sysbios_knl_Swi_Module__state__V
    008cc444 ti_sysbios_knl_Task_Module__root__V
    008cc44c ti_sysbios_knl_Task_Module__state__V
    008cc480 ti_sysbios_syncs_SyncSem_Module__root__V
    008cc488 ti_sysbios_timers_timer64_Timer_Module__root__V
    008cc490 ti_sysbios_timers_timer64_Timer_Module__state__V
    008cc4a4 ti_sysbios_xdcruntime_GateThreadSupport_Module__root__V
    008cc4ac xdc_runtime_Error_Module__state__V
    008cc4b0 xdc_runtime_GateNull_Module__root__V
    008cc4b8 xdc_runtime_Memory_Module__state__V
    008cc4bc xdc_runtime_Registry_Module__state__V
    008cc4c4 xdc_runtime_Startup_Module__state__V
    008cc4cc xdc_runtime_System_Module__state__V
    008cc4d8 xdc_runtime_Text_Module__state__V
    008cc4e0 xdc_runtime_knl_GateThread_Module__root__V
    008cc4e8 __xdc__init__addr
    008cc4ec _ft_end
    008cc4f0 ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_dispatchTab__A
    008ccb70 _ftable
    008ccd50 ti_sdo_utils_NameServer_Object__table__V
    008cce68 ti_sysbios_timers_timer64_Timer_Module_State_0_device__A
    008ccfc8 ti_sdo_ipc_SharedRegion_Module_State_0_regions__A
    008cd058 ti_sdo_ipc_GateMP_Module_State_0_remoteSystemGates__A
    008cd0d8 ti_sysbios_knl_Swi_Module_State_0_readyQ__A
    008cd158 ti_sysbios_knl_Task_Module_State_0_readyQ__A
    008cd250 ti_sysbios_family_c64p_Hwi_Object__table__V
    008cd2c8 ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_hostIntToSysInt__A
    008cd330 ccXferCompInt
    008cd390 tcErrorInt
    008cd3f0 ti_sysbios_timers_timer64_Timer_Object__table__V
    008cd440 TSK_idle
    008cd440 ti_sysbios_knl_Task_Object__table__V
    008cd484 __errno
    008cd484 errno
    008cd488 ti_sysbios_gates_GateMutex_Object__table__V
    008cd4c8 ti_sysbios_timers_timer64_Timer_Module_State_0_gctrl__A
    008cd508 ti_sysbios_timers_timer64_Timer_Module_State_0_handles__A
    008cd548 ti_sysbios_timers_timer64_Timer_Module_State_0_intFreqs__A
    008cd588 ti_sdo_ipc_Ipc_Module_State_0_procEntry__A
    008cd5c8 ccXferHostInt
    008cd5f8 edma3ErrHostInt
    008cd628 ti_sysbios_knl_Swi_Object__table__V
    008cd658 _lock
    008cd65c _unlock
    008cd688 ptrEdma3TcIsrHandler
    008cd6a8 ti_sdo_ipc_MessageQ_Module_State_0_heaps__A
    008cd6c8 xdc_runtime_System_Module_State_0_atexitHandlers__A
    008cd6e8 ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_initSIER__A
    008cd738 ti_sdo_ipc_MessageQ_Module_State_0_transports__A
    008cd750 ti_sdo_ipc_family_c647x_Interrupt_Module_State_0_fxnTable__A
    008cd768 ti_sysbios_gates_GateMutexPri_Object__table__V
    008cd780 ti_sysbios_knl_Semaphore_Object__table__V
    008cd798 ti_sysbios_hal_Hwi_Object__table__V
    008cd7b8 ti_sysbios_heaps_HeapMem_Object__table__V
    008cd7d0 gblCfgReqdArray
    008cd7e0 ti_sysbios_gates_GateAll_Object__table__V
    008cd7f0 ccErrorInt
    008cd800 edmaSemHandle
    008cd810 numEdma3Tc
    008cd81c _cleanup_ptr
    008cd820 _dtors_ptr
    008cd824 __TI_enable_exit_profile_output
    008cd828 ti_sdo_ipc_Notify_Module_State_0_notifyHandles__A
    008cd838 ti_sdo_ipc_transports_TransportShmSetup_Module_State_0_handles__A
    008cd848 ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_controller__A
    008cd858 ti_sysbios_gates_GateSwi_Object__table__V
    008cd868 ti_sysbios_hal_Timer_Object__table__V
    008cd870 ti_sdo_ipc_GateMP_Module_State_0_remoteCustom2Gates__A
    008cd878 ti_sdo_ipc_Notify_Module_State_0_notifyHandles_0__A
    008cd880 ti_sdo_ipc_Notify_Module_State_0_notifyHandles_1__A
    008cd888 ti_sdo_ipc_Notify_Module_State_0_notifyHandles_2__A
    008cd890 ti_sysbios_gates_GateHwi_Object__table__V
    008cd898 xdc_runtime_GateNull_Object__table__V
    008cd8a0 xdc_runtime_Text_charTab__A
    008d02d0 ti_sysbios_family_c66_Cache_marvalues__C
    008d06d0 xdc_runtime_Text_nodeTab__A
    008d0854 ti_sdo_ipc_GateMP_A_invalidClose__C
    008d0858 _ctypes_
    008d0a56 ti_sdo_ipc_GateMP_Module__id__C
    008d0a58 ti_sysbios_family_c66_tci66xx_CpIntc_sysIntToHostInt__A
    008d0de8 xdc_runtime_Startup_sfxnTab__A
    008d0eae ti_sdo_ipc_GateMP_Module__loggerDefined__C
    008d0eb0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__FXNS__C
    008d0ee8 ti_sdo_ipc_GateMP_Object__PARAMS__C
    008d0f1c ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__PARAMS__C
    008d0f50 ti_sdo_ipc_heaps_HeapMemMP_Object__PARAMS__C
    008d0f80 ti_sysbios_family_c64p_Hwi_Object__PARAMS__C
    008d0fdc ti_sdo_ipc_ListMP_Object__PARAMS__C
    008d1008 ti_sdo_ipc_gates_GateHWSem_Module__FXNS__C
    008d1034 ti_sdo_ipc_gates_GateMPSupportNull_Module__FXNS__C
    008d1060 ti_sdo_ipc_gates_GatePeterson_Module__FXNS__C
    008d108c ti_sdo_ipc_heaps_HeapMemMP_Module__FXNS__C
    008d10b4 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__FXNS__C
    008d10dc ti_sdo_ipc_transports_TransportShm_Module__FXNS__C
    008d1104 ti_sdo_ipc_transports_TransportShm_Object__PARAMS__C
    008d112c ti_sysbios_heaps_HeapMem_Module__FXNS__C
    008d1154 ti_sysbios_knl_Swi_Object__PARAMS__C
    008d117c ti_sdo_ipc_gates_GateHWSem_Object__PARAMS__C
    008d11a0 ti_sdo_ipc_gates_GateMPSupportNull_Object__PARAMS__C
    008d11c4 ti_sdo_ipc_gates_GatePeterson_Object__PARAMS__C
    008d11e8 ti_sysbios_gates_GateAll_Module__FXNS__C
    008d120c ti_sysbios_gates_GateHwi_Module__FXNS__C
    008d1230 ti_sysbios_gates_GateMutexPri_Module__FXNS__C
    008d1254 ti_sysbios_gates_GateMutex_Module__FXNS__C
    008d1278 ti_sysbios_gates_GateSwi_Module__FXNS__C
    008d129c ti_sysbios_knl_Clock_Object__PARAMS__C
    008d12c0 ti_sysbios_knl_Semaphore_Object__PARAMS__C
    008d12e4 xdc_runtime_GateNull_Module__FXNS__C
    008d1308 xdc_runtime_Startup_sfxnRts__A
    008d132c xdc_runtime_knl_GateThread_Module__FXNS__C
    008d13b4 ti_sdo_ipc_GateMP_Object__DESC__C
    008d13d4 ti_sdo_ipc_ListMP_Object__DESC__C
    008d13f4 ti_sdo_ipc_Notify_Object__DESC__C
    008d1414 ti_sdo_ipc_gates_GateHWSem_Object__DESC__C
    008d1434 ti_sdo_ipc_gates_GateMPSupportNull_Object__DESC__C
    008d1454 ti_sdo_ipc_gates_GatePeterson_Object__DESC__C
    008d1474 ti_sdo_ipc_heaps_HeapMemMP_Object__DESC__C
    008d1494 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__DESC__C
    008d14b4 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__DESC__C
    008d14d4 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__PARAMS__C
    008d14f4 ti_sdo_ipc_transports_TransportShm_Object__DESC__C
    008d1514 ti_sdo_utils_List_Object__DESC__C
    008d1534 ti_sysbios_family_c64p_Hwi_Object__DESC__C
    008d1554 ti_sysbios_gates_GateAll_Object__DESC__C
    008d1574 ti_sysbios_gates_GateHwi_Object__DESC__C
    008d1594 ti_sysbios_gates_GateMutexPri_Object__DESC__C
    008d15b4 ti_sysbios_gates_GateMutex_Object__DESC__C
    008d15d4 ti_sysbios_gates_GateSwi_Object__DESC__C
    008d15f4 ti_sysbios_heaps_HeapMem_Object__DESC__C
    008d1614 ti_sysbios_heaps_HeapMem_Object__PARAMS__C
    008d1634 ti_sysbios_knl_Clock_Object__DESC__C
    008d1654 ti_sysbios_knl_Queue_Object__DESC__C
    008d1674 ti_sysbios_knl_Semaphore_Object__DESC__C
    008d1694 ti_sysbios_knl_Swi_Object__DESC__C
    008d16b4 ti_sysbios_xdcruntime_GateThreadSupport_Object__DESC__C
    008d16d4 xdc_runtime_GateNull_Object__DESC__C
    008d16f4 xdc_runtime_knl_GateThread_Object__DESC__C
    008d1714 ti_sdo_ipc_GateMP_A_invalidDelete__C
    008d1718 ti_sysbios_family_c66_tci66xx_CpIntc_eventId__A
    008d1732 ti_sdo_ipc_Ipc_Module__id__C
    008d1734 ti_sdo_ipc_GateMP_E_gateUnavailable__C
    008d1738 ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_0__A
    008d1752 ti_sdo_ipc_Ipc_generateSlaveDataForHost__C
    008d1754 ti_sdo_ipc_GateMP_E_localGate__C
    008d1758 ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_1__A
    008d1772 ti_sdo_ipc_ListMP_Module__id__C
    008d1774 ti_sdo_ipc_GateMP_LM_create__C
    008d1778 ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_2__A
    008d1792 ti_sdo_ipc_MessageQ_Module__id__C
    008d1794 ti_sdo_ipc_GateMP_LM_delete__C
    008d1798 ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_3__A
    008d17b2 ti_sdo_ipc_MessageQ_Module__loggerDefined__C
    008d17b4 ti_sdo_ipc_Notify_Object__PARAMS__C
    008d17cc ti_sdo_utils_List_Object__PARAMS__C
    008d17e4 ti_sysbios_gates_GateAll_Object__PARAMS__C
    008d17fc ti_sysbios_gates_GateHwi_Object__PARAMS__C
    008d1814 ti_sysbios_gates_GateMutexPri_Object__PARAMS__C
    008d182c ti_sysbios_gates_GateMutex_Object__PARAMS__C
    008d1844 ti_sysbios_gates_GateSwi_Object__PARAMS__C
    008d185c ti_sysbios_knl_Queue_Object__PARAMS__C
    008d1874 ti_sdo_ipc_GateMP_LM_enter__C
    008d1878 ti_sysbios_knl_Task_hooks__A
    008d1890 ti_sysbios_xdcruntime_GateThreadSupport_Object__PARAMS__C
    008d18a8 xdc_runtime_GateNull_Object__PARAMS__C
    008d18c0 xdc_runtime_knl_GateThread_Object__PARAMS__C
    008d18ea ti_sdo_ipc_Notify_Module__id__C
    008d18ec ti_sdo_ipc_GateMP_LM_leave__C
    008d1902 ti_sdo_ipc_Notify_numLines__C
    008d1904 ti_sdo_ipc_GateMP_LM_open__C
    008d1908 ti_sysbios_family_c64p_EventCombiner_EVTMASK__C
    008d1918 ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId__A
    008d1928 ti_sysbios_family_c66_Cache_initSize__C
    008d1934 ti_sdo_ipc_GateMP_Module__diagsEnabled__C
    008d1938 xdc_runtime_Startup_firstFxns__A
    008d194c ti_sysbios_knl_Idle_funcList__C
    008d1954 ti_sysbios_knl_Task_hooks__C
    008d195c xdc_runtime_Startup_firstFxns__C
    008d1964 xdc_runtime_Startup_lastFxns__C
    008d196c ti_sdo_ipc_GateMP_Module__diagsIncluded__C
    008d1970 ti_sdo_ipc_family_c647x_MultiProcSetup_procMap__A
    008d1976 ti_sdo_ipc_Notify_reservedEvents__C
    008d1978 ti_sdo_ipc_GateMP_Module__diagsMask__C
    008d197c ti_sdo_ipc_GateMP_Module__loggerFxn2__C
    008d1980 ti_sdo_ipc_GateMP_Module__loggerFxn4__C
    008d1984 ti_sdo_ipc_GateMP_Module__loggerObj__C
    008d1988 ti_sdo_ipc_Ipc_A_addrNotCacheAligned__C
    008d198c ti_sdo_ipc_Ipc_A_addrNotInSharedRegion__C
    008d1990 ti_sdo_ipc_Ipc_A_internal__C
    008d1994 ti_sdo_ipc_Ipc_A_invArgument__C
    008d1998 ti_sdo_ipc_Ipc_A_invParam__C
    008d199c ti_sdo_ipc_Ipc_A_nullArgument__C
    008d19a0 ti_sdo_ipc_Ipc_A_nullPointer__C
    008d19a4 ti_sdo_ipc_Ipc_E_internal__C
    008d19a8 ti_sdo_ipc_Ipc_E_nameFailed__C
    008d19ac ti_sdo_ipc_Ipc_E_versionMismatch__C
    008d19b0 ti_sdo_ipc_Ipc_Module__diagsEnabled__C
    008d19b4 ti_sdo_ipc_Ipc_Module__diagsIncluded__C
    008d19b8 ti_sdo_ipc_Ipc_Module__diagsMask__C
    008d19bc ti_sdo_ipc_Ipc_numUserFxns__C
    008d19c0 ti_sdo_ipc_Ipc_procSync__C
    008d19c4 ti_sdo_ipc_Ipc_userFxns__C
    008d19c8 ti_sdo_ipc_ListMP_Module__diagsEnabled__C
    008d19cc ti_sdo_ipc_ListMP_Module__diagsIncluded__C
    008d19d0 ti_sdo_ipc_ListMP_Module__diagsMask__C
    008d19d4 ti_sdo_ipc_MessageQ_A_invalidMsg__C
    008d19d8 ti_sdo_ipc_MessageQ_A_invalidObj__C
    008d19dc ti_sdo_ipc_MessageQ_A_invalidQueueId__C
    008d19e0 ti_sdo_ipc_MessageQ_A_procIdInvalid__C
    008d19e4 ti_sdo_ipc_MessageQ_A_unregisteredTransport__C
    008d19e8 ti_sdo_ipc_MessageQ_Instance_State_highList__O
    008d19ec ti_sdo_ipc_MessageQ_Instance_State_normalList__O
    008d19f0 ti_sdo_ipc_MessageQ_LM_putLocal__C
    008d19f4 ti_sdo_ipc_MessageQ_Module__diagsEnabled__C
    008d19f8 ti_sdo_ipc_MessageQ_Module__diagsIncluded__C
    008d19fc ti_sdo_ipc_MessageQ_Module__diagsMask__C
    008d1a00 ti_sdo_ipc_MessageQ_Module__loggerFxn4__C
    008d1a04 ti_sdo_ipc_MessageQ_Module__loggerObj__C
    008d1a08 ti_sdo_ipc_MessageQ_Object__count__C
    008d1a0c ti_sdo_ipc_Notify_A_alreadyRegistered__C
    008d1a10 ti_sdo_ipc_Notify_A_internal__C
    008d1a14 ti_sdo_ipc_Notify_A_invArgument__C
    008d1a18 ti_sdo_ipc_Notify_A_notRegistered__C
    008d1a1c ti_sdo_ipc_Notify_A_reservedEvent__C
    008d1a20 ti_sdo_ipc_Notify_Module__diagsEnabled__C
    008d1a24 ti_sdo_ipc_Notify_Module__diagsIncluded__C
    008d1a28 ti_sdo_ipc_Notify_Module__diagsMask__C
    008d1a2c ti_sdo_ipc_Notify_Module__gateObj__C
    008d1a30 ti_sdo_ipc_Notify_Object__heap__C
    008d1a34 ti_sdo_ipc_Notify_numEvents__C
    008d1a38 ti_sdo_ipc_Notify_sendEventPollCount__C
    008d1a3c ti_sdo_ipc_SharedRegion_A_addrOutOfRange__C
    008d1a40 ti_sdo_ipc_SharedRegion_A_idTooLarge__C
    008d1a44 ti_sdo_ipc_SharedRegion_A_noHeap__C
    008d1a48 ti_sdo_ipc_SharedRegion_A_region0Invalid__C
    008d1a4c ti_sdo_ipc_SharedRegion_A_regionInvalid__C
    008d1a50 ti_sdo_ipc_SharedRegion_A_reserveTooMuch__C
    008d1a54 ti_sdo_ipc_SharedRegion_INVALIDSRPTR__C
    008d1a58 ti_sdo_ipc_SharedRegion_Module__diagsEnabled__C
    008d1a5c ti_sdo_ipc_SharedRegion_Module__diagsIncluded__C
    008d1a60 ti_sdo_ipc_SharedRegion_Module__diagsMask__C
    008d1a64 ti_sdo_ipc_SharedRegion_cacheLineSize__C
    008d1a68 ti_sdo_ipc_SharedRegion_numOffsetBits__C
    008d1a6c ti_sdo_ipc_SharedRegion_offsetMask__C
    008d1a70 ti_sdo_ipc_family_c647x_Interrupt_INTERDSPINT__C
    008d1a74 ti_sdo_ipc_family_c647x_Interrupt_IPCAR0__C
    008d1a78 ti_sdo_ipc_family_c647x_Interrupt_IPCGR0__C
    008d1a7c ti_sdo_ipc_family_c647x_Interrupt_KICK0__C
    008d1a80 ti_sdo_ipc_family_c647x_Interrupt_KICK1__C
    008d1a84 ti_sdo_ipc_family_c647x_MultiProcSetup_A_invalidProcessor__C
    008d1a88 ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsEnabled__C
    008d1a8c ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsIncluded__C
    008d1a90 ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsMask__C
    008d1a94 ti_sdo_ipc_family_c647x_MultiProcSetup_procMap__C
    008d1a98 ti_sdo_ipc_family_c647x_NotifySetup_dspIntVectId__C
    008d1a9c ti_sdo_ipc_gates_GateHWSem_A_invSemNum__C
    008d1aa0 ti_sdo_ipc_gates_GateHWSem_Module__diagsEnabled__C
    008d1aa4 ti_sdo_ipc_gates_GateHWSem_Module__diagsIncluded__C
    008d1aa8 ti_sdo_ipc_gates_GateHWSem_Module__diagsMask__C
    008d1aac ti_sdo_ipc_gates_GateHWSem_baseAddr__C
    008d1ab0 ti_sdo_ipc_gates_GateHWSem_numSems__C
    008d1ab4 ti_sdo_ipc_gates_GateHWSem_reservedMaskArr__C
    008d1ab8 ti_sdo_ipc_gates_GateHWSem_reservedMaskArr__A
    008d1abc ti_sdo_ipc_gates_GateMPSupportNull_A_invalidAction__C
    008d1ac0 ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsEnabled__C
    008d1ac4 ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsIncluded__C
    008d1ac8 ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsMask__C
    008d1acc ti_sdo_ipc_gates_GateMPSupportNull_action__C
    008d1ad0 ti_sdo_ipc_gates_GatePeterson_E_gateRemotelyOpened__C
    008d1ad4 ti_sdo_ipc_gates_GatePeterson_Module__diagsEnabled__C
    008d1ad8 ti_sdo_ipc_gates_GatePeterson_Module__diagsIncluded__C
    008d1adc ti_sdo_ipc_gates_GatePeterson_Module__diagsMask__C
    008d1ae0 ti_sdo_ipc_gates_GatePeterson_numInstances__C
    008d1ae4 ti_sdo_ipc_heaps_HeapMemMP_A_align__C
    008d1ae8 ti_sdo_ipc_heaps_HeapMemMP_A_heapSize__C
    008d1aec ti_sdo_ipc_heaps_HeapMemMP_A_invalidFree__C
    008d1af0 ti_sdo_ipc_heaps_HeapMemMP_A_zeroBlock__C
    008d1af4 ti_sdo_ipc_heaps_HeapMemMP_E_memory__C
    008d1af8 ti_sdo_ipc_heaps_HeapMemMP_Module__diagsEnabled__C
    008d1afc ti_sdo_ipc_heaps_HeapMemMP_Module__diagsIncluded__C
    008d1b00 ti_sdo_ipc_heaps_HeapMemMP_Module__diagsMask__C
    008d1b04 ti_sdo_ipc_interfaces_IGateMPSupport_Interface__BASE__C
    008d1b08 ti_sdo_ipc_interfaces_IMessageQTransport_Interface__BASE__C
    008d1b0c ti_sdo_ipc_interfaces_INotifyDriver_Interface__BASE__C
    008d1b10 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsEnabled__C
    008d1b14 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsIncluded__C
    008d1b18 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsMask__C
    008d1b1c ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__heap__C
    008d1b20 ti_sdo_ipc_nsremote_NameServerRemoteNotify_A_invalidValueLen__C
    008d1b24 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_semMultiBlock__O
    008d1b28 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_semRemoteWait__O
    008d1b2c ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_swiObj__O
    008d1b30 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsEnabled__C
    008d1b34 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsIncluded__C
    008d1b38 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsMask__C
    008d1b3c ti_sdo_ipc_nsremote_NameServerRemoteNotify_notifyEventId__C
    008d1b40 ti_sdo_ipc_nsremote_NameServerRemoteNotify_timeout__C
    008d1b44 ti_sdo_ipc_transports_TransportShmSetup_priority__C
    008d1b48 ti_sdo_ipc_transports_TransportShm_Instance_State_swiObj__O
    008d1b4c ti_sdo_ipc_transports_TransportShm_Module__diagsEnabled__C
    008d1b50 ti_sdo_ipc_transports_TransportShm_Module__diagsIncluded__C
    008d1b54 ti_sdo_ipc_transports_TransportShm_Module__diagsMask__C
    008d1b58 ti_sdo_utils_INameServerRemote_Interface__BASE__C
    008d1b5c ti_sdo_utils_MultiProc_A_invalidMultiProcId__C
    008d1b60 ti_sdo_utils_MultiProc_Module__diagsEnabled__C
    008d1b64 ti_sdo_utils_MultiProc_Module__diagsIncluded__C
    008d1b68 ti_sdo_utils_MultiProc_Module__diagsMask__C
    008d1b6c ti_sdo_utils_NameServer_A_invArgument__C
    008d1b70 ti_sdo_utils_NameServer_A_invalidLen__C
    008d1b74 ti_sdo_utils_NameServer_E_entryExists__C
    008d1b78 ti_sdo_utils_NameServer_E_maxReached__C
    008d1b7c ti_sdo_utils_NameServer_Instance_State_freeList__O
    008d1b80 ti_sdo_utils_NameServer_Instance_State_nameList__O
    008d1b84 ti_sdo_utils_NameServer_Module__diagsEnabled__C
    008d1b88 ti_sdo_utils_NameServer_Module__diagsIncluded__C
    008d1b8c ti_sdo_utils_NameServer_Module__diagsMask__C
    008d1b90 ti_sdo_utils_NameServer_Object__count__C
    008d1b94 ti_sysbios_BIOS_Module__diagsEnabled__C
    008d1b98 ti_sysbios_BIOS_Module__diagsIncluded__C
    008d1b9c ti_sysbios_BIOS_Module__diagsMask__C
    008d1ba0 ti_sysbios_BIOS_installedErrorHook__C
    008d1ba4 ti_sysbios_family_c64p_EventCombiner_E_unpluggedEvent__C
    008d1ba8 ti_sysbios_family_c64p_Exception_E_exceptionMin__C
    008d1bac ti_sysbios_family_c64p_Exception_exceptionHook__C
    008d1bb0 ti_sysbios_family_c64p_Exception_externalHook__C
    008d1bb4 ti_sysbios_family_c64p_Exception_internalHook__C
    008d1bb8 ti_sysbios_family_c64p_Exception_nmiHook__C
    008d1bbc ti_sysbios_family_c64p_Hwi_E_alreadyDefined__C
    008d1bc0 ti_sysbios_family_c64p_Hwi_E_handleNotFound__C
    008d1bc4 ti_sysbios_family_c64p_Hwi_LD_end__C
    008d1bc8 ti_sysbios_family_c64p_Hwi_LM_begin__C
    008d1bcc ti_sysbios_family_c64p_Hwi_Module__diagsEnabled__C
    008d1bd0 ti_sysbios_family_c64p_Hwi_Module__diagsIncluded__C
    008d1bd4 ti_sysbios_family_c64p_Hwi_Module__diagsMask__C
    008d1bd8 ti_sysbios_family_c64p_Hwi_Module__loggerFxn1__C
    008d1bdc ti_sysbios_family_c64p_Hwi_Module__loggerFxn8__C
    008d1be0 ti_sysbios_family_c64p_Hwi_Module__loggerObj__C
    008d1be4 ti_sysbios_family_c66_Cache_atomicBlockSize__C
    008d1be8 ti_sysbios_family_c66_tci66xx_CpIntc_E_unpluggedSysInt__C
    008d1bec ti_sysbios_family_c66_tci66xx_CpIntc_eventId__C
    008d1bf0 ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId__C
    008d1bf4 ti_sysbios_family_c66_tci66xx_CpIntc_numEvents__C
    008d1bf8 ti_sysbios_family_c66_tci66xx_CpIntc_numStatusRegs__C
    008d1bfc ti_sysbios_family_c66_tci66xx_CpIntc_numSysInts__C
    008d1c00 ti_sysbios_family_c66_tci66xx_CpIntc_sysIntToHostInt__C
    008d1c04 ti_sysbios_gates_GateMutexPri_A_badContext__C
    008d1c08 ti_sysbios_gates_GateMutexPri_Instance_State_pendQ__O
    008d1c0c ti_sysbios_gates_GateMutexPri_Module__diagsEnabled__C
    008d1c10 ti_sysbios_gates_GateMutexPri_Module__diagsIncluded__C
    008d1c14 ti_sysbios_gates_GateMutexPri_Module__diagsMask__C
    008d1c18 ti_sysbios_gates_GateMutex_A_badContext__C
    008d1c1c ti_sysbios_gates_GateMutex_Instance_State_sem__O
    008d1c20 ti_sysbios_gates_GateMutex_Module__diagsEnabled__C
    008d1c24 ti_sysbios_gates_GateMutex_Module__diagsIncluded__C
    008d1c28 ti_sysbios_gates_GateMutex_Module__diagsMask__C
    008d1c2c ti_sysbios_gates_GateSwi_A_badContext__C
    008d1c30 ti_sysbios_gates_GateSwi_Module__diagsEnabled__C
    008d1c34 ti_sysbios_gates_GateSwi_Module__diagsIncluded__C
    008d1c38 ti_sysbios_gates_GateSwi_Module__diagsMask__C
    008d1c3c ti_sysbios_hal_Hwi_E_stackOverflow__C
    008d1c40 ti_sysbios_heaps_HeapBuf_Instance_State_freeList__O
    008d1c44 ti_sysbios_heaps_HeapBuf_Object__count__C
    008d1c48 ti_sysbios_heaps_HeapBuf_numConstructedHeaps__C
    008d1c4c ti_sysbios_heaps_HeapMem_A_align__C
    008d1c50 ti_sysbios_heaps_HeapMem_A_heapSize__C
    008d1c54 ti_sysbios_heaps_HeapMem_A_invalidFree__C
    008d1c58 ti_sysbios_heaps_HeapMem_A_zeroBlock__C
    008d1c5c ti_sysbios_heaps_HeapMem_E_memory__C
    008d1c60 ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C
    008d1c64 ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C
    008d1c68 ti_sysbios_heaps_HeapMem_Module__diagsMask__C
    008d1c6c ti_sysbios_heaps_HeapMem_Module__gateObj__C
    008d1c70 ti_sysbios_heaps_HeapMem_Object__count__C
    008d1c74 ti_sysbios_heaps_HeapMem_reqAlignMask__C
    008d1c78 ti_sysbios_heaps_HeapMem_reqAlign__C
    008d1c7c ti_sysbios_knl_Clock_A_badThreadType__C
    008d1c80 ti_sysbios_knl_Clock_LM_begin__C
    008d1c84 ti_sysbios_knl_Clock_LM_tick__C
    008d1c88 ti_sysbios_knl_Clock_LW_delayed__C
    008d1c8c ti_sysbios_knl_Clock_Module_State_clockQ__O
    008d1c90 ti_sysbios_knl_Clock_Module__diagsEnabled__C
    008d1c94 ti_sysbios_knl_Clock_Module__diagsIncluded__C
    008d1c98 ti_sysbios_knl_Clock_Module__diagsMask__C
    008d1c9c ti_sysbios_knl_Clock_Module__loggerFxn1__C
    008d1ca0 ti_sysbios_knl_Clock_Module__loggerFxn2__C
    008d1ca4 ti_sysbios_knl_Clock_Module__loggerObj__C
    008d1ca8 ti_sysbios_knl_Clock_tickMode__C
    008d1cac ti_sysbios_knl_Clock_tickSource__C
    008d1cb0 ti_sysbios_knl_Idle_funcList__A
    008d1cb4 ti_sysbios_knl_Semaphore_A_badContext__C
    008d1cb8 ti_sysbios_knl_Semaphore_A_noEvents__C
    008d1cbc ti_sysbios_knl_Semaphore_A_overflow__C
    008d1cc0 ti_sysbios_knl_Semaphore_Instance_State_pendQ__O
    008d1cc4 ti_sysbios_knl_Semaphore_LM_pend__C
    008d1cc8 ti_sysbios_knl_Semaphore_LM_post__C
    008d1ccc ti_sysbios_knl_Semaphore_Module__diagsEnabled__C
    008d1cd0 ti_sysbios_knl_Semaphore_Module__diagsIncluded__C
    008d1cd4 ti_sysbios_knl_Semaphore_Module__diagsMask__C
    008d1cd8 ti_sysbios_knl_Semaphore_Module__loggerFxn2__C
    008d1cdc ti_sysbios_knl_Semaphore_Module__loggerFxn4__C
    008d1ce0 ti_sysbios_knl_Semaphore_Module__loggerObj__C
    008d1ce4 ti_sysbios_knl_Swi_A_badPriority__C
    008d1ce8 ti_sysbios_knl_Swi_LD_end__C
    008d1cec ti_sysbios_knl_Swi_LM_begin__C
    008d1cf0 ti_sysbios_knl_Swi_LM_post__C
    008d1cf4 ti_sysbios_knl_Swi_Module__diagsEnabled__C
    008d1cf8 ti_sysbios_knl_Swi_Module__diagsIncluded__C
    008d1cfc ti_sysbios_knl_Swi_Module__diagsMask__C
    008d1d00 ti_sysbios_knl_Swi_Module__loggerFxn1__C
    008d1d04 ti_sysbios_knl_Swi_Module__loggerFxn4__C
    008d1d08 ti_sysbios_knl_Swi_Module__loggerObj__C
    008d1d0c ti_sysbios_knl_Swi_Object__count__C
    008d1d10 ti_sysbios_knl_Task_A_badPriority__C
    008d1d14 ti_sysbios_knl_Task_E_spOutOfBounds__C
    008d1d18 ti_sysbios_knl_Task_E_stackOverflow__C
    008d1d1c ti_sysbios_knl_Task_LD_block__C
    008d1d20 ti_sysbios_knl_Task_LD_exit__C
    008d1d24 ti_sysbios_knl_Task_LD_ready__C
    008d1d28 ti_sysbios_knl_Task_LM_setPri__C
    008d1d2c ti_sysbios_knl_Task_LM_switch__C
    008d1d30 ti_sysbios_knl_Task_LM_yield__C
    008d1d34 ti_sysbios_knl_Task_Module_State_inactiveQ__O
    008d1d38 ti_sysbios_knl_Task_Module_State_terminatedQ__O
    008d1d3c ti_sysbios_knl_Task_Module__diagsEnabled__C
    008d1d40 ti_sysbios_knl_Task_Module__diagsIncluded__C
    008d1d44 ti_sysbios_knl_Task_Module__diagsMask__C
    008d1d48 ti_sysbios_knl_Task_Module__loggerFxn2__C
    008d1d4c ti_sysbios_knl_Task_Module__loggerFxn4__C
    008d1d50 ti_sysbios_knl_Task_Module__loggerObj__C
    008d1d54 ti_sysbios_knl_Task_Object__count__C
    008d1d58 ti_sysbios_knl_Task_allBlockedFunc__C
    008d1d5c ti_sysbios_knl_Task_numConstructedTasks__C
    008d1d60 ti_sysbios_knl_Task_numPriorities__C
    008d1d64 ti_sysbios_timers_timer64_Timer_A_notAvailable__C
    008d1d68 ti_sysbios_timers_timer64_Timer_E_cannotSupport__C
    008d1d6c ti_sysbios_timers_timer64_Timer_Module__diagsEnabled__C
    008d1d70 ti_sysbios_timers_timer64_Timer_Module__diagsIncluded__C
    008d1d74 ti_sysbios_timers_timer64_Timer_Module__diagsMask__C
    008d1d78 ti_sysbios_timers_timer64_Timer_anyMask__C
    008d1d7c ti_sysbios_timers_timer64_Timer_freqDivisor__C
    008d1d80 ti_sysbios_timers_timer64_Timer_numLocalTimers__C
    008d1d84 ti_sysbios_timers_timer64_Timer_numTimerDevices__C
    008d1d88 ti_sysbios_xdcruntime_GateThreadSupport_Instance_State_gate__O
    008d1d8c xdc_runtime_Assert_E_assertFailed__C
    008d1d90 xdc_runtime_Core_A_initializedParams__C
    008d1d94 xdc_runtime_Core_Module__diagsEnabled__C
    008d1d98 xdc_runtime_Core_Module__diagsIncluded__C
    008d1d9c xdc_runtime_Core_Module__diagsMask__C
    008d1da0 xdc_runtime_Error_E_generic__C
    008d1da4 xdc_runtime_Error_E_memory__C
    008d1da8 xdc_runtime_Error_Module__diagsEnabled__C
    008d1dac xdc_runtime_Error_Module__diagsIncluded__C
    008d1db0 xdc_runtime_Error_Module__diagsMask__C
    008d1db4 xdc_runtime_Error_Module__loggerFxn8__C
    008d1db8 xdc_runtime_Error_Module__loggerObj__C
    008d1dbc xdc_runtime_Error_policy__C
    008d1dc0 xdc_runtime_Error_raiseHook__C
    008d1dc4 xdc_runtime_IGateProvider_Interface__BASE__C
    008d1dc8 xdc_runtime_IHeap_Interface__BASE__C
    008d1dcc xdc_runtime_IModule_Interface__BASE__C
    008d1dd0 xdc_runtime_Log_L_error__C
    008d1dd4 xdc_runtime_Main_Module__diagsEnabled__C
    008d1dd8 xdc_runtime_Main_Module__diagsIncluded__C
    008d1ddc xdc_runtime_Main_Module__diagsMask__C
    008d1de0 xdc_runtime_Main_Module__loggerFxn4__C
    008d1de4 xdc_runtime_Main_Module__loggerObj__C
    008d1de8 xdc_runtime_Memory_defaultHeapInstance__C
    008d1dec xdc_runtime_Startup_execImpl__C
    008d1df0 xdc_runtime_Startup_lastFxns__A
    008d1df4 xdc_runtime_Startup_maxPasses__C
    008d1df8 xdc_runtime_Startup_sfxnRts__C
    008d1dfc xdc_runtime_Startup_sfxnTab__C
    008d1e00 xdc_runtime_System_Module__gateObj__C
    008d1e04 xdc_runtime_System_extendFxn__C
    008d1e08 xdc_runtime_System_maxAtexitHandlers__C
    008d1e0c xdc_runtime_Text_charTab__C
    008d1e10 xdc_runtime_Text_nameEmpty__C
    008d1e14 xdc_runtime_Text_nameStatic__C
    008d1e18 xdc_runtime_Text_nameUnknown__C
    008d1e1c xdc_runtime_Text_nodeTab__C
    008d1e20 xdc_runtime_Text_visitRopeFxn__C
    008d1e24 ti_sdo_ipc_SharedRegion_Module__id__C
    008d1e26 ti_sdo_ipc_SharedRegion_numEntries__C
    008d1e28 ti_sdo_ipc_SharedRegion_translate__C
    008d1e2a ti_sdo_ipc_family_c647x_Interrupt_enableKick__C
    008d1e2c ti_sdo_ipc_family_c647x_MultiProcSetup_Module__id__C
    008d1e2e ti_sdo_ipc_gates_GateHWSem_Module__id__C
    008d1e30 ti_sdo_ipc_gates_GateMPSupportNull_Module__id__C
    008d1e32 ti_sdo_ipc_gates_GatePeterson_Module__id__C
    008d1e34 ti_sdo_ipc_heaps_HeapMemMP_Module__id__C
    008d1e36 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__id__C
    008d1e38 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__id__C
    008d1e3a ti_sdo_ipc_transports_TransportShm_Module__id__C
    008d1e3c ti_sdo_ipc_transports_TransportShm_notifyEventId__C
    008d1e3e ti_sdo_utils_MultiProc_Module__id__C
    008d1e40 ti_sdo_utils_MultiProc_numProcessors__C
    008d1e42 ti_sdo_utils_MultiProc_numProcsInCluster__C
    008d1e44 ti_sdo_utils_NameServer_Module__id__C
    008d1e46 ti_sysbios_BIOS_Module__id__C
    008d1e48 ti_sysbios_family_c64p_EventCombiner_Module__id__C
    008d1e4a ti_sysbios_family_c64p_Exception_Module__id__C
    008d1e4c ti_sysbios_family_c64p_Hwi_Module__id__C
    008d1e4e ti_sysbios_family_c64p_Hwi_Module__loggerDefined__C
    008d1e50 ti_sysbios_family_c66_tci66xx_CpIntc_Module__id__C
    008d1e52 ti_sysbios_gates_GateMutexPri_Module__id__C
    008d1e54 ti_sysbios_gates_GateMutex_Module__id__C
    008d1e56 ti_sysbios_gates_GateSwi_Module__id__C
    008d1e58 ti_sysbios_hal_Hwi_Module__id__C
    008d1e5a ti_sysbios_heaps_HeapMem_Module__id__C
    008d1e5c ti_sysbios_knl_Clock_Module__id__C
    008d1e5e ti_sysbios_knl_Clock_Module__loggerDefined__C
    008d1e60 ti_sysbios_knl_Semaphore_Module__id__C
    008d1e62 ti_sysbios_knl_Semaphore_Module__loggerDefined__C
    008d1e64 ti_sysbios_knl_Swi_Module__id__C
    008d1e66 ti_sysbios_knl_Swi_Module__loggerDefined__C
    008d1e68 ti_sysbios_knl_Task_Module__id__C
    008d1e6a ti_sysbios_knl_Task_Module__loggerDefined__C
    008d1e6c ti_sysbios_knl_Task_deleteTerminatedTasks__C
    008d1e6e ti_sysbios_knl_Task_initStackFlag__C
    008d1e70 ti_sysbios_timers_timer64_Timer_Module__id__C
    008d1e72 ti_sysbios_timers_timer64_Timer_startupNeeded__C
    008d1e74 xdc_runtime_Core_Module__id__C
    008d1e76 xdc_runtime_Error_Module__loggerDefined__C
    008d1e78 xdc_runtime_Error_maxDepth__C
    008d1e7a xdc_runtime_Main_Module__id__C
    008d1e7c xdc_runtime_Main_Module__loggerDefined__C
    008d1e7e xdc_runtime_Memory_Module__id__C
    008d1e80 xdc_runtime_Text_charCnt__C
    008d1e82 xdc_runtime_Text_isLoaded__C
    008d1e84 xdc_runtime_Text_registryModsLastId__C
    008d1e86 xdc_runtime_Text_unnamedModsLastId__C
    008d1e88 _stack
    008d2e88 __CIOBUF_
    008d2e88 __TI_STACK_END
    008d3000 ti_sysbios_family_c64p_Hwi0
    008d3020 ti_sysbios_family_c64p_Hwi1
    008d3040 ti_sysbios_family_c64p_Hwi2
    008d3060 ti_sysbios_family_c64p_Hwi3
    008d3080 ti_sysbios_family_c64p_Hwi4
    008d30a0 ti_sysbios_family_c64p_Hwi5
    008d30c0 ti_sysbios_family_c64p_Hwi6
    008d30e0 ti_sysbios_family_c64p_Hwi7
    008d3100 ti_sysbios_family_c64p_Hwi8
    008d3120 ti_sysbios_family_c64p_Hwi9
    008d3140 ti_sysbios_family_c64p_Hwi10
    008d3160 ti_sysbios_family_c64p_Hwi11
    008d3180 ti_sysbios_family_c64p_Hwi12
    008d31a0 ti_sysbios_family_c64p_Hwi13
    008d31c0 ti_sysbios_family_c64p_Hwi14
    008d31e0 ti_sysbios_family_c64p_Hwi15
    008d3200 __TI_STATIC_BASE
    008d3200 abs_corr_ll
    008d3208 CORR_ON
    008d320c idx_tap
    008d3210 idx_samp
    008d3218 yPow_ll
    008d3220 xPow_ll
    008d3228 nextProcId
    008d322c status
    008d3230 i
    008d3250 dsp_num
    008d3254 region_id
    008d3260 Ipc_sr0MemorySetup
    008d3264 hGpio_handle
    008d3268 RANGING
    008d326c peak_value
    008d3270 buf_idx_value
    008d3274 impulse_power_int
    008d3278 ranging_pulses_sent
    008d327c total_set_ranging_pulses_sent
    008d3280 interval
    008d3284 sent_time
    008d3288 found_time
    008d328c PULSING
    008d3290 PULSE_ON
    008d3294 PULSE_ON_PERIOD
    008d3298 PULSE_OFF_PERIOD
    008d329c PULSE_COUNT
    008d32a0 samples_left
    008d32a4 pulse_idx
    008d32a8 loop_pulse_idx
    008d32ac delay_idx
    008d32b0 start_pulse_idx
    008d32b4 finish_pulse_idx
    008d32b8 start_pulse_interval_idx
    008d32bc PERF_CORR
    008d32c0 CORR_BACKOFF_SAMP
    008d32c4 CORR_BACKOFF_INT
    008d32c8 corr_idx
    008d32cc load_corr_idx
    008d32d0 shift_idx
    008d32d4 max_shift
    008d32d8 max_abs_corr
    008d32dc PERF_UPDATE
    008d32e0 tx_high
    008d32e4 start_update_interval_idx
    008d32e8 N_taps
    008d32ec N_samps
    008d32f0 ICS_OVERRIDE
    008d32f4 FIRST_FRAME
    008d32fc AC_GAIN
    008d3300 Gain_Tests
    008d3304 TxPow
    008d3308 Delta_sent_time
    008d330c POWER_PERIOD
    008d3310 Sent
    008d3314 AC_ADAPTION
    008d3318 GainNorm
    008d331c AdaptItt
    008d3320 Gain
    008d3324 AC_monitor
    008d3328 APU_elements
    008d332c CurrentAPU
    008d3330 Iso
    008d3334 MinIso
    008d3338 EscapeAdaption
    008d333c low_Current_Gain
    008d3340 low_Current_Index
    008d3344 AC_Loop_Itt
    008d3348 Start
    008d334c FINAL_MSG_SENT
    008d3350 RcvLogCnt
    008d3354 RcvTimeCnt
    008d3358 SendTimeCnt
    008d335c SendLogCnt
    008d3360 resMgrInstance
    008d3364 userInitConfig
    008d3368 ptrRMIArray
    008d336c ptrInitCfgArray
    008d3370 hwiInterrupt
    008d338c edma3NumPaRAMSets
    008d3394 buffer_status
    008d33a0 irqRaised1
    008d33a2 irqRaised2
    008d33a4 transferCallback
    008d33b4 EDMA3_MAX_RM_INSTANCES
    008d33b8 notifySemHandle
    008d33bc numEdma3Instances
    008d5914 __TI_Handler_Table_Base
    008d5920 __TI_Handler_Table_Limit
    008d5950 __TI_CINIT_Base
    008d5998 __TI_CINIT_Limit
    0c000000 CPRI_RxWP_ch0
    0c000100 CPRI_RxRP_ch0
    0c000200 CPRI_TxWP_ch0
    0c000300 CPRI_TxRP_ch0
    0c000400 CPRI_RxWP_ch1
    0c000500 CPRI_RxRP_ch1
    0c000600 CPRI_TxWP_ch1
    0c000700 CPRI_TxRP_ch1
    0c001000 x_ll_shared
    80000000 CPRI_ANT0_RxBuffer
    8012c000 CPRI_ANT0_TxBuffer
    ffffffff __TI_pprof_out_hndl
    ffffffff __TI_prof_data_size
    ffffffff __TI_prof_data_start
    ffffffff __binit__
    ffffffff __c_args__
    ffffffff binit
    UNDEFED __TI_INITARRAY_Base
    UNDEFED __TI_INITARRAY_Limit

    [1573 symbols]
  • Core_1 cfg

    var Log = xdc.useModule ("xdc.runtime.Log");
    var Hwi = xdc.useModule('ti.sysbios.hal.Hwi');
    var C64_Hwi = xdc.useModule ("ti.sysbios.family.c64p.Hwi");
    var CpIntc = xdc.useModule('ti.sysbios.family.c66.tci66xx.CpIntc');

    var MultiProc = xdc.useModule('ti.sdo.utils.MultiProc');
    var DRV = xdc.useModule('ti.sdo.edma3.drv.DRV');
    var RM = xdc.useModule('ti.sdo.edma3.rm.RM');

    var ECM = xdc.useModule ("ti.sysbios.family.c64p.EventCombiner");
    var Cache = xdc.useModule('ti.sysbios.hal.Cache');
    var Settings = xdc.useModule('ti.csl.Settings');
    var Swi = xdc.useModule('ti.sysbios.knl.Swi');
    var HeapBuf = xdc.useModule('ti.sysbios.heaps.HeapBuf');
    var Timer = xdc.useModule('ti.sysbios.hal.Timer');
    //var Clock = xdc.useModule('ti.sysbios.knl.Clock');

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

    /*
    * 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 use MultiProc_setLocalId to set the procId
    * at runtime.
    */
    MultiProc.setConfig(null, ["CORE0", "CORE1", "CORE2"]);
    //MultiProc.setConfig(null, ["CORE0", "CORE1"]);
    //MultiProc.setConfig(null, ["CORE1", "CORE2"]);

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

    /* Modules explicitly used in the application */
    var Notify = xdc.useModule('ti.sdo.ipc.Notify');
    var Ipc = xdc.useModule('ti.sdo.ipc.Ipc');
    var BIOS = xdc.useModule('ti.sysbios.BIOS');
    BIOS.heapSize = 0x8000;
    var Task = xdc.useModule('ti.sysbios.knl.Task');
    var MessageQ = xdc.useModule('ti.sdo.ipc.MessageQ');
    var HeapBufMP = xdc.useModule('ti.sdo.ipc.heaps.HeapBufMP');

    Notify.numEvents = 32;

    //var tsk0 = Task.create('&tsk0_func');
    //tsk0.instance.name = "tsk0";

    /* To avoid wasting shared memory for MessageQ transports */
    /*for (var i = 0; i < MultiProc.numProcessors; i++) {
    Ipc.setEntryMeta({
    remoteProcId: i,
    setupMessageQ: false,
    });
    }*/

    /* Synchronize all processors (this will be done in Ipc_start) */
    Ipc.procSync = Ipc.ProcSync_ALL;

    /* Shared Memory base address and length */
    //var SHAREDMEM = 0x0C000000;
    //var SHAREDMEMSIZE = 0x00200000;
    var SHAREDMEM = 0x0C12C400;
    var SHAREDMEMSIZE = 0x00010000;

    /*
    * Need to define the shared region. The IPC modules use this
    * to make portable pointers. All processors need to add this
    * call with their base address of the shared memory region.
    * If the processor cannot access the memory, do not add it.
    */
    var SharedRegion = xdc.useModule('ti.sdo.ipc.SharedRegion');
    SharedRegion.setEntryMeta(0,
    { base: SHAREDMEM,
    len: SHAREDMEMSIZE,
    ownerProcId: 0,
    isValid: true,
    name: "DDR2_RAM",
    });

    /* Create a semaphore with count 0 */
    var Semaphore = xdc.useModule('ti.sysbios.knl.Semaphore');
    Program.global.notifySemHandle = Semaphore.create(0);

    //var swi0Params = new Swi.Params();
    //swi0Params.instance.name = "swi_rx_ipc";
    //swi0Params.priority = 2;
    //Program.global.swi_rx_ipc = Swi.create("&swi_receive_ipc", swi0Params);
    BIOS.cpuFreq.lo = 1200000000;

    // Create data sections for specific memory locations
    //Program.sectMap[".A_inv_vals"] = new Program.SectionSpec();
    //Program.sectMap[".A_inv_vals"].loadAddress=0x80258010; //change the load address based on L2SRAM, MSMC or DDR memory.
    //Program.sectMap[".A_inv_vals"].type = "NOINIT";

    //Clock.timerId = 7;
    //tsk0.priority = 15;
  • Core_2 cfg

    var System = xdc.useModule('xdc.runtime.System');
    var hlink = xdc.useModule('ti.drv.hyplnk.Settings');
    /* Use the CSL module and indicate that INTC library will be used. */
    var cslSettings = xdc.useModule ('ti.csl.Settings');
    cslSettings.useCSLIntcLib = true;

    Program.sectMap[".text"] = "MSMCSRAM";
    Program.sectMap[".const"] = "MSMCSRAM";
    Program.sectMap[".init_array"] = "L2SRAM";
    Program.sectMap[".csl_vect"] = "L2SRAM";
    Program.stack = 1024*4 + 0x400;

    // Create data sections for specific memory locations
    Program.sectMap[".bss:hyplnkData"] = new Program.SectionSpec();
    Program.sectMap[".bss:hyplnkData"].loadAddress=0x830000; //change the load address based on L2SRAM, MSMC or DDR memory.


    var Log = xdc.useModule ("xdc.runtime.Log");
    var Hwi = xdc.useModule('ti.sysbios.hal.Hwi');
    var C64_Hwi = xdc.useModule ("ti.sysbios.family.c64p.Hwi");
    var CpIntc = xdc.useModule('ti.sysbios.family.c66.tci66xx.CpIntc');

    var MultiProc = xdc.useModule('ti.sdo.utils.MultiProc');
    var DRV = xdc.useModule('ti.sdo.edma3.drv.DRV');
    var RM = xdc.useModule('ti.sdo.edma3.rm.RM');

    var ECM = xdc.useModule ("ti.sysbios.family.c64p.EventCombiner");
    var Cache = xdc.useModule('ti.sysbios.hal.Cache');
    var Timer = xdc.useModule('ti.sysbios.hal.Timer');
    var Settings = xdc.useModule('ti.csl.Settings');
    var Swi = xdc.useModule('ti.sysbios.knl.Swi');
    var HeapBuf = xdc.useModule('ti.sysbios.heaps.HeapBuf');

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

    /*
    * 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 use MultiProc_setLocalId to set the procId
    * at runtime.
    */
    //var nameList = MultiProc.getDeviceProcNames();
    //MultiProc.setConfig(null, nameList);
    MultiProc.setConfig(null, ["CORE0", "CORE1", "CORE2"]);
    //MultiProc.setConfig(null, ["CORE1", "CORE2"]);
    //MultiProc.setConfig(null, ["CORE2"]);

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

    /* Modules explicitly used in the application */
    var Notify = xdc.useModule('ti.sdo.ipc.Notify');
    var Ipc = xdc.useModule('ti.sdo.ipc.Ipc');
    var BIOS = xdc.useModule('ti.sysbios.BIOS');
    BIOS.heapSize = 0x8000;
    var Task = xdc.useModule('ti.sysbios.knl.Task');
    var MessageQ = xdc.useModule('ti.sdo.ipc.MessageQ');
    var HeapBufMP = xdc.useModule('ti.sdo.ipc.heaps.HeapBufMP');

    Notify.numEvents = 32;

    //var tsk0 = Task.create('&tsk0_func');
    //tsk0.instance.name = "tsk0";


    /* Synchronize all processors (this will be done in Ipc_start) */
    Ipc.procSync = Ipc.ProcSync_ALL;

    /* Shared Memory base address and length */
    //var SHAREDMEM = 0x0C000000;
    //var SHAREDMEMSIZE = 0x00200000;
    var SHAREDMEM = 0x0C12C400;
    var SHAREDMEMSIZE = 0x00010000;

    /*
    * Need to define the shared region. The IPC modules use this
    * to make portable pointers. All processors need to add this
    * call with their base address of the shared memory region.
    * If the processor cannot access the memory, do not add it.
    */
    var SharedRegion = xdc.useModule('ti.sdo.ipc.SharedRegion');
    SharedRegion.setEntryMeta(0,
    { base: SHAREDMEM,
    len: SHAREDMEMSIZE,
    ownerProcId: 0,
    isValid: true,
    name: "DDR2_RAM",
    });
  • Core_1 map

    ******************************************************************************
    TMS320C6x Linker PC v7.4.4
    ******************************************************************************
    >> Linked Thu Oct 20 15:57:44 2016

    OUTPUT FILE NAME: <ICSCPRI.out>
    ENTRY POINT SYMBOL: "_c_int00" address: 008c2a00


    MEMORY CONFIGURATION

    name origin length used unused attr fill
    ---------------------- -------- --------- -------- -------- ---- --------
    INT_VECTOR 00800000 00000200 00000000 00000200 RW X
    L2SRAM 00800200 000ffe00 000d5794 0002a66c RW X
    L1PSRAM 00e00000 00008000 00000000 00008000 RW X
    L1DSRAM 00f00000 00008000 00000000 00008000 RW
    CPRI_BUF_PTR 0c000000 00001000 00000704 000008fc RW
    MSMCSRAM 0c001000 001ff000 0002e000 001d1000 RW X
    CPRI_RX_DATA 80000000 0012c000 00096000 00096000 RW
    CPRI_TX_DATA 8012c000 0012c000 00096000 00096000 RW
    DDR3 80258000 1fda8000 00000000 1fda8000 RW


    SEGMENT ALLOCATION MAP

    run origin load origin length init length attrs members
    ---------- ----------- ---------- ----------- ----- -------
    00800200 00800200 00096f80 00000000 rw-
    00800200 00800200 00096f80 00000000 rw- .far
    00897180 00897180 000313a0 000313a0 r-x
    00897180 00897180 000313a0 000313a0 r-x .text
    008c8520 008c8520 0000537c 0000537c rw-
    008c8520 008c8520 0000537c 0000537c rw- .fardata
    008cd8a0 008cd8a0 000045e8 000045e8 r--
    008cd8a0 008cd8a0 000045e8 000045e8 r-- .const
    008d1e88 008d1e88 00001120 00000000 rw-
    008d1e88 008d1e88 00001000 00000000 rw- .stack
    008d2e88 008d2e88 00000120 00000000 rw- .cio
    008d2fa8 008d2fa8 00000058 00000058 r--
    008d2fa8 008d2fa8 00000058 00000058 r-- .switch
    008d3000 008d3000 00000200 00000200 r-x
    008d3000 008d3000 00000200 00000200 r-x .vecs
    008d3200 008d3200 00000068 00000000 rw-
    008d3200 008d3200 00000068 00000000 rw- .bss
    008d3268 008d3268 0000014a 0000014a rw-
    008d3268 008d3268 0000014a 0000014a rw- .neardata
    008d33b4 008d33b4 0000000c 0000000c r--
    008d33b4 008d33b4 0000000c 0000000c r-- .rodata
    008d33c0 008d33c0 000025d8 000025d8 r--
    008d33c0 008d33c0 000025d8 000025d8 r-- .cinit
    0c000000 0c000000 00000704 00000000 rw-
    0c000000 0c000000 00000704 00000000 rw- .CpriBufferPointer
    0c001000 0c001000 0001e000 00000000 rw-
    0c001000 0c001000 0001e000 00000000 rw- .x_ll_shared
    80000000 80000000 00096000 00000000 rw-
    80000000 80000000 00096000 00000000 rw- .CpriRxBuffer
    8012c000 8012c000 00096000 00000000 rw-
    8012c000 8012c000 00096000 00000000 rw- .CpriTxBuffer


    SECTION ALLOCATION MAP

    output attributes/
    section page origin length input sections
    -------- ---- ---------- ---------- ----------------
    .init_array
    * 0 00800200 00000000 UNINITIALIZED

    xdc.meta 0 00800200 00000100 COPY SECTION
    00800200 00000100 UserProcessProject_pe66.oe66 (xdc.meta)

    .far 0 00800200 00096f80 UNINITIALIZED
    00800200 0005059a user_process_ICS+RF+.obj (.far)
    0085079a 00000006 --HOLE--
    008507a0 00023000 main.obj (.far)
    008737a0 0000df40 edma3_lld_drv.ae66 : edma3_drv_init.oe66 (.far)
    008816e0 0000c2f8 UserProcessProject_pe66.oe66 (.far)
    0088d9d8 00000008 rts6600_elf.lib : trgdrv.obj (.far)
    0088d9e0 00007a60 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.far)
    00895440 00001000 TRxDataInterface.obj (.far)
    00896440 00000800 UserProcessProject_pe66.oe66 (.far:taskStackSection)
    00896c40 00000400 InterCoreMsgController.obj (.far)
    00897040 00000140 rts6600_elf.lib : defs.obj (.far)

    .text 0 00897180 000313a0
    00897180 00001640 user_process_ICS+RF+.obj (.text)
    008987c0 000011c0 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_GateMP_Instance_init__F)
    00899980 00000f20 main.obj (.text)
    0089a8a0 00000c40 edma3_lld_drv.ae66 : edma3_drv_basic.oe66 (.text:EDMA3_DRV_requestChannel)
    0089b4e0 00000b80 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:EDMA3_RM_allocResource)
    0089c060 00000a60 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_heaps_HeapMemMP_alloc__E)
    0089cac0 000009e0 : Ipc.obj (.text:ti_sdo_ipc_heaps_HeapMemMP_free__E)
    0089d4a0 000009a0 : Ipc.obj (.text:Ipc_attach)
    0089de40 000009a0 ti.targets.rts6000.ae66 : System.oe66 (.text:xdc_runtime_System_doPrint__I)
    0089e7e0 00000920 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_Instance_init__F)
    0089f100 000008a0 : Ipc.obj (.text:ti_sdo_ipc_ListMP_Instance_init__F)
    0089f9a0 00000860 : Ipc.obj (.text:ti_sdo_ipc_GateMP_Instance_finalize__F)
    008a0200 00000840 : Ipc.obj (.text:MessageQ_put)
    008a0a40 00000780 : Ipc.obj (.text:ti_sdo_ipc_heaps_HeapMemMP_Instance_init__F)
    008a11c0 00000780 sysbios.lib : BIOS.obj (.text:ti_sysbios_family_c64p_Exception_handler__I)
    008a1940 00000720 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:edma3CCErrHandler)
    008a2060 00000700 ipc.lib : Ipc.obj (.text:Notify_registerEvent)
    008a2760 000006c0 : Ipc.obj (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_init__F)
    008a2e20 000006a0 : Ipc.obj (.text:NameServer_add)
    008a34c0 00000660 sysbios.lib : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_free__E)
    008a3b20 00000620 ipc.lib : Ipc.obj (.text:Notify_sendEvent)
    008a4140 00000620 sysbios.lib : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_alloc__E)
    008a4760 000005e0 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:EDMA3_RM_open)
    008a4d40 000005e0 ipc.lib : Ipc.obj (.text:Notify_registerEventSingle)
    008a5320 000005c0 : Ipc.obj (.text:ListMP_getHead)
    008a58e0 000005c0 : Ipc.obj (.text:Notify_unregisterEventSingle)
    008a5ea0 000005c0 rts6600_elf.lib : divd.obj (.text:__c6xabi_divd)
    008a6460 000005c0 : _printfi.obj (.text:_getarg_diouxp)
    008a6a20 000005c0 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_SharedRegion_start__F)
    008a6fe0 000005c0 sysbios.lib : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_Module_startup__F)
    008a75a0 00000580 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_get__F)
    008a7b20 00000580 : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_put__E)
    008a80a0 00000540 : Ipc.obj (.text:ti_sdo_ipc_Ipc_procSyncStart__I)
    008a85e0 00000500 TRxDataInterface.obj (.text)
    008a8ae0 000004e0 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Instance_init__F)
    008a8fc0 000004a0 : Ipc.obj (.text:ti_sdo_ipc_gates_GatePeterson_Instance_init__F)
    008a9460 00000460 rts6600_elf.lib : _printfi.obj (.text:_printfi)
    008a98c0 00000460 : _printfi.obj (.text:_setfield)
    008a9d20 00000460 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_GateMP_setRegion0Reserved__F)
    008aa180 00000460 : Ipc.obj (.text:ti_sdo_ipc_Ipc_procSyncFinish__I)
    008aa5e0 00000440 : Ipc.obj (.text:ListMP_putTail)
    008aaa20 00000440 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:edma3TCErrHandler)
    008aae60 00000440 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_heaps_HeapMemMP_getStats__E)
    008ab2a0 00000440 : Ipc.obj (.text:ti_sdo_ipc_heaps_HeapMemMP_postInit__I)
    008ab6e0 00000420 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:EDMA3_RM_freeResource)
    008abb00 00000400 edma_xfer.obj (.text)
    008abf00 00000400 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_Notify_Instance_init__F)
    008ac300 00000400 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Semaphore_pend__E)
    008ac700 000003c0 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_SharedRegion_reserveMemory__F)
    008acac0 000003c0 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Task_setPri__E)
    008ace80 000003a0 rts6600_elf.lib : fputs.obj (.text:fputs)
    008ad220 00000380 ipc.lib : Ipc.obj (.text:HeapMemMP_sharedMemReq)
    008ad5a0 00000340 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:EDMA3_RM_create)
    008ad8e0 00000340 ipc.lib : Ipc.obj (.text:GateMP_sharedMemReq)
    008adc20 00000340 : Ipc.obj (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_swiFxn__I)
    008adf60 00000320 rts6600_elf.lib : _printfi.obj (.text:_pproc_fge)
    008ae280 00000320 edma_c6670_int_reg.obj (.text)
    008ae5a0 00000300 edma3_lld_drv.ae66 : edma3_drv_basic.oe66 (.text:EDMA3_DRV_freeChannel)
    008ae8a0 00000300 ipc.lib : Ipc.obj (.text:GateMP_openByAddr)
    008aeba0 00000300 : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_openByAddr__F)
    008aeea0 00000300 sysbios.lib : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_dispatchC__I)
    008af1a0 000002e0 InterCoreMsgController.obj (.text)
    008af480 000002e0 ipc.lib : Ipc.obj (.text:SharedRegion_getEntry)
    008af760 000002e0 : Ipc.obj (.text:SharedRegion_getPtr)
    008afa40 000002e0 rts6600_elf.lib : _printfi.obj (.text:_pproc_fwp)
    008afd20 000002e0 sysbios.lib : BIOS.obj (.text:ti_sysbios_gates_GateMutexPri_enter__E)
    008b0000 000002e0 : BIOS.obj (.text:ti_sysbios_knl_Task_Module_startup__F)
    008b02e0 000002c0 edma3_lld_drv.ae66 : edma3_drv_init.oe66 (.text:EDMA3_DRV_open)
    008b05a0 000002c0 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_isr__I)
    008b0860 000002a0 : Ipc.obj (.text:Ipc_start)
    008b0b00 000002a0 : Ipc.obj (.text:NameServer_getLocal)
    008b0da0 000002a0 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:edma3ComplHandler)
    008b1040 000002a0 edma3_lld_drv.ae66 : edma3_drv_init.oe66 (.text:edma3OpenResMgr)
    008b12e0 000002a0 rts6600_elf.lib : _printfi.obj (.text:fcvt)
    008b1580 000002a0 sysbios.lib : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_Module_startup__F)
    008b1820 000002a0 : BIOS.obj (.text:ti_sysbios_knl_Clock_workFunc__E)
    008b1ac0 00000280 edma3_lld_drv.ae66 : edma3_drv_init.oe66 (.text:EDMA3_DRV_create)
    008b1d40 00000280 : edma3_drv_basic.oe66 (.text:EDMA3_DRV_disableTransfer)
    008b1fc0 00000280 ErrorController.obj (.text)
    008b2240 00000280 ipc.lib : Ipc.obj (.text:SharedRegion_getSRPtr)
    008b24c0 00000280 rts6600_elf.lib : divf.obj (.text:__c6xabi_divf)
    008b2740 00000280 sysbios.lib : BIOS.obj (.text:deviceConfig$44)
    008b29c0 00000280 rts6600_elf.lib : _printfi.obj (.text:ecvt)
    008b2c40 00000280 edma3_lld_drv.ae66 : edma3_drv_basic.oe66 (.text:edma3RemoveMapping)
    008b2ec0 00000280 edma_cs.obj (.text)
    008b3140 00000280 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_sharedMemReq__F)
    008b33c0 00000280 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Clock_Instance_init__F)
    008b3640 00000280 : BIOS.obj (.text:ti_sysbios_knl_Task_exit__E)
    008b38c0 00000280 ti.targets.rts6000.ae66 : Core-mem.oe66 (.text:xdc_runtime_Core_createObject__I)
    008b3b40 00000280 : Error.oe66 (.text:xdc_runtime_Error_raiseX__F)
    008b3dc0 00000260 edma3_lld_drv.ae66 : edma3_drv_basic.oe66 (.text:EDMA3_DRV_enableTransfer)
    008b4020 00000260 ipc.lib : Ipc.obj (.text:ListMP_sharedMemReq)
    008b4280 00000260 : Ipc.obj (.text:ti_sdo_ipc_ListMP_Instance_finalize__F)
    008b44e0 00000260 : Ipc.obj (.text:ti_sdo_ipc_heaps_HeapMemMP_Instance_finalize__F)
    008b4740 00000260 : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_disableEvent__E)
    008b49a0 00000260 ti.targets.rts6000.ae66 : Startup.oe66 (.text:xdc_runtime_Startup_startMods__I)
    008b4c00 00000260 UserProcessProject_pe66.oe66 (.text:xdc_runtime_System_printfExtend__I)
    008b4e60 00000240 rts6600_elf.lib : imath64.obj (.text:__c6xabi_divull)
    008b50a0 00000240 : _printfi.obj (.text:_pconv_e)
    008b52e0 00000240 : _printfi.obj (.text:_pproc_diouxp)
    008b5520 00000240 sysbios.lib : BIOS.obj (.text:ti_sysbios_family_c64p_Exception_internalHandler__I)
    008b5760 00000240 : BIOS.obj (.text:ti_sysbios_knl_Semaphore_post__E)
    008b59a0 00000220 rts6600_elf.lib : _printfi.obj (.text:_pproc_str)
    008b5bc0 00000220 : fputc.obj (.text:fputc)
    008b5de0 00000220 sysbios.lib : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_reconfig__E)
    008b6000 00000220 : BIOS.obj (.text:ti_sysbios_knl_Swi_run__I)
    008b6220 00000220 : BIOS.obj (.text:ti_sysbios_knl_Task_schedule__I)
    008b6440 00000220 : BIOS.obj (.text:ti_sysbios_knl_Task_startup__E)
    008b6660 00000200 ipc.lib : Ipc.obj (.text:GateMP_enter)
    008b6860 00000200 : Ipc.obj (.text:GateMP_leave)
    008b6a60 00000200 : Ipc.obj (.text:ListMP_openByAddr)
    008b6c60 00000200 rts6600_elf.lib : _printfi.obj (.text:_pconv_g)
    008b6e60 00000200 sysbios.lib : c64p_Hwi_disp_always.obj (.text:_ti_sysbios_family_c64p_Hwi_dispatchAlways)
    008b7060 00000200 : BIOS.obj (.text:block$56)
    008b7260 00000200 rts6600_elf.lib : setvbuf.obj (.text:setvbuf)
    008b7460 00000200 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_family_c647x_MultiProcSetup_init__I)
    008b7660 00000200 : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_sendEvent__E)
    008b7860 00000200 : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_Instance_finalize__F)
    008b7a60 000001e0 : Ipc.obj (.text:ti_sdo_ipc_GateMP_attach__F)
    008b7c40 000001e0 : Ipc.obj (.text:ti_sdo_ipc_GateMP_getFreeResource__I)
    008b7e20 000001e0 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Task_postInit__I)
    008b8000 000001e0 : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_getFreq__E)
    008b81e0 000001c0 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:EDMA3_RM_close)
    008b83a0 000001c0 ipc.lib : Ipc.obj (.text:HeapMemMP_openByAddr)
    008b8560 000001c0 rts6600_elf.lib : _printfi.obj (.text:_mcpy)
    008b8720 000001c0 edma_init.obj (.text)
    008b88e0 000001c0 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_registerEvent__E)
    008b8aa0 000001c0 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Swi_Instance_init__F)
    008b8c60 000001c0 : BIOS.obj (.text:ti_sysbios_knl_Task_checkStacks__E)
    008b8e20 000001c0 : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_setPeriodMicroSecs__E)
    008b8fe0 000001a0 rts6600_elf.lib : trgdrv.obj (.text:HOSTrename)
    008b9180 000001a0 ipc.lib : Ipc.obj (.text:SharedRegion_getCacheLineSize)
    008b9320 000001a0 : Ipc.obj (.text:SharedRegion_getHeap)
    008b94c0 000001a0 : Ipc.obj (.text:SharedRegion_isCacheEnabled)
    008b9660 000001a0 rts6600_elf.lib : imath40.obj (.text:__c6xabi_divul)
    008b9800 000001a0 : log.obj (.text:log)
    008b99a0 000001a0 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_GateMP_openRegion0Reserved__F)
    008b9b40 000001a0 : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_enableEvent__E)
    008b9ce0 000001a0 : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_unregisterEvent__E)
    008b9e80 000001a0 : Ipc.obj (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_attach__E)
    008ba020 000001a0 sysbios.lib : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_dispatch__F)
    008ba1c0 000001a0 : BIOS.obj (.text:ti_sysbios_gates_GateMutex_enter__E)
    008ba360 000001a0 : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_start__E)
    008ba500 00000180 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:EDMA3_RM_registerTccCb)
    008ba680 00000180 ipc.lib : Ipc.obj (.text:MultiProc_setLocalId)
    008ba800 00000180 : Ipc.obj (.text:NameServer_getHandle)
    008ba980 00000180 : Ipc.obj (.text:Notify_intLineRegistered)
    008bab00 00000180 rts6600_elf.lib : copy_decompress_rle.obj (.text:__TI_decompress_rle_core)
    008bac80 00000180 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:edma3GlobalRegionInit)
    008bae00 00000180 rts6600_elf.lib : frexp.obj (.text:frexp)
    008baf80 00000180 sysbios.lib : c64p_Exception_asm.obj (.text)
    008bb100 00000180 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_MessageQ_registerTransport__F)
    008bb280 00000180 : Ipc.obj (.text:ti_sdo_ipc_Notify_Module_startup__F)
    008bb400 00000180 : Ipc.obj (.text:ti_sdo_ipc_gates_GatePeterson_enter__E)
    008bb580 00000180 : Ipc.obj (.text:ti_sdo_utils_NameServer_Module_startup__F)
    008bb700 00000180 sysbios.lib : BIOS.obj (.text:ti_sysbios_heaps_HeapBuf_Module_startup__F)
    008bb880 00000180 : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_Instance_init__F)
    008bba00 00000180 : BIOS.obj (.text:ti_sysbios_knl_Swi_schedule__I)
    008bbb80 00000180 : BIOS.obj (.text:ti_sysbios_knl_Task_unblockI__E)
    008bbd00 00000180 ti.targets.rts6000.ae66 : Text.oe66 (.text:xdc_runtime_Text_putSite__F)
    008bbe80 00000160 edma3_lld_drv.ae66 : edma3_drv_init.oe66 (.text:EDMA3_DRV_close)
    008bbfe0 00000160 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:EDMA3_RM_unregisterTccCb)
    008bc140 00000160 : edma3resmgr.oe66 (.text:edma3ShadowRegionInit)
    008bc2a0 00000160 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_GateMP_createLocal__F)
    008bc400 00000160 : Ipc.obj (.text:ti_sdo_ipc_MessageQ_unregisterTransport__F)
    008bc560 00000160 : Ipc.obj (.text:ti_sdo_ipc_gates_GateHWSem_Instance_init__F)
    008bc6c0 00000160 : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_sharedMemReq__F)
    008bc820 00000160 : Ipc.obj (.text:ti_sdo_utils_NameServer_isRegistered__E)
    008bc980 00000160 : Ipc.obj (.text:ti_sdo_utils_NameServer_registerRemoteDriver__E)
    008bcae0 00000160 : Ipc.obj (.text:ti_sdo_utils_NameServer_unregisterRemoteDriver__E)
    008bcc40 00000140 edma3_lld_drv.ae66 : edma3_drv_adv.oe66 (.text:EDMA3_DRV_setPaRAM)
    008bcd80 00000140 ipc.lib : Ipc.obj (.text:GateMP_close)
    008bcec0 00000140 : Ipc.obj (.text:Notify_attach)
    008bd000 00000140 boot.ae66 : autoinit.oe66 (.text:_auto_init_elf)
    008bd140 00000140 rts6600_elf.lib : _printfi.obj (.text:_pproc_fflags)
    008bd280 00000140 data_transfer.obj (.text)
    008bd3c0 00000140 rts6600_elf.lib : lowlev.obj (.text:getdevice)
    008bd500 00000140 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_Notify_exec__F)
    008bd640 00000140 sysbios.lib : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_Module_startup__F)
    008bd780 00000140 : BIOS.obj (.text:ti_sysbios_family_c66_Cache_Module_startup__F)
    008bd8c0 00000140 : BIOS.obj (.text:ti_sysbios_gates_GateSwi_enter__E)
    008bda00 00000140 : BIOS.obj (.text:ti_sysbios_knl_Clock_Instance_finalize__F)
    008bdb40 00000140 : BIOS.obj (.text:ti_sysbios_knl_Semaphore_Instance_init__F)
    008bdc80 00000140 : BIOS.obj (.text:ti_sysbios_knl_Swi_post__E)
    008bddc0 00000140 : BIOS.obj (.text:ti_sysbios_knl_Task_blockI__E)
    008bdf00 00000140 : BIOS.obj (.text:ti_sysbios_knl_Task_yield__E)
    008be040 00000120 edma3_lld_drv.ae66 : edma3_drv_basic.oe66 (.text:EDMA3_DRV_clearErrorBits)
    008be160 00000120 rts6600_elf.lib : fclose.obj (.text:_closefile)
    008be280 00000120 : _printfi.obj (.text:_ltostr)
    008be3a0 00000120 : fseek.obj (.text:fseek)
    008be4c0 00000120 sysbios.lib : BIOS.obj (.text:rtsUnlock$0)
    008be5e0 00000120 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_MessageQ_Module_startup__F)
    008be700 00000120 : Ipc.obj (.text:ti_sdo_ipc_family_c647x_Interrupt_intRegister__E)
    008be820 00000120 : Ipc.obj (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_finalize__F)
    008be940 00000120 ti.targets.rts6000.ae66 : Text.oe66 (.text:xdc_runtime_Text_putLab__F)
    008bea60 00000100 rts6600_elf.lib : trgdrv.obj (.text:HOSTlseek)
    008beb60 00000100 : _io_perm.obj (.text:_wrt_ok)
    008bec60 00000100 edma_isr.obj (.text)
    008bed60 00000100 rts6600_elf.lib : fprintf.obj (.text:fprintf)
    008bee60 00000100 sysbios.lib : BIOS.obj (.text:initDevice$44)
    008bef60 00000100 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_GateMP_start__F)
    008bf060 00000100 : Ipc.obj (.text:ti_sdo_ipc_Notify_Instance_finalize__F)
    008bf160 00000100 : Ipc.obj (.text:ti_sdo_ipc_SharedRegion_attach__F)
    008bf260 00000100 : Ipc.obj (.text:ti_sdo_ipc_SharedRegion_clearReservedMemory__F)
    008bf360 00000100 : Ipc.obj (.text:ti_sdo_ipc_family_c647x_Interrupt_Module_startup__F)
    008bf460 00000100 : Ipc.obj (.text:ti_sdo_ipc_gates_GateHWSem_Module_startup__F)
    008bf560 00000100 : Ipc.obj (.text:ti_sdo_ipc_gates_GateMPSupportNull_enter__E)
    008bf660 00000100 : Ipc.obj (.text:ti_sdo_ipc_gates_GateMPSupportNull_leave__E)
    008bf760 00000100 : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShmSetup_attach__E)
    008bf860 00000100 sysbios.lib : BIOS.obj (.text:ti_sysbios_family_c64p_EventCombiner_dispatch__F)
    008bf960 00000100 : BIOS.obj (.text:ti_sysbios_gates_GateMutexPri_leave__E)
    008bfa60 00000100 : BIOS.obj (.text:ti_sysbios_knl_Clock_startI__E)
    008bfb60 00000100 : BIOS.obj (.text:ti_sysbios_knl_Swi_restoreHwi__E)
    008bfc60 00000100 ti.targets.rts6000.ae66 : Core-mem.oe66 (.text:xdc_runtime_Core_deleteObject__I)
    008bfd60 00000100 : Startup.oe66 (.text:xdc_runtime_Startup_exec__F)
    008bfe60 00000100 : Text.oe66 (.text:xdc_runtime_Text_putMod__F)
    008bff60 00000100 : Text.oe66 (.text:xdc_runtime_Text_visitRope2__I)
    008c0060 000000e0 edma3_lld_drv.ae66 : edma3_drv_init.oe66 (.text:EDMA3_DRV_delete)
    008c0140 000000e0 rts6600_elf.lib : trgdrv.obj (.text:HOSTopen)
    008c0220 000000e0 : _printfi.obj (.text:_div)
    008c0300 000000e0 : atoi.obj (.text:atoi)
    008c03e0 000000e0 : lowlev.obj (.text:close)
    008c04c0 000000e0 : copy_zero_init.obj (.text:decompress:ZI:__TI_zero_init)
    008c05a0 000000e0 : fflush.obj (.text:fflush)
    008c0680 000000e0 gpio.obj (.text)
    008c0760 000000e0 rts6600_elf.lib : ltoa.obj (.text:ltoa)
    008c0840 000000e0 : memset.obj (.text:memset)
    008c0920 000000e0 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_family_c647x_NotifySetup_attach__E)
    008c0a00 000000e0 : Ipc.obj (.text:ti_sdo_ipc_gates_GateHWSem_enter__E)
    008c0ae0 000000e0 sysbios.lib : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_Instance_finalize__F)
    008c0bc0 000000e0 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_Instance_init__F)
    008c0ca0 000000e0 : BIOS.obj (.text:ti_sysbios_knl_Clock_start__E)
    008c0d80 000000e0 : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_startup__E)
    008c0e60 000000e0 ti.targets.rts6000.ae66 : Error.oe66 (.text:xdc_runtime_Error_print__F)
    008c0f40 000000e0 : Memory.oe66 (.text:xdc_runtime_Memory_alloc__F)
    008c1020 000000c0 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:EDMA3_RM_delete)
    008c10e0 000000c0 rts6600_elf.lib : trgdrv.obj (.text:HOSTread)
    008c11a0 000000c0 : trgdrv.obj (.text:HOSTunlink)
    008c1260 000000c0 : trgdrv.obj (.text:HOSTwrite)
    008c1320 000000c0 ipc.lib : Ipc.obj (.text:HeapMemMP_create)
    008c13e0 000000c0 : Ipc.obj (.text:ListMP_create)
    008c14a0 000000c0 rts6600_elf.lib : dtor_list.obj (.text:_Z11__TI_atexitPFYvPvES_S_)
    008c1560 000000c0 : dtor_list.obj (.text:__cxa_finalize)
    008c1620 000000c0 : divu.obj (.text:__divu)
    008c16e0 000000c0 : fflush.obj (.text:_doflush)
    008c17a0 000000c0 : exit.obj (.text:exit)
    008c1860 000000c0 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_Object__create__S)
    008c1920 000000c0 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_GateMP_getRegion0ReservedSize__F)
    008c19e0 000000c0 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_ListMP_Object__create__S)
    008c1aa0 000000c0 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_Notify_Object__create__S)
    008c1b60 000000c0 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_Notify_execMany__I)
    008c1c20 000000c0 : Ipc.obj (.text:ti_sdo_ipc_family_c647x_Interrupt_intShmStub__I)
    008c1ce0 000000c0 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_gates_GatePeterson_Object__create__S)
    008c1da0 000000c0 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_heaps_HeapMemMP_Object__create__S)
    008c1e60 000000c0 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__create__S)
    008c1f20 000000c0 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__create__S)
    008c1fe0 000000c0 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_transports_TransportShm_Object__create__S)
    008c20a0 000000c0 sysbios.lib : BIOS.obj (.text:ti_sysbios_BIOS_errorRaiseHook__I)
    008c2160 000000c0 UserProcessProject_pe66.oe66 (.text:ti_sysbios_family_c64p_Hwi_Object__create__S)
    008c2220 000000c0 sysbios.lib : BIOS.obj (.text:ti_sysbios_gates_GateAll_leave__E)
    008c22e0 000000c0 : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_getStats__E)
    008c23a0 000000c0 : BIOS.obj (.text:ti_sysbios_knl_Clock_logTick__E)
    008c2460 000000c0 : BIOS.obj (.text:ti_sysbios_knl_Swi_Instance_finalize__F)
    008c2520 000000c0 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Swi_Object__create__S)
    008c25e0 000000c0 sysbios.lib : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_stop__E)
    008c26a0 000000c0 ti.targets.rts6000.ae66 : System.oe66 (.text:xdc_runtime_System_formatNum__I)
    008c2760 000000c0 UserProcessProject_pe66.oe66 (.text:xdc_runtime_knl_GateThread_Object__create__S)
    008c2820 000000a0 rts6600_elf.lib : trgdrv.obj (.text:HOSTclose)
    008c28c0 000000a0 : trgdrv.obj (.text:HOSTtime)
    008c2960 000000a0 : remu.obj (.text:__remu)
    008c2a00 000000a0 boot.ae66 : boot.oe66 (.text:_c_int00)
    008c2aa0 000000a0 rts6600_elf.lib : fopen.obj (.text:_cleanup)
    008c2b40 000000a0 : _printfi.obj (.text:_ecpy)
    008c2be0 000000a0 : _printfi.obj (.text:_fcpy)
    008c2c80 000000a0 : _printfi.obj (.text:_pconv_f)
    008c2d20 000000a0 sysbios.lib : c64p_Hwi_asm.obj (.text:_ti_sysbios_family_c64p_Hwi_plug__E)
    008c2dc0 000000a0 rts6600_elf.lib : lowlev.obj (.text:finddevice)
    008c2e60 000000a0 : lowlev.obj (.text:lseek)
    008c2f00 000000a0 : memcpy64.obj (.text:memcpy)
    008c2fa0 000000a0 : modf.obj (.text:modf)
    008c3040 000000a0 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_family_c647x_Interrupt_intUnregister__E)
    008c30e0 000000a0 : Ipc.obj (.text:ti_sdo_ipc_gates_GatePeterson_leave__E)
    008c3180 000000a0 : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Instance_finalize__F)
    008c3220 000000a0 sysbios.lib : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_init__I)
    008c32c0 000000a0 rts6600_elf.lib : lowlev.obj (.text:write)
    008c3360 000000a0 ti.targets.rts6000.ae66 : Assert.oe66 (.text:xdc_runtime_Assert_raise__I)
    008c3400 00000080 rts6600_elf.lib : fixdu.obj (.text:__c6xabi_fixdu)
    008c3480 00000080 : llshift.obj (.text:__c6xabi_llshl)
    008c3500 00000080 sysbios.lib : c62_TaskSupport_asm.obj (.text:_ti_sysbios_family_c62_TaskSupport_swap__E)
    008c3580 00000080 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:edma3MemCpy)
    008c3600 00000080 UserProcessProject_pe66.oe66 (.text:malloc)
    008c3680 00000080 rts6600_elf.lib : rand.obj (.text:rand)
    008c3700 00000080 : trgmsg.obj (.text:readmsg)
    008c3780 00000080 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_gates_GateHWSem_Object__create__S)
    008c3800 00000080 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_gates_GateMPSupportNull_Object__create__S)
    008c3880 00000080 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_detach__E)
    008c3900 00000080 : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_swiFxn__I)
    008c3980 00000080 UserProcessProject_pe66.oe66 (.text:ti_sdo_utils_List_Object__create__S)
    008c3a00 00000080 sysbios.lib : BIOS.obj (.text:ti_sysbios_family_c62_TaskSupport_start__E)
    008c3a80 00000080 : BIOS.obj (.text:ti_sysbios_family_c64p_Exception_Module_startup__F)
    008c3b00 00000080 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_eventMap__E)
    008c3b80 00000080 : BIOS.obj (.text:ti_sysbios_family_c66_Cache_invL1pAll__E)
    008c3c00 00000080 : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_getEventId__F)
    008c3c80 00000080 : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_mapSysIntToHostInt__F)
    008c3d00 00000080 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateAll_Object__create__S)
    008c3d80 00000080 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateHwi_Object__create__S)
    008c3e00 00000080 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateMutexPri_Object__create__S)
    008c3e80 00000080 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateMutex_Object__create__S)
    008c3f00 00000080 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateSwi_Object__create__S)
    008c3f80 00000080 sysbios.lib : BIOS.obj (.text:ti_sysbios_gates_GateSwi_leave__E)
    008c4000 00000080 : BIOS.obj (.text:ti_sysbios_hal_Hwi_checkStack:ti_sysbios_hal_Hwi_checkStack)
    008c4080 00000080 UserProcessProject_pe66.oe66 (.text:ti_sysbios_heaps_HeapMem_Object__create__S)
    008c4100 00000080 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Clock_Module_startup__F)
    008c4180 00000080 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Clock_Object__create__S)
    008c4200 00000080 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Clock_doTick__I)
    008c4280 00000080 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Clock_getTicks__E)
    008c4300 00000080 : BIOS.obj (.text:ti_sysbios_knl_Idle_loop__E)
    008c4380 00000080 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Queue_Object__create__S)
    008c4400 00000080 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Semaphore_Object__create__S)
    008c4480 00000080 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Semaphore_pendTimeout__I)
    008c4500 00000080 : BIOS.obj (.text:ti_sysbios_knl_Swi_startup__E)
    008c4580 00000080 : BIOS.obj (.text:ti_sysbios_knl_Task_restore__E)
    008c4600 00000080 : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_getCount__E)
    008c4680 00000080 : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_getPeriod__E)
    008c4700 00000080 UserProcessProject_pe66.oe66 (.text:ti_sysbios_xdcruntime_GateThreadSupport_Object__create__S)
    008c4780 00000080 rts6600_elf.lib : lowlev.obj (.text:unlink)
    008c4800 00000080 ti.targets.rts6000.ae66 : Core-label.oe66 (.text:xdc_runtime_Core_assignLabel__I)
    008c4880 00000080 : Core-params.oe66 (.text:xdc_runtime_Core_assignParams__I)
    008c4900 00000080 : System.oe66 (.text:xdc_runtime_System_atexit__F)
    008c4980 00000080 : System.oe66 (.text:xdc_runtime_System_rtsExit__I)
    008c4a00 00000080 : Text.oe66 (.text:xdc_runtime_Text_printVisFxn__I)
    008c4a80 00000080 : Text.oe66 (.text:xdc_runtime_Text_xprintf__I)
    008c4b00 00000060 ipc.lib : Ipc.obj (.text:GateMP_Params_init)
    008c4b60 00000060 : Ipc.obj (.text:HeapMemMP_Params_init)
    008c4bc0 00000060 rts6600_elf.lib : assert.obj (.text:__c6xabi_abort_msg)
    008c4c20 00000060 : frcmpyd_div.obj (.text:__c6xabi_frcmpyd_div)
    008c4c80 00000060 : llshift.obj (.text:__c6xabi_llshru)
    008c4ce0 00000060 : imath64.obj (.text:_subcull)
    008c4d40 00000060 edma_c6670_cfg.obj (.text)
    008c4da0 00000060 rts6600_elf.lib : memccpy.obj (.text:memccpy)
    008c4e00 00000060 : rand.obj (.text:srand)
    008c4e60 00000060 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_family_c647x_NotifySetup_sharedMemReq__E)
    008c4ec0 00000060 : Ipc.obj (.text:ti_sdo_ipc_gates_GateHWSem_leave__E)
    008c4f20 00000060 : Ipc.obj (.text:ti_sdo_ipc_gates_GatePeterson_Instance_finalize__F)
    008c4f80 00000060 : Ipc.obj (.text:ti_sdo_ipc_gates_GatePeterson_sharedMemReq__E)
    008c4fe0 00000060 : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_setNotifyHandle__E)
    008c5040 00000060 : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShmSetup_sharedMemReq__E)
    008c50a0 00000060 UserProcessProject_pe66.oe66 (.text:ti_sysbios_BIOS_exitFunc__I)
    008c5100 00000060 sysbios.lib : BIOS.obj (.text:ti_sysbios_BIOS_registerRTSLock__I)
    008c5160 00000060 : BIOS.obj (.text:ti_sysbios_family_c64p_EventCombiner_Module_startup__F)
    008c51c0 00000060 : BIOS.obj (.text:ti_sysbios_family_c64p_EventCombiner_dispatchPlug__F)
    008c5220 00000060 : BIOS.obj (.text:ti_sysbios_family_c64p_EventCombiner_unused__F)
    008c5280 00000060 : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_unused__F)
    008c52e0 00000060 : BIOS.obj (.text:ti_sysbios_gates_GateAll_enter__E)
    008c5340 00000060 : BIOS.obj (.text:ti_sysbios_gates_GateMutex_Instance_init__F)
    008c53a0 00000060 : BIOS.obj (.text:ti_sysbios_hal_Hwi_initStack:ti_sysbios_hal_Hwi_initStack)
    008c5400 00000060 : BIOS.obj (.text:ti_sysbios_knl_Swi_Module_startup__F)
    008c5460 00000060 : BIOS.obj (.text:ti_sysbios_knl_Task_allBlockedFunction__I)
    008c54c0 00000060 : BIOS.obj (.text:ti_sysbios_knl_Task_enter__I)
    008c5520 00000060 rts6600_elf.lib : trgmsg.obj (.text:writemsg)
    008c5580 00000060 ti.targets.rts6000.ae66 : Memory.oe66 (.text:xdc_runtime_Memory_calloc__F)
    008c55e0 00000060 : Memory.oe66 (.text:xdc_runtime_Memory_valloc__F)
    008c5640 00000060 : SysStd.oe66 (.text:xdc_runtime_SysStd_abort__F)
    008c56a0 00000060 : System.oe66 (.text:xdc_runtime_System_avprintf__F)
    008c5700 00000060 : System.oe66 (.text:xdc_runtime_System_vprintf__F)
    008c5760 00000060 : Text.oe66 (.text:xdc_runtime_Text_cordText__F)
    008c57c0 00000040 rts6600_elf.lib : isinf.obj (.text:__c6xabi_isinf)
    008c5800 00000040 : _printfi.obj (.text:__c6xabi_isnan)
    008c5840 00000040 : args_main.obj (.text:_args_main)
    008c5880 00000040 sysbios.lib : c62_TaskSupport_asm.obj (.text:_ti_sysbios_family_c62_TaskSupport_buildTaskStack)
    008c58c0 00000040 : c64p_Hwi_asm_switch.obj (.text:_ti_sysbios_family_xxx_Hwi_switchToIsrStack)
    008c5900 00000040 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:edma3ParamCpy)
    008c5940 00000040 UserProcessProject_pe66.oe66 (.text:free)
    008c5980 00000040 rts6600_elf.lib : log10.obj (.text:log10)
    008c59c0 00000040 sysbios.lib : BIOS.obj (.text:rtsLock$0)
    008c5a00 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_Object__delete__S)
    008c5a40 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_ListMP_Object__delete__S)
    008c5a80 00000040 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_family_c647x_Interrupt_intClear__E)
    008c5ac0 00000040 : Ipc.obj (.text:ti_sdo_ipc_family_c647x_Interrupt_intSend__E)
    008c5b00 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_gates_GateHWSem_Handle__label__S)
    008c5b40 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_gates_GateHWSem_Object__delete__S)
    008c5b80 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_gates_GateMPSupportNull_Handle__label__S)
    008c5bc0 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_gates_GateMPSupportNull_Object__delete__S)
    008c5c00 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_gates_GatePeterson_Handle__label__S)
    008c5c40 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_gates_GatePeterson_Object__delete__S)
    008c5c80 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_heaps_HeapMemMP_Handle__label__S)
    008c5cc0 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_heaps_HeapMemMP_Object__delete__S)
    008c5d00 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Handle__label__S)
    008c5d40 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__delete__S)
    008c5d80 00000040 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_disable__E)
    008c5dc0 00000040 : Ipc.obj (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_enable__E)
    008c5e00 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Handle__label__S)
    008c5e40 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__delete__S)
    008c5e80 00000040 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_sharedMemReq__E)
    008c5ec0 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_transports_TransportShm_Handle__label__S)
    008c5f00 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_transports_TransportShm_Object__delete__S)
    008c5f40 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_utils_List_Object__destruct__S)
    008c5f80 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_utils_NameServer_Module__startupDone__F)
    008c5fc0 00000040 UserProcessProject_pe66.oe66 (.text:ti_sdo_utils_NameServer_Object__get__S)
    008c6000 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_BIOS_startFunc__I)
    008c6040 00000040 sysbios.lib : BIOS.obj (.text:ti_sysbios_BIOS_start__E)
    008c6080 00000040 : BIOS.obj (.text:ti_sysbios_family_c64p_EventCombiner_disableEvent__F)
    008c60c0 00000040 : BIOS.obj (.text:ti_sysbios_family_c64p_EventCombiner_enableEvent__F)
    008c6100 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_family_c64p_Hwi_Module__startupDone__F)
    008c6140 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_family_c64p_Hwi_Object__delete__S)
    008c6180 00000040 sysbios.lib : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_disableInterrupt__E)
    008c61c0 00000040 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_enableInterrupt__E)
    008c6200 00000040 : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_dispatchPlug__F)
    008c6240 00000040 : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_enableAllHostInts__F)
    008c6280 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateAll_Handle__label__S)
    008c62c0 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateAll_Object__delete__S)
    008c6300 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateHwi_Handle__label__S)
    008c6340 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateHwi_Object__delete__S)
    008c6380 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateMutexPri_Handle__label__S)
    008c63c0 00000040 sysbios.lib : BIOS.obj (.text:ti_sysbios_gates_GateMutexPri_Instance_finalize__F)
    008c6400 00000040 : BIOS.obj (.text:ti_sysbios_gates_GateMutexPri_Instance_init__F)
    008c6440 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateMutexPri_Object__delete__S)
    008c6480 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateMutexPri_Object__destruct__S)
    008c64c0 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateMutex_Handle__label__S)
    008c6500 00000040 sysbios.lib : BIOS.obj (.text:ti_sysbios_gates_GateMutex_Instance_finalize__F)
    008c6540 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateMutex_Object__delete__S)
    008c6580 00000040 sysbios.lib : BIOS.obj (.text:ti_sysbios_gates_GateMutex_leave__E)
    008c65c0 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateSwi_Handle__label__S)
    008c6600 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_gates_GateSwi_Object__delete__S)
    008c6640 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_hal_Timer_Module__startupDone__F)
    008c6680 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_heaps_HeapMem_Handle__label__S)
    008c66c0 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_heaps_HeapMem_Object__delete__S)
    008c6700 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_heaps_HeapMem_Object__get__S)
    008c6740 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Clock_Object__destruct__S)
    008c6780 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Queue_Object__destruct__S)
    008c67c0 00000040 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Semaphore_Instance_finalize__F)
    008c6800 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Semaphore_Object__delete__S)
    008c6840 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Semaphore_Object__destruct__S)
    008c6880 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Swi_Object__destruct__S)
    008c68c0 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Swi_Object__get__S)
    008c6900 00000040 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Swi_inc__E)
    008c6940 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Task_Object__get__S)
    008c6980 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_timers_timer64_Timer_Module__startupDone__F)
    008c69c0 00000040 sysbios.lib : BIOS.obj (.text:ti_sysbios_xdcruntime_GateThreadSupport_Instance_finalize__F)
    008c6a00 00000040 : BIOS.obj (.text:ti_sysbios_xdcruntime_GateThreadSupport_Instance_init__F)
    008c6a40 00000040 UserProcessProject_pe66.oe66 (.text:ti_sysbios_xdcruntime_GateThreadSupport_Object__delete__S)
    008c6a80 00000040 sysbios.lib : BIOS.obj (.text:ti_sysbios_xdcruntime_GateThreadSupport_enter__F)
    008c6ac0 00000040 : BIOS.obj (.text:ti_sysbios_xdcruntime_GateThreadSupport_leave__F)
    008c6b00 00000040 rts6600_elf.lib : time.obj (.text:time)
    008c6b40 00000040 ti.targets.rts6000.ae66 : Error.oe66 (.text:xdc_runtime_Error_check__F)
    008c6b80 00000040 : Error.oe66 (.text:xdc_runtime_Error_init__F)
    008c6bc0 00000040 UserProcessProject_pe66.oe66 (.text:xdc_runtime_GateNull_Handle__label__S)
    008c6c00 00000040 UserProcessProject_pe66.oe66 (.text:xdc_runtime_GateNull_Object__create__S)
    008c6c40 00000040 UserProcessProject_pe66.oe66 (.text:xdc_runtime_GateNull_Object__delete__S)
    008c6c80 00000040 ti.targets.rts6000.ae66 : Gate.oe66 (.text:xdc_runtime_Gate_leaveSystem__F)
    008c6cc0 00000040 : Memory.oe66 (.text:xdc_runtime_Memory_free__F)
    008c6d00 00000040 : Registry.oe66 (.text:xdc_runtime_Registry_findById__F)
    008c6d40 00000040 : System.oe66 (.text:xdc_runtime_System_abort__F)
    008c6d80 00000040 UserProcessProject_pe66.oe66 (.text:xdc_runtime_System_aprintf__E)
    008c6dc0 00000040 UserProcessProject_pe66.oe66 (.text:xdc_runtime_System_printf__E)
    008c6e00 00000040 ti.targets.rts6000.ae66 : Text.oe66 (.text:xdc_runtime_Text_ropeText__F)
    008c6e40 00000040 UserProcessProject_pe66.oe66 (.text:xdc_runtime_knl_GateThread_Handle__label__S)
    008c6e80 00000040 ti.targets.rts6000.ae66 : GateThread.oe66 (.text:xdc_runtime_knl_GateThread_Instance_finalize__F)
    008c6ec0 00000040 : GateThread.oe66 (.text:xdc_runtime_knl_GateThread_Instance_init__F)
    008c6f00 00000040 UserProcessProject_pe66.oe66 (.text:xdc_runtime_knl_GateThread_Object__delete__S)
    008c6f40 00000020 ti.csl.ae66 : csl_gpioGetBaseAddress.oe66 (.text:CSL_GPIO_open)
    008c6f60 00000020 ipc.lib : Ipc.obj (.text:MultiProc_getNumProcessors)
    008c6f80 00000020 : Ipc.obj (.text:MultiProc_self)
    008c6fa0 00000020 rts6600_elf.lib : errno.obj (.text:__c6xabi_errno_addr)
    008c6fc0 00000020 : negll.obj (.text:__c6xabi_negll)
    008c6fe0 00000020 : dtor_list.obj (.text:__cxa_atexit)
    008c7000 00000020 : dtor_list.obj (.text:__cxa_ia64_exit)
    008c7020 00000020 : push.obj (.text:__pop_rts)
    008c7040 00000020 : push.obj (.text:__push_rts)
    008c7060 00000020 ti.targets.rts6000.ae66 : xdc_noinit.oe66 (.text:__xdc__init)
    008c7080 00000020 rts6600_elf.lib : _lock.obj (.text:_nop)
    008c70a0 00000020 : fprintf.obj (.text:_outc)
    008c70c0 00000020 : fprintf.obj (.text:_outs)
    008c70e0 00000020 : _lock.obj (.text:_register_lock)
    008c7100 00000020 : _lock.obj (.text:_register_unlock)
    008c7120 00000020 sysbios.lib : c62_TaskSupport_asm.obj (.text:_ti_sysbios_family_c62_TaskSupport_glue)
    008c7140 00000020 : c64p_Hwi_asm_switch.obj (.text:_ti_sysbios_family_xxx_Hwi_switchToTaskStack)
    008c7160 00000020 rts6600_elf.lib : exit.obj (.text:abort)
    008c7180 00000020 : dtor_list.obj (.text:atexit)
    008c71a0 00000020 ti.csl.ae66 : csl_tsc.oe66 (.text:cslsys_section:tsc)
    008c71c0 00000020 rts6600_elf.lib : copy_decompress_none.obj (.text:decompress:none:__TI_decompress_none)
    008c71e0 00000020 : copy_decompress_rle.obj (.text:decompress:rle24:__TI_decompress_rle24)
    008c7200 00000020 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.text:edma3MemZero)
    008c7220 00000020 : edma3resmgr.oe66 (.text:lisrEdma3CCErrHandler0)
    008c7240 00000020 : edma3resmgr.oe66 (.text:lisrEdma3ComplHandler0)
    008c7260 00000020 : edma3resmgr.oe66 (.text:lisrEdma3TC0ErrHandler0)
    008c7280 00000020 : edma3resmgr.oe66 (.text:lisrEdma3TC1ErrHandler0)
    008c72a0 00000020 : edma3resmgr.oe66 (.text:lisrEdma3TC2ErrHandler0)
    008c72c0 00000020 : edma3resmgr.oe66 (.text:lisrEdma3TC3ErrHandler0)
    008c72e0 00000020 : edma3resmgr.oe66 (.text:lisrEdma3TC4ErrHandler0)
    008c7300 00000020 : edma3resmgr.oe66 (.text:lisrEdma3TC5ErrHandler0)
    008c7320 00000020 : edma3resmgr.oe66 (.text:lisrEdma3TC6ErrHandler0)
    008c7340 00000020 : edma3resmgr.oe66 (.text:lisrEdma3TC7ErrHandler0)
    008c7360 00000020 sysbios.lib : BIOS.obj (.text:nullFunc$0)
    008c7380 00000020 rts6600_elf.lib : fputc.obj (.text:putc)
    008c73a0 00000020 : fputc.obj (.text:putchar)
    008c73c0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_Params__init__S)
    008c73e0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Object__create__S)
    008c7400 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Object__delete__S)
    008c7420 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Params__init__S)
    008c7440 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Proxy__abstract__S)
    008c7460 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Proxy__delegate__S)
    008c7480 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Object__create__S)
    008c74a0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Object__delete__S)
    008c74c0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Params__init__S)
    008c74e0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Proxy__abstract__S)
    008c7500 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Proxy__delegate__S)
    008c7520 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteSystemProxy_Object__create__S)
    008c7540 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteSystemProxy_Object__delete__S)
    008c7560 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteSystemProxy_Params__init__S)
    008c7580 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteSystemProxy_Proxy__abstract__S)
    008c75a0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_GateMP_RemoteSystemProxy_Proxy__delegate__S)
    008c75c0 00000020 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_GateMP_getSharedAddr__F)
    008c75e0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_ListMP_Params__init__S)
    008c7600 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_MessageQ_Object__get__S)
    008c7620 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_Notify_Module_GateProxy_enter__E)
    008c7640 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_Notify_Module_GateProxy_leave__E)
    008c7660 00000020 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_family_c647x_Interrupt_intDisable__E)
    008c7680 00000020 : Ipc.obj (.text:ti_sdo_ipc_family_c647x_Interrupt_intEnable__E)
    008c76a0 00000020 : Ipc.obj (.text:ti_sdo_ipc_family_c647x_NotifySetup_numIntLines__E)
    008c76c0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_gates_GateHWSem_Params__init__S)
    008c76e0 00000020 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_gates_GateHWSem_getReservedMask__E)
    008c7700 00000020 : Ipc.obj (.text:ti_sdo_ipc_gates_GateHWSem_query__F)
    008c7720 00000020 : Ipc.obj (.text:ti_sdo_ipc_gates_GateHWSem_sharedMemReq__E)
    008c7740 00000020 : Ipc.obj (.text:ti_sdo_ipc_gates_GateMPSupportNull_Instance_init__F)
    008c7760 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_gates_GateMPSupportNull_Params__init__S)
    008c7780 00000020 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_gates_GateMPSupportNull_getReservedMask__E)
    008c77a0 00000020 : Ipc.obj (.text:ti_sdo_ipc_gates_GateMPSupportNull_query__F)
    008c77c0 00000020 : Ipc.obj (.text:ti_sdo_ipc_gates_GateMPSupportNull_sharedMemReq__E)
    008c77e0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_gates_GatePeterson_Params__init__S)
    008c7800 00000020 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_gates_GatePeterson_getReservedMask__E)
    008c7820 00000020 : Ipc.obj (.text:ti_sdo_ipc_gates_GatePeterson_query__F)
    008c7840 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_heaps_HeapMemMP_Params__init__S)
    008c7860 00000020 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_heaps_HeapMemMP_isBlocking__F)
    008c7880 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Params__init__S)
    008c78a0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__first__S)
    008c78c0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__next__S)
    008c78e0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Params__init__S)
    008c7900 00000020 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_nsremote_NameServerRemoteNotify_cbFxn__I)
    008c7920 00000020 : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShmSetup_isRegistered__E)
    008c7940 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_ipc_transports_TransportShm_Params__init__S)
    008c7960 00000020 ipc.lib : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_control__E)
    008c7980 00000020 : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_getStatus__E)
    008c79a0 00000020 : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_notifyFxn__I)
    008c79c0 00000020 : Ipc.obj (.text:ti_sdo_ipc_transports_TransportShm_setErrFxn__F)
    008c79e0 00000020 : Ipc.obj (.text:ti_sdo_utils_List_Instance_init__F)
    008c7a00 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_utils_List_Object__get__S)
    008c7a20 00000020 ipc.lib : Ipc.obj (.text:ti_sdo_utils_MultiProc_getClusterId__F)
    008c7a40 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_utils_NameServer_Object__first__S)
    008c7a60 00000020 UserProcessProject_pe66.oe66 (.text:ti_sdo_utils_NameServer_Object__next__S)
    008c7a80 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_BIOS_RtsGateProxy_enter__E)
    008c7aa0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_BIOS_RtsGateProxy_leave__E)
    008c7ac0 00000020 sysbios.lib : BIOS.obj (.text:ti_sysbios_BIOS_getThreadType__E)
    008c7ae0 00000020 : BIOS.obj (.text:ti_sysbios_BIOS_setThreadType__E)
    008c7b00 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_family_c62_TaskSupport_Module__startupDone__S)
    008c7b20 00000020 sysbios.lib : BIOS.obj (.text:ti_sysbios_family_c62_TaskSupport_checkStack__E)
    008c7b40 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_family_c64p_Hwi_Params__init__S)
    008c7b60 00000020 sysbios.lib : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_clearInterrupt__E)
    008c7b80 00000020 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_getHandle__E)
    008c7ba0 00000020 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_startup__E)
    008c7bc0 00000020 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_switchFromBootStack__E)
    008c7be0 00000020 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_unPluggedInterrupt__I)
    008c7c00 00000020 : BIOS.obj (.text:ti_sysbios_family_c64p_tci6488_TimerSupport_enable__E)
    008c7c20 00000020 : BIOS.obj (.text:ti_sysbios_family_c66_Cache_inv__E)
    008c7c40 00000020 : BIOS.obj (.text:ti_sysbios_family_c66_Cache_wbInv__E)
    008c7c60 00000020 : BIOS.obj (.text:ti_sysbios_family_c66_Cache_wb__E)
    008c7c80 00000020 : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_disableHostInt__F)
    008c7ca0 00000020 : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_enableHostInt__F)
    008c7cc0 00000020 : BIOS.obj (.text:ti_sysbios_gates_GateAll_Instance_init__F)
    008c7ce0 00000020 : BIOS.obj (.text:ti_sysbios_gates_GateAll_query__F)
    008c7d00 00000020 : BIOS.obj (.text:ti_sysbios_gates_GateHwi_Instance_init__F)
    008c7d20 00000020 : BIOS.obj (.text:ti_sysbios_gates_GateHwi_enter__E)
    008c7d40 00000020 : BIOS.obj (.text:ti_sysbios_gates_GateHwi_leave__E)
    008c7d60 00000020 : BIOS.obj (.text:ti_sysbios_gates_GateHwi_query__F)
    008c7d80 00000020 : BIOS.obj (.text:ti_sysbios_gates_GateMutexPri_query__F)
    008c7da0 00000020 : BIOS.obj (.text:ti_sysbios_gates_GateMutex_query__F)
    008c7dc0 00000020 : BIOS.obj (.text:ti_sysbios_gates_GateSwi_Instance_init__F)
    008c7de0 00000020 : BIOS.obj (.text:ti_sysbios_gates_GateSwi_query__F)
    008c7e00 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S)
    008c7e20 00000020 sysbios.lib : BIOS.obj (.text:ti_sysbios_hal_Hwi_Module_startup__F)
    008c7e40 00000020 : BIOS.obj (.text:ti_sysbios_hal_Timer_Module_startup__F)
    008c7e60 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_hal_Timer_TimerProxy_Module__startupDone__S)
    008c7e80 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_hal_Timer_TimerProxy_getExpiredCounts__E)
    008c7ea0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_hal_Timer_TimerProxy_getPeriod__E)
    008c7ec0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_hal_Timer_TimerProxy_setNextTick__E)
    008c7ee0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_heaps_HeapBuf_Object__get__S)
    008c7f00 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E)
    008c7f20 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E)
    008c7f40 00000020 sysbios.lib : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_isBlocking__E)
    008c7f60 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Clock_Params__init__S)
    008c7f80 00000020 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Queue_Instance_init__F)
    008c7fa0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Queue_Object__get__S)
    008c7fc0 00000020 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Queue_empty__E)
    008c7fe0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Semaphore_Params__init__S)
    008c8000 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Swi_Params__init__S)
    008c8020 00000020 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Swi_disable__E)
    008c8040 00000020 : BIOS.obj (.text:ti_sysbios_knl_Swi_getTrigger__E)
    008c8060 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Task_Object__first__S)
    008c8080 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Task_Object__next__S)
    008c80a0 00000020 UserProcessProject_pe66.oe66 (.text:ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S)
    008c80c0 00000020 sysbios.lib : BIOS.obj (.text:ti_sysbios_knl_Task_disable__E)
    008c80e0 00000020 : BIOS.obj (.text:ti_sysbios_knl_Task_enable__E)
    008c8100 00000020 : BIOS.obj (.text:ti_sysbios_knl_Task_getPri__E)
    008c8120 00000020 : BIOS.obj (.text:ti_sysbios_knl_Task_self__E)
    008c8140 00000020 : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_setNextTick__E)
    008c8160 00000020 ti.targets.rts6000.ae66 : GateNull.oe66 (.text:xdc_runtime_GateNull_enter__F)
    008c8180 00000020 : GateNull.oe66 (.text:xdc_runtime_GateNull_leave__F)
    008c81a0 00000020 : GateNull.oe66 (.text:xdc_runtime_GateNull_query__F)
    008c81c0 00000020 : Gate.oe66 (.text:xdc_runtime_Gate_enterSystem__F)
    008c81e0 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_IHeap_alloc)
    008c8200 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_IHeap_free)
    008c8220 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_Memory_HeapProxy_alloc__E)
    008c8240 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_Memory_HeapProxy_free__E)
    008c8260 00000020 ti.targets.rts6000.ae66 : Memory.oe66 (.text:xdc_runtime_Memory_getMaxDefaultTypeAlign__F)
    008c8280 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_Startup_Module__startupDone__S)
    008c82a0 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_Startup_exec__I)
    008c82c0 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_Startup_reset__I)
    008c82e0 00000020 ti.targets.rts6000.ae66 : Startup.oe66 (.text:xdc_runtime_Startup_rtsDone__F)
    008c8300 00000020 : SysStd.oe66 (.text:xdc_runtime_SysStd_exit__F)
    008c8320 00000020 : SysStd.oe66 (.text:xdc_runtime_SysStd_putch__F)
    008c8340 00000020 : SysStd.oe66 (.text:xdc_runtime_SysStd_ready__F)
    008c8360 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_System_Module_GateProxy_enter__E)
    008c8380 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_System_Module_GateProxy_leave__E)
    008c83a0 00000020 ti.targets.rts6000.ae66 : System.oe66 (.text:xdc_runtime_System_Module_startup__F)
    008c83c0 00000020 : System.oe66 (.text:xdc_runtime_System_exit__F)
    008c83e0 00000020 : System.oe66 (.text:xdc_runtime_System_lastFxn__I)
    008c8400 00000020 : System.oe66 (.text:xdc_runtime_System_vsprintf__F)
    008c8420 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_Text_visitRope__I)
    008c8440 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_knl_GateThread_Module__startupDone__S)
    008c8460 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_knl_GateThread_Proxy_Object__create__S)
    008c8480 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_knl_GateThread_Proxy_Object__delete__S)
    008c84a0 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_knl_GateThread_Proxy_enter__E)
    008c84c0 00000020 UserProcessProject_pe66.oe66 (.text:xdc_runtime_knl_GateThread_Proxy_leave__E)
    008c84e0 00000020 ti.targets.rts6000.ae66 : GateThread.oe66 (.text:xdc_runtime_knl_GateThread_enter__F)
    008c8500 00000020 : GateThread.oe66 (.text:xdc_runtime_knl_GateThread_leave__F)

    .fardata 0 008c8520 0000537c
    008c8520 00000fc0 edma3_lld_rm.ae66 : edma3_c6670_cfg.oe66 (.fardata:defInstInitConfig)
    008c94e0 00000fc0 edma_c6670_cfg.obj (.fardata:sampleInstInitConfig)
    008ca4a0 00000888 edma3_lld_rm.ae66 : edma3_c6670_cfg.oe66 (.fardata:edma3GblCfgParams)
    008cad28 00000888 edma_c6670_cfg.obj (.fardata:sampleEdma3GblCfgParams)
    008cb5b0 00000800 UserProcessProject_pe66.oe66 (.fardata:ti_sdo_ipc_GateMP_Module_State_0_remoteCustom1Gates__A)
    008cbdb0 0000073c UserProcessProject_pe66.oe66 (.fardata)
    008cc4ec 00000004 rts6600_elf.lib : defs.obj (.fardata)
    008cc4f0 00000680 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_dispatchTab__A)
    008ccb70 000001e0 rts6600_elf.lib : defs.obj (.fardata:_ftable)
    008ccd50 00000118 UserProcessProject_pe66.oe66 (.fardata:ti_sdo_utils_NameServer_Object__table__V)
    008cce68 000000c0 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_timers_timer64_Timer_Module_State_0_device__A)
    008ccf28 000000a0 rts6600_elf.lib : lowlev.obj (.fardata:_stream)
    008ccfc8 00000090 UserProcessProject_pe66.oe66 (.fardata:ti_sdo_ipc_SharedRegion_Module_State_0_regions__A)
    008cd058 00000080 UserProcessProject_pe66.oe66 (.fardata:ti_sdo_ipc_GateMP_Module_State_0_remoteSystemGates__A)
    008cd0d8 00000080 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_knl_Swi_Module_State_0_readyQ__A)
    008cd158 00000080 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_knl_Task_Module_State_0_readyQ__A)
    008cd1d8 00000078 rts6600_elf.lib : lowlev.obj (.fardata:_device)
    008cd250 00000078 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_family_c64p_Hwi_Object__table__V)
    008cd2c8 00000068 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_hostIntToSysInt__A)
    008cd330 00000060 edma_c6670_cfg.obj (.fardata:ccXferCompInt)
    008cd390 00000060 edma_c6670_cfg.obj (.fardata:tcErrorInt)
    008cd3f0 0000004c UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_timers_timer64_Timer_Object__table__V)
    008cd43c 00000004 rts6600_elf.lib : dtor_list.obj (.fardata)
    008cd440 00000044 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_knl_Task_Object__table__V)
    008cd484 00000004 rts6600_elf.lib : errno.obj (.fardata)
    008cd488 00000040 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_gates_GateMutex_Object__table__V)
    008cd4c8 00000040 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_timers_timer64_Timer_Module_State_0_gctrl__A)
    008cd508 00000040 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_timers_timer64_Timer_Module_State_0_handles__A)
    008cd548 00000040 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_timers_timer64_Timer_Module_State_0_intFreqs__A)
    008cd588 0000003c UserProcessProject_pe66.oe66 (.fardata:ti_sdo_ipc_Ipc_Module_State_0_procEntry__A)
    008cd5c4 00000004 rts6600_elf.lib : rand.obj (.fardata)
    008cd5c8 00000030 edma_c6670_int_reg.obj (.fardata:ccXferHostInt)
    008cd5f8 00000030 edma_c6670_int_reg.obj (.fardata:edma3ErrHostInt)
    008cd628 00000030 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_knl_Swi_Object__table__V)
    008cd658 00000008 rts6600_elf.lib : _lock.obj (.fardata)
    008cd660 00000028 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.fardata:allocatedTCCs)
    008cd688 00000020 edma_c6670_int_reg.obj (.fardata:ptrEdma3TcIsrHandler)
    008cd6a8 00000020 UserProcessProject_pe66.oe66 (.fardata:ti_sdo_ipc_MessageQ_Module_State_0_heaps__A)
    008cd6c8 00000020 UserProcessProject_pe66.oe66 (.fardata:xdc_runtime_System_Module_State_0_atexitHandlers__A)
    008cd6e8 0000001c UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_initSIER__A)
    008cd704 00000004 --HOLE--
    008cd708 00000018 rts6600_elf.lib : log.obj (.fardata:A$1)
    008cd720 00000018 : log.obj (.fardata:B$2)
    008cd738 00000018 UserProcessProject_pe66.oe66 (.fardata:ti_sdo_ipc_MessageQ_Module_State_0_transports__A)
    008cd750 00000018 UserProcessProject_pe66.oe66 (.fardata:ti_sdo_ipc_family_c647x_Interrupt_Module_State_0_fxnTable__A)
    008cd768 00000018 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_gates_GateMutexPri_Object__table__V)
    008cd780 00000018 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_knl_Semaphore_Object__table__V)
    008cd798 00000008 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_hal_Hwi_Object__table__V)
    008cd7a0 00000014 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.fardata:masterExists)
    008cd7b4 00000004 --HOLE--
    008cd7b8 00000014 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_heaps_HeapMem_Object__table__V)
    008cd7cc 00000004 --HOLE--
    008cd7d0 00000010 edma_c6670_cfg.obj (.fardata:gblCfgReqdArray)
    008cd7e0 00000010 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_gates_GateAll_Object__table__V)
    008cd7f0 0000000c edma_c6670_cfg.obj (.fardata:ccErrorInt)
    008cd7fc 00000004 --HOLE--
    008cd800 0000000c edma_c6670_cfg.obj (.fardata:edmaSemHandle)
    008cd80c 00000004 --HOLE--
    008cd810 0000000c edma_c6670_cfg.obj (.fardata:numEdma3Tc)
    008cd81c 0000000c rts6600_elf.lib : exit.obj (.fardata)
    008cd828 0000000c UserProcessProject_pe66.oe66 (.fardata:ti_sdo_ipc_Notify_Module_State_0_notifyHandles__A)
    008cd834 00000004 --HOLE--
    008cd838 0000000c UserProcessProject_pe66.oe66 (.fardata:ti_sdo_ipc_transports_TransportShmSetup_Module_State_0_handles__A)
    008cd844 00000004 --HOLE--
    008cd848 0000000c UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_controller__A)
    008cd854 00000004 --HOLE--
    008cd858 0000000c UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_gates_GateSwi_Object__table__V)
    008cd864 00000004 --HOLE--
    008cd868 00000008 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_hal_Timer_Object__table__V)
    008cd870 00000004 UserProcessProject_pe66.oe66 (.fardata:ti_sdo_ipc_GateMP_Module_State_0_remoteCustom2Gates__A)
    008cd874 00000004 --HOLE--
    008cd878 00000004 UserProcessProject_pe66.oe66 (.fardata:ti_sdo_ipc_Notify_Module_State_0_notifyHandles_0__A)
    008cd87c 00000004 --HOLE--
    008cd880 00000004 UserProcessProject_pe66.oe66 (.fardata:ti_sdo_ipc_Notify_Module_State_0_notifyHandles_1__A)
    008cd884 00000004 --HOLE--
    008cd888 00000004 UserProcessProject_pe66.oe66 (.fardata:ti_sdo_ipc_Notify_Module_State_0_notifyHandles_2__A)
    008cd88c 00000004 --HOLE--
    008cd890 00000004 UserProcessProject_pe66.oe66 (.fardata:ti_sysbios_gates_GateHwi_Object__table__V)
    008cd894 00000004 --HOLE--
    008cd898 00000004 UserProcessProject_pe66.oe66 (.fardata:xdc_runtime_GateNull_Object__table__V)

    .const 0 008cd8a0 000045e8
    008cd8a0 00002600 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Text_charTab__A)
    008cfea0 0000042c sysbios.lib : BIOS.obj (.const:.string)
    008d02cc 00000004 ti.targets.rts6000.ae66 : Assert.oe66 (.const:.string)
    008d02d0 00000400 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_Cache_marvalues__C)
    008d06d0 00000184 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Text_nodeTab__A)
    008d0854 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_A_invalidClose__C)
    008d0858 00000101 rts6600_elf.lib : ctype.obj (.const:.string:_ctypes_)
    008d0959 000000fd edma3_lld_rm.ae66 : edma3resmgr.oe66 (.const)
    008d0a56 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Module__id__C)
    008d0a58 000000d0 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_sysIntToHostInt__A)
    008d0b28 000000b4 UserProcessProject_pe66.oe66 (.const:.string)
    008d0bdc 00000081 edma3_lld_drv.ae66 : edma3_drv_init.oe66 (.const)
    008d0c5d 0000007a ErrorController.obj (.const:.string)
    008d0cd7 00000068 edma3_lld_drv.ae66 : edma3_drv_basic.oe66 (.const)
    008d0d3f 00000001 --HOLE-- [fill = 0]
    008d0d40 00000058 ti.targets.rts6000.ae66 : Error.oe66 (.const:.string)
    008d0d98 0000004d InterCoreMsgController.obj (.const:.string)
    008d0de5 00000003 rts6600_elf.lib : assert.obj (.const:.string)
    008d0de8 00000048 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Startup_sfxnTab__A)
    008d0e30 00000040 ti.targets.rts6000.ae66 : Text.oe66 (.const:.string)
    008d0e70 0000003d user_process_ICS+RF+.obj (.const:.string)
    008d0ead 00000001 --HOLE-- [fill = 0]
    008d0eae 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Module__loggerDefined__C)
    008d0eb0 00000038 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__FXNS__C)
    008d0ee8 00000034 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Object__PARAMS__C)
    008d0f1c 00000034 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__PARAMS__C)
    008d0f50 00000030 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_Object__PARAMS__C)
    008d0f80 00000030 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Object__PARAMS__C)
    008d0fb0 0000002c ti.targets.rts6000.ae66 : Startup.oe66 (.const:.string)
    008d0fdc 0000002c UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_ListMP_Object__PARAMS__C)
    008d1008 0000002c UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_Module__FXNS__C)
    008d1034 0000002c UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_Module__FXNS__C)
    008d1060 0000002c UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_Module__FXNS__C)
    008d108c 00000028 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_Module__FXNS__C)
    008d10b4 00000028 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__FXNS__C)
    008d10dc 00000028 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_Module__FXNS__C)
    008d1104 00000028 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_Object__PARAMS__C)
    008d112c 00000028 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Module__FXNS__C)
    008d1154 00000028 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_Object__PARAMS__C)
    008d117c 00000024 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_Object__PARAMS__C)
    008d11a0 00000024 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_Object__PARAMS__C)
    008d11c4 00000024 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_Object__PARAMS__C)
    008d11e8 00000024 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateAll_Module__FXNS__C)
    008d120c 00000024 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateHwi_Module__FXNS__C)
    008d1230 00000024 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_Module__FXNS__C)
    008d1254 00000024 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Module__FXNS__C)
    008d1278 00000024 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateSwi_Module__FXNS__C)
    008d129c 00000024 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_Object__PARAMS__C)
    008d12c0 00000024 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Object__PARAMS__C)
    008d12e4 00000024 UserProcessProject_pe66.oe66 (.const:xdc_runtime_GateNull_Module__FXNS__C)
    008d1308 00000024 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Startup_sfxnRts__A)
    008d132c 00000024 UserProcessProject_pe66.oe66 (.const:xdc_runtime_knl_GateThread_Module__FXNS__C)
    008d1350 00000023 rts6600_elf.lib : _printfi.obj (.const:.string)
    008d1373 00000001 --HOLE-- [fill = 0]
    008d1374 00000020 ti.targets.rts6000.ae66 : Core-mem.oe66 (.const:.string)
    008d1394 00000020 edma_xfer.obj (.const)
    008d13b4 00000020 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Object__DESC__C)
    008d13d4 00000020 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_ListMP_Object__DESC__C)
    008d13f4 00000020 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_Object__DESC__C)
    008d1414 00000020 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_Object__DESC__C)
    008d1434 00000020 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_Object__DESC__C)
    008d1454 00000020 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_Object__DESC__C)
    008d1474 00000020 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_Object__DESC__C)
    008d1494 00000020 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__DESC__C)
    008d14b4 00000020 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__DESC__C)
    008d14d4 00000020 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__PARAMS__C)
    008d14f4 00000020 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_Object__DESC__C)
    008d1514 00000020 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_List_Object__DESC__C)
    008d1534 00000020 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Object__DESC__C)
    008d1554 00000020 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateAll_Object__DESC__C)
    008d1574 00000020 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateHwi_Object__DESC__C)
    008d1594 00000020 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_Object__DESC__C)
    008d15b4 00000020 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Object__DESC__C)
    008d15d4 00000020 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateSwi_Object__DESC__C)
    008d15f4 00000020 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Object__DESC__C)
    008d1614 00000020 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Object__PARAMS__C)
    008d1634 00000020 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_Object__DESC__C)
    008d1654 00000020 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Queue_Object__DESC__C)
    008d1674 00000020 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Object__DESC__C)
    008d1694 00000020 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_Object__DESC__C)
    008d16b4 00000020 UserProcessProject_pe66.oe66 (.const:ti_sysbios_xdcruntime_GateThreadSupport_Object__DESC__C)
    008d16d4 00000020 UserProcessProject_pe66.oe66 (.const:xdc_runtime_GateNull_Object__DESC__C)
    008d16f4 00000020 UserProcessProject_pe66.oe66 (.const:xdc_runtime_knl_GateThread_Object__DESC__C)
    008d1714 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_A_invalidDelete__C)
    008d1718 0000001a UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_eventId__A)
    008d1732 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_Module__id__C)
    008d1734 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_E_gateUnavailable__C)
    008d1738 0000001a UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_0__A)
    008d1752 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_generateSlaveDataForHost__C)
    008d1754 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_E_localGate__C)
    008d1758 0000001a UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_1__A)
    008d1772 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_ListMP_Module__id__C)
    008d1774 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_LM_create__C)
    008d1778 0000001a UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_2__A)
    008d1792 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Module__id__C)
    008d1794 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_LM_delete__C)
    008d1798 0000001a UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_3__A)
    008d17b2 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Module__loggerDefined__C)
    008d17b4 00000018 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_Object__PARAMS__C)
    008d17cc 00000018 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_List_Object__PARAMS__C)
    008d17e4 00000018 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateAll_Object__PARAMS__C)
    008d17fc 00000018 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateHwi_Object__PARAMS__C)
    008d1814 00000018 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_Object__PARAMS__C)
    008d182c 00000018 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Object__PARAMS__C)
    008d1844 00000018 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateSwi_Object__PARAMS__C)
    008d185c 00000018 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Queue_Object__PARAMS__C)
    008d1874 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_LM_enter__C)
    008d1878 00000018 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_hooks__A)
    008d1890 00000018 UserProcessProject_pe66.oe66 (.const:ti_sysbios_xdcruntime_GateThreadSupport_Object__PARAMS__C)
    008d18a8 00000018 UserProcessProject_pe66.oe66 (.const:xdc_runtime_GateNull_Object__PARAMS__C)
    008d18c0 00000018 UserProcessProject_pe66.oe66 (.const:xdc_runtime_knl_GateThread_Object__PARAMS__C)
    008d18d8 00000011 gpio.obj (.const:.string)
    008d18e9 00000001 --HOLE-- [fill = 0]
    008d18ea 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_Module__id__C)
    008d18ec 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_LM_leave__C)
    008d18f0 00000011 ti.targets.rts6000.ae66 : System.oe66 (.const:digtohex)
    008d1901 00000001 --HOLE-- [fill = 0]
    008d1902 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_numLines__C)
    008d1904 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_LM_open__C)
    008d1908 00000010 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_EventCombiner_EVTMASK__C)
    008d1918 00000010 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId__A)
    008d1928 0000000c UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_Cache_initSize__C)
    008d1934 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Module__diagsEnabled__C)
    008d1938 0000000c UserProcessProject_pe66.oe66 (.const:xdc_runtime_Startup_firstFxns__A)
    008d1944 00000008 ti.targets.rts6000.ae66 : System.oe66 (.const:.string)
    008d194c 00000008 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Idle_funcList__C)
    008d1954 00000008 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_hooks__C)
    008d195c 00000008 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Startup_firstFxns__C)
    008d1964 00000008 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Startup_lastFxns__C)
    008d196c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Module__diagsIncluded__C)
    008d1970 00000006 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_MultiProcSetup_procMap__A)
    008d1976 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_reservedEvents__C)
    008d1978 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Module__diagsMask__C)
    008d197c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Module__loggerFxn2__C)
    008d1980 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Module__loggerFxn4__C)
    008d1984 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_GateMP_Module__loggerObj__C)
    008d1988 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_A_addrNotCacheAligned__C)
    008d198c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_A_addrNotInSharedRegion__C)
    008d1990 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_A_internal__C)
    008d1994 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_A_invArgument__C)
    008d1998 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_A_invParam__C)
    008d199c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_A_nullArgument__C)
    008d19a0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_A_nullPointer__C)
    008d19a4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_E_internal__C)
    008d19a8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_E_nameFailed__C)
    008d19ac 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_E_versionMismatch__C)
    008d19b0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_Module__diagsEnabled__C)
    008d19b4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_Module__diagsIncluded__C)
    008d19b8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_Module__diagsMask__C)
    008d19bc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_numUserFxns__C)
    008d19c0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_procSync__C)
    008d19c4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Ipc_userFxns__C)
    008d19c8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_ListMP_Module__diagsEnabled__C)
    008d19cc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_ListMP_Module__diagsIncluded__C)
    008d19d0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_ListMP_Module__diagsMask__C)
    008d19d4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_A_invalidMsg__C)
    008d19d8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_A_invalidObj__C)
    008d19dc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_A_invalidQueueId__C)
    008d19e0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_A_procIdInvalid__C)
    008d19e4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_A_unregisteredTransport__C)
    008d19e8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Instance_State_highList__O)
    008d19ec 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Instance_State_normalList__O)
    008d19f0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_LM_putLocal__C)
    008d19f4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Module__diagsEnabled__C)
    008d19f8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Module__diagsIncluded__C)
    008d19fc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Module__diagsMask__C)
    008d1a00 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Module__loggerFxn4__C)
    008d1a04 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Module__loggerObj__C)
    008d1a08 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_MessageQ_Object__count__C)
    008d1a0c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_A_alreadyRegistered__C)
    008d1a10 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_A_internal__C)
    008d1a14 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_A_invArgument__C)
    008d1a18 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_A_notRegistered__C)
    008d1a1c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_A_reservedEvent__C)
    008d1a20 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_Module__diagsEnabled__C)
    008d1a24 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_Module__diagsIncluded__C)
    008d1a28 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_Module__diagsMask__C)
    008d1a2c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_Module__gateObj__C)
    008d1a30 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_Object__heap__C)
    008d1a34 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_numEvents__C)
    008d1a38 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_Notify_sendEventPollCount__C)
    008d1a3c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_A_addrOutOfRange__C)
    008d1a40 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_A_idTooLarge__C)
    008d1a44 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_A_noHeap__C)
    008d1a48 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_A_region0Invalid__C)
    008d1a4c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_A_regionInvalid__C)
    008d1a50 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_A_reserveTooMuch__C)
    008d1a54 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_INVALIDSRPTR__C)
    008d1a58 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_Module__diagsEnabled__C)
    008d1a5c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_Module__diagsIncluded__C)
    008d1a60 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_Module__diagsMask__C)
    008d1a64 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_cacheLineSize__C)
    008d1a68 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_numOffsetBits__C)
    008d1a6c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_offsetMask__C)
    008d1a70 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_Interrupt_INTERDSPINT__C)
    008d1a74 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_Interrupt_IPCAR0__C)
    008d1a78 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_Interrupt_IPCGR0__C)
    008d1a7c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_Interrupt_KICK0__C)
    008d1a80 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_Interrupt_KICK1__C)
    008d1a84 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_MultiProcSetup_A_invalidProcessor__C)
    008d1a88 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsEnabled__C)
    008d1a8c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsIncluded__C)
    008d1a90 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsMask__C)
    008d1a94 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_MultiProcSetup_procMap__C)
    008d1a98 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_NotifySetup_dspIntVectId__C)
    008d1a9c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_A_invSemNum__C)
    008d1aa0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_Module__diagsEnabled__C)
    008d1aa4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_Module__diagsIncluded__C)
    008d1aa8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_Module__diagsMask__C)
    008d1aac 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_baseAddr__C)
    008d1ab0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_numSems__C)
    008d1ab4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_reservedMaskArr__C)
    008d1ab8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_reservedMaskArr__A)
    008d1abc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_A_invalidAction__C)
    008d1ac0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsEnabled__C)
    008d1ac4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsIncluded__C)
    008d1ac8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsMask__C)
    008d1acc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_action__C)
    008d1ad0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_E_gateRemotelyOpened__C)
    008d1ad4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_Module__diagsEnabled__C)
    008d1ad8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_Module__diagsIncluded__C)
    008d1adc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_Module__diagsMask__C)
    008d1ae0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_numInstances__C)
    008d1ae4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_A_align__C)
    008d1ae8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_A_heapSize__C)
    008d1aec 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_A_invalidFree__C)
    008d1af0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_A_zeroBlock__C)
    008d1af4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_E_memory__C)
    008d1af8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_Module__diagsEnabled__C)
    008d1afc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_Module__diagsIncluded__C)
    008d1b00 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_Module__diagsMask__C)
    008d1b04 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_interfaces_IGateMPSupport_Interface__BASE__C)
    008d1b08 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_interfaces_IMessageQTransport_Interface__BASE__C)
    008d1b0c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_interfaces_INotifyDriver_Interface__BASE__C)
    008d1b10 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsEnabled__C)
    008d1b14 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsIncluded__C)
    008d1b18 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsMask__C)
    008d1b1c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__heap__C)
    008d1b20 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_A_invalidValueLen__C)
    008d1b24 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_semMultiBlock__O)
    008d1b28 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_semRemoteWait__O)
    008d1b2c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_swiObj__O)
    008d1b30 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsEnabled__C)
    008d1b34 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsIncluded__C)
    008d1b38 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsMask__C)
    008d1b3c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_notifyEventId__C)
    008d1b40 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_timeout__C)
    008d1b44 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShmSetup_priority__C)
    008d1b48 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_Instance_State_swiObj__O)
    008d1b4c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_Module__diagsEnabled__C)
    008d1b50 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_Module__diagsIncluded__C)
    008d1b54 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_Module__diagsMask__C)
    008d1b58 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_INameServerRemote_Interface__BASE__C)
    008d1b5c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_MultiProc_A_invalidMultiProcId__C)
    008d1b60 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_MultiProc_Module__diagsEnabled__C)
    008d1b64 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_MultiProc_Module__diagsIncluded__C)
    008d1b68 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_MultiProc_Module__diagsMask__C)
    008d1b6c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_NameServer_A_invArgument__C)
    008d1b70 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_NameServer_A_invalidLen__C)
    008d1b74 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_NameServer_E_entryExists__C)
    008d1b78 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_NameServer_E_maxReached__C)
    008d1b7c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_NameServer_Instance_State_freeList__O)
    008d1b80 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_NameServer_Instance_State_nameList__O)
    008d1b84 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_NameServer_Module__diagsEnabled__C)
    008d1b88 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_NameServer_Module__diagsIncluded__C)
    008d1b8c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_NameServer_Module__diagsMask__C)
    008d1b90 00000004 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_NameServer_Object__count__C)
    008d1b94 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_BIOS_Module__diagsEnabled__C)
    008d1b98 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_BIOS_Module__diagsIncluded__C)
    008d1b9c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_BIOS_Module__diagsMask__C)
    008d1ba0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_BIOS_installedErrorHook__C)
    008d1ba4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_EventCombiner_E_unpluggedEvent__C)
    008d1ba8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Exception_E_exceptionMin__C)
    008d1bac 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Exception_exceptionHook__C)
    008d1bb0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Exception_externalHook__C)
    008d1bb4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Exception_internalHook__C)
    008d1bb8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Exception_nmiHook__C)
    008d1bbc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_E_alreadyDefined__C)
    008d1bc0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_E_handleNotFound__C)
    008d1bc4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_LD_end__C)
    008d1bc8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_LM_begin__C)
    008d1bcc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__diagsEnabled__C)
    008d1bd0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__diagsIncluded__C)
    008d1bd4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__diagsMask__C)
    008d1bd8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__loggerFxn1__C)
    008d1bdc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__loggerFxn8__C)
    008d1be0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__loggerObj__C)
    008d1be4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_Cache_atomicBlockSize__C)
    008d1be8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_E_unpluggedSysInt__C)
    008d1bec 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_eventId__C)
    008d1bf0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId__C)
    008d1bf4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_numEvents__C)
    008d1bf8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_numStatusRegs__C)
    008d1bfc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_numSysInts__C)
    008d1c00 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_sysIntToHostInt__C)
    008d1c04 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_A_badContext__C)
    008d1c08 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_Instance_State_pendQ__O)
    008d1c0c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_Module__diagsEnabled__C)
    008d1c10 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_Module__diagsIncluded__C)
    008d1c14 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_Module__diagsMask__C)
    008d1c18 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_A_badContext__C)
    008d1c1c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Instance_State_sem__O)
    008d1c20 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Module__diagsEnabled__C)
    008d1c24 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Module__diagsIncluded__C)
    008d1c28 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Module__diagsMask__C)
    008d1c2c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateSwi_A_badContext__C)
    008d1c30 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateSwi_Module__diagsEnabled__C)
    008d1c34 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateSwi_Module__diagsIncluded__C)
    008d1c38 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateSwi_Module__diagsMask__C)
    008d1c3c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_hal_Hwi_E_stackOverflow__C)
    008d1c40 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapBuf_Instance_State_freeList__O)
    008d1c44 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapBuf_Object__count__C)
    008d1c48 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapBuf_numConstructedHeaps__C)
    008d1c4c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_A_align__C)
    008d1c50 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_A_heapSize__C)
    008d1c54 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_A_invalidFree__C)
    008d1c58 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_A_zeroBlock__C)
    008d1c5c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_E_memory__C)
    008d1c60 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C)
    008d1c64 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C)
    008d1c68 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Module__diagsMask__C)
    008d1c6c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Module__gateObj__C)
    008d1c70 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Object__count__C)
    008d1c74 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_reqAlignMask__C)
    008d1c78 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_reqAlign__C)
    008d1c7c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_A_badThreadType__C)
    008d1c80 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_LM_begin__C)
    008d1c84 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_LM_tick__C)
    008d1c88 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_LW_delayed__C)
    008d1c8c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module_State_clockQ__O)
    008d1c90 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__diagsEnabled__C)
    008d1c94 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__diagsIncluded__C)
    008d1c98 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__diagsMask__C)
    008d1c9c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__loggerFxn1__C)
    008d1ca0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__loggerFxn2__C)
    008d1ca4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__loggerObj__C)
    008d1ca8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_tickMode__C)
    008d1cac 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_tickSource__C)
    008d1cb0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Idle_funcList__A)
    008d1cb4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_A_badContext__C)
    008d1cb8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_A_noEvents__C)
    008d1cbc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_A_overflow__C)
    008d1cc0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Instance_State_pendQ__O)
    008d1cc4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_LM_pend__C)
    008d1cc8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_LM_post__C)
    008d1ccc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__diagsEnabled__C)
    008d1cd0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__diagsIncluded__C)
    008d1cd4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__diagsMask__C)
    008d1cd8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__loggerFxn2__C)
    008d1cdc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__loggerFxn4__C)
    008d1ce0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__loggerObj__C)
    008d1ce4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_A_badPriority__C)
    008d1ce8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_LD_end__C)
    008d1cec 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_LM_begin__C)
    008d1cf0 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_LM_post__C)
    008d1cf4 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__diagsEnabled__C)
    008d1cf8 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__diagsIncluded__C)
    008d1cfc 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__diagsMask__C)
    008d1d00 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__loggerFxn1__C)
    008d1d04 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__loggerFxn4__C)
    008d1d08 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__loggerObj__C)
    008d1d0c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_Object__count__C)
    008d1d10 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_A_badPriority__C)
    008d1d14 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_E_spOutOfBounds__C)
    008d1d18 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_E_stackOverflow__C)
    008d1d1c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_LD_block__C)
    008d1d20 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_LD_exit__C)
    008d1d24 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_LD_ready__C)
    008d1d28 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_LM_setPri__C)
    008d1d2c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_LM_switch__C)
    008d1d30 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_LM_yield__C)
    008d1d34 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_Module_State_inactiveQ__O)
    008d1d38 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_Module_State_terminatedQ__O)
    008d1d3c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__diagsEnabled__C)
    008d1d40 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__diagsIncluded__C)
    008d1d44 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__diagsMask__C)
    008d1d48 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__loggerFxn2__C)
    008d1d4c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__loggerFxn4__C)
    008d1d50 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__loggerObj__C)
    008d1d54 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_Object__count__C)
    008d1d58 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_allBlockedFunc__C)
    008d1d5c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_numConstructedTasks__C)
    008d1d60 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_numPriorities__C)
    008d1d64 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_A_notAvailable__C)
    008d1d68 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_E_cannotSupport__C)
    008d1d6c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_Module__diagsEnabled__C)
    008d1d70 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_Module__diagsIncluded__C)
    008d1d74 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_Module__diagsMask__C)
    008d1d78 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_anyMask__C)
    008d1d7c 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_freqDivisor__C)
    008d1d80 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_numLocalTimers__C)
    008d1d84 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_numTimerDevices__C)
    008d1d88 00000004 UserProcessProject_pe66.oe66 (.const:ti_sysbios_xdcruntime_GateThreadSupport_Instance_State_gate__O)
    008d1d8c 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Assert_E_assertFailed__C)
    008d1d90 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Core_A_initializedParams__C)
    008d1d94 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Core_Module__diagsEnabled__C)
    008d1d98 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Core_Module__diagsIncluded__C)
    008d1d9c 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Core_Module__diagsMask__C)
    008d1da0 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Error_E_generic__C)
    008d1da4 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Error_E_memory__C)
    008d1da8 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Error_Module__diagsEnabled__C)
    008d1dac 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Error_Module__diagsIncluded__C)
    008d1db0 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Error_Module__diagsMask__C)
    008d1db4 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Error_Module__loggerFxn8__C)
    008d1db8 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Error_Module__loggerObj__C)
    008d1dbc 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Error_policy__C)
    008d1dc0 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Error_raiseHook__C)
    008d1dc4 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_IGateProvider_Interface__BASE__C)
    008d1dc8 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_IHeap_Interface__BASE__C)
    008d1dcc 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_IModule_Interface__BASE__C)
    008d1dd0 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Log_L_error__C)
    008d1dd4 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Main_Module__diagsEnabled__C)
    008d1dd8 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Main_Module__diagsIncluded__C)
    008d1ddc 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Main_Module__diagsMask__C)
    008d1de0 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Main_Module__loggerFxn4__C)
    008d1de4 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Main_Module__loggerObj__C)
    008d1de8 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Memory_defaultHeapInstance__C)
    008d1dec 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Startup_execImpl__C)
    008d1df0 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Startup_lastFxns__A)
    008d1df4 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Startup_maxPasses__C)
    008d1df8 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Startup_sfxnRts__C)
    008d1dfc 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Startup_sfxnTab__C)
    008d1e00 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_System_Module__gateObj__C)
    008d1e04 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_System_extendFxn__C)
    008d1e08 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_System_maxAtexitHandlers__C)
    008d1e0c 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Text_charTab__C)
    008d1e10 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Text_nameEmpty__C)
    008d1e14 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Text_nameStatic__C)
    008d1e18 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Text_nameUnknown__C)
    008d1e1c 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Text_nodeTab__C)
    008d1e20 00000004 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Text_visitRopeFxn__C)
    008d1e24 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_Module__id__C)
    008d1e26 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_numEntries__C)
    008d1e28 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_SharedRegion_translate__C)
    008d1e2a 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_Interrupt_enableKick__C)
    008d1e2c 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_family_c647x_MultiProcSetup_Module__id__C)
    008d1e2e 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateHWSem_Module__id__C)
    008d1e30 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GateMPSupportNull_Module__id__C)
    008d1e32 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_gates_GatePeterson_Module__id__C)
    008d1e34 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_heaps_HeapMemMP_Module__id__C)
    008d1e36 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__id__C)
    008d1e38 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__id__C)
    008d1e3a 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_Module__id__C)
    008d1e3c 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_ipc_transports_TransportShm_notifyEventId__C)
    008d1e3e 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_MultiProc_Module__id__C)
    008d1e40 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_MultiProc_numProcessors__C)
    008d1e42 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_MultiProc_numProcsInCluster__C)
    008d1e44 00000002 UserProcessProject_pe66.oe66 (.const:ti_sdo_utils_NameServer_Module__id__C)
    008d1e46 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_BIOS_Module__id__C)
    008d1e48 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_EventCombiner_Module__id__C)
    008d1e4a 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Exception_Module__id__C)
    008d1e4c 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__id__C)
    008d1e4e 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__loggerDefined__C)
    008d1e50 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_Module__id__C)
    008d1e52 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutexPri_Module__id__C)
    008d1e54 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Module__id__C)
    008d1e56 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_gates_GateSwi_Module__id__C)
    008d1e58 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_hal_Hwi_Module__id__C)
    008d1e5a 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Module__id__C)
    008d1e5c 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__id__C)
    008d1e5e 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__loggerDefined__C)
    008d1e60 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__id__C)
    008d1e62 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__loggerDefined__C)
    008d1e64 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__id__C)
    008d1e66 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__loggerDefined__C)
    008d1e68 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__id__C)
    008d1e6a 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__loggerDefined__C)
    008d1e6c 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_deleteTerminatedTasks__C)
    008d1e6e 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_knl_Task_initStackFlag__C)
    008d1e70 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_Module__id__C)
    008d1e72 00000002 UserProcessProject_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_startupNeeded__C)
    008d1e74 00000002 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Core_Module__id__C)
    008d1e76 00000002 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Error_Module__loggerDefined__C)
    008d1e78 00000002 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Error_maxDepth__C)
    008d1e7a 00000002 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Main_Module__id__C)
    008d1e7c 00000002 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Main_Module__loggerDefined__C)
    008d1e7e 00000002 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Memory_Module__id__C)
    008d1e80 00000002 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Text_charCnt__C)
    008d1e82 00000002 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Text_isLoaded__C)
    008d1e84 00000002 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Text_registryModsLastId__C)
    008d1e86 00000002 UserProcessProject_pe66.oe66 (.const:xdc_runtime_Text_unnamedModsLastId__C)

    .stack 0 008d1e88 00001000 UNINITIALIZED
    008d1e88 00000008 boot.ae66 : boot.oe66 (.stack)
    008d1e90 00000ff8 --HOLE--

    .cio 0 008d2e88 00000120 UNINITIALIZED
    008d2e88 00000120 rts6600_elf.lib : trgmsg.obj (.cio)

    .switch 0 008d2fa8 00000058
    008d2fa8 00000014 edma_cs.obj (.switch:edma3OsProtectEntry)
    008d2fbc 00000014 edma_cs.obj (.switch:edma3OsProtectExit)
    008d2fd0 00000010 edma3_lld_rm.ae66 : edma3resmgr.oe66 (.switch:EDMA3_RM_allocResource)
    008d2fe0 00000010 : edma3resmgr.oe66 (.switch:EDMA3_RM_freeResource)
    008d2ff0 00000010 ipc.lib : Ipc.obj (.switch:ti_sdo_ipc_GateMP_Instance_finalize__F)

    .vecs 0 008d3000 00000200
    008d3000 00000200 UserProcessProject_pe66.oe66 (.vecs)

    .bss 0 008d3200 00000068 UNINITIALIZED
    008d3200 00000034 user_process_ICS+RF+.obj (.bss)
    008d3234 0000000c InterCoreMsgController.obj (.bss)
    008d3240 00000008 TRxDataInterface.obj (.bss)
    008d3248 00000008 data_transfer.obj (.bss)
    008d3250 00000008 edma_init.obj (.bss)
    008d3258 00000008 edma_xfer.obj (.bss)
    008d3260 00000004 UserProcessProject_pe66.oe66 (.bss)
    008d3264 00000004 gpio.obj (.bss)

    .neardata
    * 0 008d3268 0000014a
    008d3268 000000e8 user_process_ICS+RF+.obj (.neardata)
    008d3350 00000010 TRxDataInterface.obj (.neardata)
    008d3360 00000010 UserProcessProject_pe66.oe66 (.neardata)
    008d3370 0000000c edma_c6670_int_reg.obj (.neardata)
    008d337c 0000000c edma_xfer.obj (.neardata)
    008d3388 0000000a edma3_lld_rm.ae66 : edma3resmgr.oe66 (.neardata)
    008d3392 00000002 --HOLE-- [fill = 0]
    008d3394 00000009 ErrorController.obj (.neardata)
    008d339d 00000003 --HOLE-- [fill = 0]
    008d33a0 00000008 edma_isr.obj (.neardata)
    008d33a8 00000004 InterCoreMsgController.obj (.neardata)
    008d33ac 00000004 data_transfer.obj (.neardata)
    008d33b0 00000002 edma3_lld_drv.ae66 : edma3_drv_init.oe66 (.neardata)

    .rodata 0 008d33b4 0000000c
    008d33b4 00000008 UserProcessProject_pe66.oe66 (.rodata)
    008d33bc 00000004 edma_c6670_cfg.obj (.rodata)

    .cinit 0 008d33c0 000025d8
    008d33c0 000024e1 (.cinit..fardata.load) [load image, compression = rle]
    008d58a1 00000003 --HOLE-- [fill = 0]
    008d58a4 00000059 (.cinit..neardata.load) [load image, compression = rle]
    008d58fd 00000003 --HOLE-- [fill = 0]
    008d5900 00000012 (.cinit..rodata.load) [load image, compression = rle]
    008d5912 00000002 --HOLE-- [fill = 0]
    008d5914 0000000c (__TI_handler_table)
    008d5920 00000008 (.cinit..CpriBufferPointer.load) [load image, compression = zero_init]
    008d5928 00000008 (.cinit..CpriRxBuffer.load) [load image, compression = zero_init]
    008d5930 00000008 (.cinit..CpriTxBuffer.load) [load image, compression = zero_init]
    008d5938 00000008 (.cinit..bss.load) [load image, compression = zero_init]
    008d5940 00000008 (.cinit..far.load) [load image, compression = zero_init]
    008d5948 00000008 (.cinit..x_ll_shared.load) [load image, compression = zero_init]
    008d5950 00000048 (__TI_cinit_table)

    .CpriBufferPointer
    * 0 0c000000 00000704 UNINITIALIZED
    0c000000 00000704 TRxDataInterface.obj (.CpriBufferPointer)

    .x_ll_shared
    * 0 0c001000 0001e000 UNINITIALIZED
    0c001000 0001e000 user_process_ICS+RF+.obj (.x_ll_shared)

    ti.sdo.ipc.SharedRegion_0
    * 0 0c12c400 00010000 NOLOAD SECTION
    0c12c400 00010000 --HOLE--

    .CpriRxBuffer
    * 0 80000000 00096000 UNINITIALIZED
    80000000 00096000 TRxDataInterface.obj (.CpriRxBuffer)

    .CpriTxBuffer
    * 0 8012c000 00096000 UNINITIALIZED
    8012c000 00096000 TRxDataInterface.obj (.CpriTxBuffer)


    LINKER GENERATED COPY TABLES

    __TI_cinit_table @ 008d5950 records: 9, size/record: 8, table size: 72
    .fardata: load addr=008d33c0, load size=000024e1 bytes, run addr=008c8520, run size=0000537c bytes, compression=rle
    .neardata: load addr=008d58a4, load size=00000059 bytes, run addr=008d3268, run size=0000014a bytes, compression=rle
    .rodata: load addr=008d5900, load size=00000012 bytes, run addr=008d33b4, run size=0000000c bytes, compression=rle
    .CpriBufferPointer: load addr=008d5920, load size=00000008 bytes, run addr=0c000000, run size=00000704 bytes, compression=zero_init
    .CpriRxBuffer: load addr=008d5928, load size=00000008 bytes, run addr=80000000, run size=00096000 bytes, compression=zero_init
    .CpriTxBuffer: load addr=008d5930, load size=00000008 bytes, run addr=8012c000, run size=00096000 bytes, compression=zero_init
    .bss: load addr=008d5938, load size=00000008 bytes, run addr=008d3200, run size=00000068 bytes, compression=zero_init
    .far: load addr=008d5940, load size=00000008 bytes, run addr=00800200, run size=00096f80 bytes, compression=zero_init
    .x_ll_shared: load addr=008d5948, load size=00000008 bytes, run addr=0c001000, run size=0001e000 bytes, compression=zero_init


    LINKER GENERATED HANDLER TABLE

    __TI_handler_table @ 008d5914 records: 3, size/record: 4, table size: 12
    index: 0, handler: __TI_zero_init
    index: 1, handler: __TI_decompress_rle24
    index: 2, handler: __TI_decompress_none


    GLOBAL SYMBOLS: SORTED ALPHABETICALLY BY Name

    address name
    -------- ----
    008d3314 AC_ADAPTION
    008d32fc AC_GAIN
    008d3344 AC_Loop_Itt
    00897180 AC_SystemReset
    008d3324 AC_monitor
    008d3328 APU_elements
    008d331c AdaptItt
    00847760 Adj
    008985b4 AnalogueCancSetUp
    008c7160 C$$EXIT
    008c5578 C$$IO$$
    008d32c4 CORR_BACKOFF_INT
    008d32c0 CORR_BACKOFF_SAMP
    008d3208 CORR_ON
    80000000 CPRI_ANT0_RxBuffer
    8012c000 CPRI_ANT0_TxBuffer
    0c000100 CPRI_RxRP_ch0
    0c000500 CPRI_RxRP_ch1
    0c000000 CPRI_RxWP_ch0
    0c000400 CPRI_RxWP_ch1
    0c000300 CPRI_TxRP_ch0
    0c000700 CPRI_TxRP_ch1
    0c000200 CPRI_TxWP_ch0
    0c000600 CPRI_TxWP_ch1
    008c6f40 CSL_GPIO_open
    008c71a0 CSL_tscEnable
    008c71a8 CSL_tscRead
    008987a8 CallBackFunc
    0083e760 CleanAdj
    008d332c CurrentAPU
    008d3308 Delta_sent_time
    008be040 EDMA3_DRV_clearErrorBits
    008bbe80 EDMA3_DRV_close
    008b1ac0 EDMA3_DRV_create
    008c0060 EDMA3_DRV_delete
    008b1d40 EDMA3_DRV_disableTransfer
    008b3dc0 EDMA3_DRV_enableTransfer
    008ae5a0 EDMA3_DRV_freeChannel
    008b02e0 EDMA3_DRV_open
    0089a8a0 EDMA3_DRV_requestChannel
    008bcc40 EDMA3_DRV_setPaRAM
    008d33b4 EDMA3_MAX_RM_INSTANCES
    0089b4e0 EDMA3_RM_allocResource
    008b81e0 EDMA3_RM_close
    008ad5a0 EDMA3_RM_create
    008c1020 EDMA3_RM_delete
    008ab6e0 EDMA3_RM_freeResource
    008a4760 EDMA3_RM_open
    008ba500 EDMA3_RM_registerTccCb
    008bbfe0 EDMA3_RM_unregisterTccCb
    008b21c8 ERR_Display
    008b20e8 ERR_Initialize
    008b20a0 ERR_Send_ErrorMsg
    008b3100 Edma3_CacheFlush
    008b30d8 Edma3_CacheInvalidate
    008d3338 EscapeAdaption
    008d334c FINAL_MSG_SENT
    008d32f4 FIRST_FRAME
    008d3320 Gain
    008d3318 GainNorm
    008d3300 Gain_Tests
    008c4b00 GateMP_Params_init
    008bcd80 GateMP_close
    008b6660 GateMP_enter
    008b6860 GateMP_leave
    008ae8a0 GateMP_openByAddr
    008ad8e0 GateMP_sharedMemReq
    008c2820 HOSTclose
    008bea60 HOSTlseek
    008c0140 HOSTopen
    008c10e0 HOSTread
    008b8fe0 HOSTrename
    008c28c0 HOSTtime
    008c11a0 HOSTunlink
    008c1260 HOSTwrite
    008c4b60 HeapMemMP_Params_init
    008c1320 HeapMemMP_create
    008b83a0 HeapMemMP_openByAddr
    008ad220 HeapMemMP_sharedMemReq
    008af358 ICM_Initialize
    008af350 ICM_Register_Callback
    008af2ec ICM_Send_Message
    00897270 ICM_Send_Message_Local
    008d32f0 ICS_OVERRIDE
    0089d4a0 Ipc_attach
    008d3260 Ipc_sr0MemorySetup
    008b0860 Ipc_start
    008d3330 Iso
    008c13e0 ListMP_create
    008a5320 ListMP_getHead
    008b6a60 ListMP_openByAddr
    008aa5e0 ListMP_putTail
    008b4020 ListMP_sharedMemReq
    008a0200 MessageQ_put
    008d3334 MinIso
    008c6f60 MultiProc_getNumProcessors
    008c6f80 MultiProc_self
    008ba680 MultiProc_setLocalId
    008d32ec N_samps
    008d32e8 N_taps
    008a2e20 NameServer_add
    008ba800 NameServer_getHandle
    008b0b00 NameServer_getLocal
    008bcec0 Notify_attach
    008ba980 Notify_intLineRegistered
    008a2060 Notify_registerEvent
    008a4d40 Notify_registerEventSingle
    008a3b20 Notify_sendEvent
    008a58e0 Notify_unregisterEventSingle
    008d32bc PERF_CORR
    008d32dc PERF_UPDATE
    008d330c POWER_PERIOD
    008d329c PULSE_COUNT
    008d3298 PULSE_OFF_PERIOD
    008d3290 PULSE_ON
    008d3294 PULSE_ON_PERIOD
    008d328c PULSING
    008d3268 RANGING
    00895440 RcvLog
    008d3350 RcvLogCnt
    008d3354 RcvTimeCnt
    00895840 RcvTimeLog
    008a88b0 Recv_CPRIData
    00896040 SendLog
    008d335c SendLogCnt
    008d3358 SendTimeCnt
    00895c40 SendTimeLog
    008a8614 Send_CPRIData
    008d3310 Sent
    008987a4 Set_APU_Config
    008b9180 SharedRegion_getCacheLineSize
    008af480 SharedRegion_getEntry
    008b9320 SharedRegion_getHeap
    008af760 SharedRegion_getPtr
    008b2240 SharedRegion_getSRPtr
    008b94c0 SharedRegion_isCacheEnabled
    008d3348 Start
    00898754 StartUp
    008a85e0 TRxDataInterface_Initialize
    008cd440 TSK_idle
    008d3304 TxPow
    00800200 __ASM__
    008d2e88 __CIOBUF_
    00800270 __ISA__
    00800288 __PLAT__
    008002b0 __TARG__
    008d5950 __TI_CINIT_Base
    008d5998 __TI_CINIT_Limit
    008d5914 __TI_Handler_Table_Base
    008d5920 __TI_Handler_Table_Limit
    UNDEFED __TI_INITARRAY_Base
    UNDEFED __TI_INITARRAY_Limit
    008d2e88 __TI_STACK_END
    00001000 __TI_STACK_SIZE
    008d3200 __TI_STATIC_BASE
    00000001 __TI_args_main
    008c71c0 __TI_decompress_none
    008c71e0 __TI_decompress_rle24
    008cd824 __TI_enable_exit_profile_output
    ffffffff __TI_pprof_out_hndl
    ffffffff __TI_prof_data_size
    ffffffff __TI_prof_data_start
    008c04c0 __TI_zero_init
    008002d8 __TRDR__
    ffffffff __binit__
    008c4bc0 __c6xabi_abort_msg
    008a5ea0 __c6xabi_divd
    008b24c0 __c6xabi_divf
    008c1620 __c6xabi_divu
    008b9660 __c6xabi_divul
    008b4e60 __c6xabi_divull
    008c6fa0 __c6xabi_errno_addr
    008c3400 __c6xabi_fixdu
    008c4c20 __c6xabi_frcmpyd_div
    008c57c0 __c6xabi_isinf
    008c3480 __c6xabi_llshl
    008c4c80 __c6xabi_llshru
    008c6fc0 __c6xabi_negll
    008c7020 __c6xabi_pop_rts
    008c7040 __c6xabi_push_rts
    008c2960 __c6xabi_remu
    ffffffff __c_args__
    008c6fe0 __cxa_atexit
    008c1560 __cxa_finalize
    008c7000 __cxa_ia64_exit
    008c1620 __divu
    008cd484 __errno
    008c7020 __pop_rts
    008c7040 __push_rts
    008c2960 __remu
    008c7060 __xdc__init
    008cc4e8 __xdc__init__addr
    008c5840 _args_main
    00000000 _argsize
    008bd000 _auto_init_elf
    008c2a00 _c_int00
    008c2aa0 _cleanup
    008cd81c _cleanup_ptr
    008be160 _closefile
    008d0858 _ctypes_
    008c16e0 _doflush
    008cd820 _dtors_ptr
    008cc4ec _ft_end
    008ccb70 _ftable
    008cd658 _lock
    008c7080 _nop
    008a9460 _printfi
    008c70e0 _register_lock
    008c7100 _register_unlock
    008d1e88 _stack
    008c4ce0 _subcull
    00897040 _tmpnams
    008cd65c _unlock
    008beb60 _wrt_ok
    008c7160 abort
    00820470 abs_corr
    008d3200 abs_corr_ll
    008c7180 atexit
    008c0300 atoi
    ffffffff binit
    008d3270 buf_idx_value
    008d3394 buffer_status
    008bec90 callback1
    008bec60 callback2
    008cd7f0 ccErrorInt
    008cd330 ccXferCompInt
    008cd5c8 ccXferHostInt
    00850760 check
    008c03e0 close
    008bd340 copy_data_ByEDMA
    008202e0 corr
    008d32c8 corr_idx
    0081e210 corr_ll
    008c8520 defInstInitConfig
    0081e200 delay
    008d32ac delay_idx
    008c4d78 determineProcId
    00874620 drvInstance
    008737a0 drvObj
    008d3250 dsp_num
    00878e00 edma3DrvChBoundRes
    008cd5f8 edma3ErrHostInt
    008ca4a0 edma3GblCfgParams
    008c3580 edma3MemCpy
    008c7200 edma3MemZero
    008d338c edma3NumPaRAMSets
    008b3018 edma3OsProtectEntry
    008b2f88 edma3OsProtectExit
    008b2f2c edma3OsSemCreate
    008b2f08 edma3OsSemDelete
    008b2ee8 edma3OsSemGive
    008b2ec0 edma3OsSemTake
    008c5900 edma3ParamCpy
    0088d9e0 edma3_dma_ch_max_val
    0088da20 edma3_link_ch_max_val
    0088da00 edma3_link_ch_min_val
    0088da80 edma3_log_ch_max_val
    0088da60 edma3_qdma_ch_max_val
    0088da40 edma3_qdma_ch_min_val
    008abb50 edma3_xfer
    008b8864 edma3deinit
    008b8720 edma3init
    008cd800 edmaSemHandle
    008cd484 errno
    008c17a0 exit
    008c05a0 fflush
    008d32b4 finish_pulse_idx
    008d3288 found_time
    008bed60 fprintf
    008b5bc0 fputc
    008ace80 fputs
    008c5940 free
    008abb20 freeChannel
    008bae00 frexp
    008be3a0 fseek
    008cd7d0 gblCfgReqdArray
    008c4d54 getGlobalAddr
    008c0680 gpio_Init
    008c06f8 gpio_SetInput
    008c06b4 gpio_SetOutput
    008d3264 hGpio_handle
    00820478 h_est
    008205b8 h_est_ll
    008d3370 hwiInterrupt
    008d3230 i
    008d3210 idx_samp
    008d320c idx_tap
    008d3274 impulse_power_int
    008bd2e8 init_data_transfer
    008d3280 interval
    008d33a0 irqRaised1
    008d33a2 irqRaised2
    008c4d40 isGblConfigRequired
    008c7220 lisrEdma3CCErrHandler0
    008c7240 lisrEdma3ComplHandler0
    008c7260 lisrEdma3TC0ErrHandler0
    008c7280 lisrEdma3TC1ErrHandler0
    008c72a0 lisrEdma3TC2ErrHandler0
    008c72c0 lisrEdma3TC3ErrHandler0
    008c72e0 lisrEdma3TC4ErrHandler0
    008c7300 lisrEdma3TC5ErrHandler0
    008c7320 lisrEdma3TC6ErrHandler0
    008c7340 lisrEdma3TC7ErrHandler0
    008d32cc load_corr_idx
    00850780 localQueueName
    008b9800 log
    008c5980 log10
    008d32a8 loop_pulse_idx
    008972f0 loopback2Tx
    008d333c low_Current_Gain
    008d3340 low_Current_Index
    008c2e60 lseek
    00820708 ltf_begin
    008c0760 ltoa
    00899980 main
    008c3600 malloc
    008d32d8 max_abs_corr
    008d32d4 max_shift
    008c4da0 memccpy
    008c2f00 memcpy
    008c0840 memset
    008c2fa0 modf
    008d3228 nextProcId
    00850790 nextQueueName
    008d33b8 notifySemHandle
    008d33bc numEdma3Instances
    008cd810 numEdma3Tc
    008d326c peak_value
    0086e7a0 preamble_vals
    008cd688 ptrEdma3TcIsrHandler
    008d336c ptrInitCfgArray
    008d3368 ptrRMIArray
    008d32a4 pulse_idx
    008c7380 putc
    008c73a0 putchar
    008c3680 rand
    008507a0 random_val
    008d3278 ranging_pulses_sent
    008c3700 readmsg
    008d3254 region_id
    008ae34c registerEdma3Interrupts
    008c4780 remove
    008abb00 requestChannel
    008d3360 resMgrInstance
    0088b138 resMgrInstanceArray
    0088daa0 resMgrObj
    008cad28 sampleEdma3GblCfgParams
    008c94e0 sampleInstInitConfig
    008d32a0 samples_left
    008206f8 scale
    008d3284 sent_time
    008b7260 setvbuf
    008d32d0 shift_idx
    008c4e00 srand
    008d32b0 start_pulse_idx
    008d32b8 start_pulse_interval_idx
    008d32e4 start_update_interval_idx
    008d322c status
    00820700 stf_end
    008cd390 tcErrorInt
    008d0854 ti_sdo_ipc_GateMP_A_invalidClose__C
    008d1714 ti_sdo_ipc_GateMP_A_invalidDelete__C
    008d1734 ti_sdo_ipc_GateMP_E_gateUnavailable__C
    008d1754 ti_sdo_ipc_GateMP_E_localGate__C
    0089f9a0 ti_sdo_ipc_GateMP_Instance_finalize__F
    008987c0 ti_sdo_ipc_GateMP_Instance_init__F
    008d1774 ti_sdo_ipc_GateMP_LM_create__C
    008d1794 ti_sdo_ipc_GateMP_LM_delete__C
    008d1874 ti_sdo_ipc_GateMP_LM_enter__C
    008d18ec ti_sdo_ipc_GateMP_LM_leave__C
    008d1904 ti_sdo_ipc_GateMP_LM_open__C
    008cb5b0 ti_sdo_ipc_GateMP_Module_State_0_remoteCustom1Gates__A
    008cd870 ti_sdo_ipc_GateMP_Module_State_0_remoteCustom2Gates__A
    008cd058 ti_sdo_ipc_GateMP_Module_State_0_remoteSystemGates__A
    008d1934 ti_sdo_ipc_GateMP_Module__diagsEnabled__C
    008d196c ti_sdo_ipc_GateMP_Module__diagsIncluded__C
    008d1978 ti_sdo_ipc_GateMP_Module__diagsMask__C
    008d0a56 ti_sdo_ipc_GateMP_Module__id__C
    008d0eae ti_sdo_ipc_GateMP_Module__loggerDefined__C
    008d197c ti_sdo_ipc_GateMP_Module__loggerFxn2__C
    008d1980 ti_sdo_ipc_GateMP_Module__loggerFxn4__C
    008d1984 ti_sdo_ipc_GateMP_Module__loggerObj__C
    008cbdb0 ti_sdo_ipc_GateMP_Module__root__V
    008cbdb8 ti_sdo_ipc_GateMP_Module__state__V
    008d13b4 ti_sdo_ipc_GateMP_Object__DESC__C
    008d0ee8 ti_sdo_ipc_GateMP_Object__PARAMS__C
    008c1860 ti_sdo_ipc_GateMP_Object__create__S
    008c5a00 ti_sdo_ipc_GateMP_Object__delete__S
    008c73c0 ti_sdo_ipc_GateMP_Params__init__S
    008c73e0 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Object__create__S
    008c7400 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Object__delete__S
    008c7420 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Params__init__S
    008c7440 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Proxy__abstract__S
    008c7460 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Proxy__delegate__S
    008c7800 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_getReservedMask__E
    008c7820 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_query__E
    008c4f80 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_sharedMemReq__E
    008c7480 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Object__create__S
    008c74a0 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Object__delete__S
    008c74c0 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Params__init__S
    008c74e0 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Proxy__abstract__S
    008c7500 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Proxy__delegate__S
    008c7780 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_getReservedMask__E
    008c77a0 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_query__E
    008c77c0 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_sharedMemReq__E
    008c7520 ti_sdo_ipc_GateMP_RemoteSystemProxy_Object__create__S
    008c7540 ti_sdo_ipc_GateMP_RemoteSystemProxy_Object__delete__S
    008c7560 ti_sdo_ipc_GateMP_RemoteSystemProxy_Params__init__S
    008c7580 ti_sdo_ipc_GateMP_RemoteSystemProxy_Proxy__abstract__S
    008c75a0 ti_sdo_ipc_GateMP_RemoteSystemProxy_Proxy__delegate__S
    008c76e0 ti_sdo_ipc_GateMP_RemoteSystemProxy_getReservedMask__E
    008c7700 ti_sdo_ipc_GateMP_RemoteSystemProxy_query__E
    008c7720 ti_sdo_ipc_GateMP_RemoteSystemProxy_sharedMemReq__E
    008b7a60 ti_sdo_ipc_GateMP_attach__E
    008b7a60 ti_sdo_ipc_GateMP_attach__F
    008bc2a0 ti_sdo_ipc_GateMP_createLocal__E
    008bc2a0 ti_sdo_ipc_GateMP_createLocal__F
    008b7c40 ti_sdo_ipc_GateMP_getFreeResource__I
    008c1920 ti_sdo_ipc_GateMP_getRegion0ReservedSize__E
    008c1920 ti_sdo_ipc_GateMP_getRegion0ReservedSize__F
    008c75c0 ti_sdo_ipc_GateMP_getSharedAddr__E
    008c75c0 ti_sdo_ipc_GateMP_getSharedAddr__F
    008b99a0 ti_sdo_ipc_GateMP_openRegion0Reserved__E
    008b99a0 ti_sdo_ipc_GateMP_openRegion0Reserved__F
    008a9d20 ti_sdo_ipc_GateMP_setRegion0Reserved__E
    008a9d20 ti_sdo_ipc_GateMP_setRegion0Reserved__F
    008bef60 ti_sdo_ipc_GateMP_start__E
    008bef60 ti_sdo_ipc_GateMP_start__F
    008d1988 ti_sdo_ipc_Ipc_A_addrNotCacheAligned__C
    008d198c ti_sdo_ipc_Ipc_A_addrNotInSharedRegion__C
    008d1990 ti_sdo_ipc_Ipc_A_internal__C
    008d1994 ti_sdo_ipc_Ipc_A_invArgument__C
    008d1998 ti_sdo_ipc_Ipc_A_invParam__C
    008d199c ti_sdo_ipc_Ipc_A_nullArgument__C
    008d19a0 ti_sdo_ipc_Ipc_A_nullPointer__C
    008d19a4 ti_sdo_ipc_Ipc_E_internal__C
    008d19a8 ti_sdo_ipc_Ipc_E_nameFailed__C
    008d19ac ti_sdo_ipc_Ipc_E_versionMismatch__C
    008cd588 ti_sdo_ipc_Ipc_Module_State_0_procEntry__A
    008d19b0 ti_sdo_ipc_Ipc_Module__diagsEnabled__C
    008d19b4 ti_sdo_ipc_Ipc_Module__diagsIncluded__C
    008d19b8 ti_sdo_ipc_Ipc_Module__diagsMask__C
    008d1732 ti_sdo_ipc_Ipc_Module__id__C
    008cbe00 ti_sdo_ipc_Ipc_Module__state__V
    008d1752 ti_sdo_ipc_Ipc_generateSlaveDataForHost__C
    008d19bc ti_sdo_ipc_Ipc_numUserFxns__C
    008aa180 ti_sdo_ipc_Ipc_procSyncFinish__I
    008a80a0 ti_sdo_ipc_Ipc_procSyncStart__I
    008d19c0 ti_sdo_ipc_Ipc_procSync__C
    008d19c4 ti_sdo_ipc_Ipc_userFxns__C
    008b4280 ti_sdo_ipc_ListMP_Instance_finalize__F
    0089f100 ti_sdo_ipc_ListMP_Instance_init__F
    008d19c8 ti_sdo_ipc_ListMP_Module__diagsEnabled__C
    008d19cc ti_sdo_ipc_ListMP_Module__diagsIncluded__C
    008d19d0 ti_sdo_ipc_ListMP_Module__diagsMask__C
    008d1772 ti_sdo_ipc_ListMP_Module__id__C
    008cbe0c ti_sdo_ipc_ListMP_Module__root__V
    008cbe14 ti_sdo_ipc_ListMP_Module__state__V
    008d13d4 ti_sdo_ipc_ListMP_Object__DESC__C
    008d0fdc ti_sdo_ipc_ListMP_Object__PARAMS__C
    008c19e0 ti_sdo_ipc_ListMP_Object__create__S
    008c5a40 ti_sdo_ipc_ListMP_Object__delete__S
    008c75e0 ti_sdo_ipc_ListMP_Params__init__S
    008d19d4 ti_sdo_ipc_MessageQ_A_invalidMsg__C
    008d19d8 ti_sdo_ipc_MessageQ_A_invalidObj__C
    008d19dc ti_sdo_ipc_MessageQ_A_invalidQueueId__C
    008d19e0 ti_sdo_ipc_MessageQ_A_procIdInvalid__C
    008d19e4 ti_sdo_ipc_MessageQ_A_unregisteredTransport__C
    008d19e8 ti_sdo_ipc_MessageQ_Instance_State_highList__O
    008d19ec ti_sdo_ipc_MessageQ_Instance_State_normalList__O
    008d19f0 ti_sdo_ipc_MessageQ_LM_putLocal__C
    008cd6a8 ti_sdo_ipc_MessageQ_Module_State_0_heaps__A
    008cd738 ti_sdo_ipc_MessageQ_Module_State_0_transports__A
    008d19f4 ti_sdo_ipc_MessageQ_Module__diagsEnabled__C
    008d19f8 ti_sdo_ipc_MessageQ_Module__diagsIncluded__C
    008d19fc ti_sdo_ipc_MessageQ_Module__diagsMask__C
    008d1792 ti_sdo_ipc_MessageQ_Module__id__C
    008d17b2 ti_sdo_ipc_MessageQ_Module__loggerDefined__C
    008d1a00 ti_sdo_ipc_MessageQ_Module__loggerFxn4__C
    008d1a04 ti_sdo_ipc_MessageQ_Module__loggerObj__C
    008cbe18 ti_sdo_ipc_MessageQ_Module__root__V
    008cbe20 ti_sdo_ipc_MessageQ_Module__state__V
    008be5e0 ti_sdo_ipc_MessageQ_Module_startup__E
    008be5e0 ti_sdo_ipc_MessageQ_Module_startup__F
    008d1a08 ti_sdo_ipc_MessageQ_Object__count__C
    008c7600 ti_sdo_ipc_MessageQ_Object__get__S
    008bf760 ti_sdo_ipc_MessageQ_SetupTransportProxy_attach__E
    008c7920 ti_sdo_ipc_MessageQ_SetupTransportProxy_isRegistered__E
    008c5040 ti_sdo_ipc_MessageQ_SetupTransportProxy_sharedMemReq__E
    008bb100 ti_sdo_ipc_MessageQ_registerTransport__E
    008bb100 ti_sdo_ipc_MessageQ_registerTransport__F
    008bc400 ti_sdo_ipc_MessageQ_unregisterTransport__E
    008bc400 ti_sdo_ipc_MessageQ_unregisterTransport__F
    008d1a0c ti_sdo_ipc_Notify_A_alreadyRegistered__C
    008d1a10 ti_sdo_ipc_Notify_A_internal__C
    008d1a14 ti_sdo_ipc_Notify_A_invArgument__C
    008d1a18 ti_sdo_ipc_Notify_A_notRegistered__C
    008d1a1c ti_sdo_ipc_Notify_A_reservedEvent__C
    008bf060 ti_sdo_ipc_Notify_Instance_finalize__F
    008abf00 ti_sdo_ipc_Notify_Instance_init__F
    008c7620 ti_sdo_ipc_Notify_Module_GateProxy_enter__E
    008c7640 ti_sdo_ipc_Notify_Module_GateProxy_leave__E
    008c7de0 ti_sdo_ipc_Notify_Module_GateProxy_query__E
    008cd878 ti_sdo_ipc_Notify_Module_State_0_notifyHandles_0__A
    008cd880 ti_sdo_ipc_Notify_Module_State_0_notifyHandles_1__A
    008cd888 ti_sdo_ipc_Notify_Module_State_0_notifyHandles_2__A
    008cd828 ti_sdo_ipc_Notify_Module_State_0_notifyHandles__A
    008d1a20 ti_sdo_ipc_Notify_Module__diagsEnabled__C
    008d1a24 ti_sdo_ipc_Notify_Module__diagsIncluded__C
    008d1a28 ti_sdo_ipc_Notify_Module__diagsMask__C
    008d1a2c ti_sdo_ipc_Notify_Module__gateObj__C
    008d18ea ti_sdo_ipc_Notify_Module__id__C
    008cbe3c ti_sdo_ipc_Notify_Module__root__V
    008cbe44 ti_sdo_ipc_Notify_Module__state__V
    008bb280 ti_sdo_ipc_Notify_Module_startup__E
    008bb280 ti_sdo_ipc_Notify_Module_startup__F
    008d13f4 ti_sdo_ipc_Notify_Object__DESC__C
    008d17b4 ti_sdo_ipc_Notify_Object__PARAMS__C
    008c1aa0 ti_sdo_ipc_Notify_Object__create__S
    008d1a30 ti_sdo_ipc_Notify_Object__heap__C
    008c0920 ti_sdo_ipc_Notify_SetupProxy_attach__E
    008c76a0 ti_sdo_ipc_Notify_SetupProxy_numIntLines__E
    008c4e60 ti_sdo_ipc_Notify_SetupProxy_sharedMemReq__E
    008c1b60 ti_sdo_ipc_Notify_execMany__I
    008bd500 ti_sdo_ipc_Notify_exec__E
    008bd500 ti_sdo_ipc_Notify_exec__F
    008d1a34 ti_sdo_ipc_Notify_numEvents__C
    008d1902 ti_sdo_ipc_Notify_numLines__C
    008d1976 ti_sdo_ipc_Notify_reservedEvents__C
    008d1a38 ti_sdo_ipc_Notify_sendEventPollCount__C
    008d1a3c ti_sdo_ipc_SharedRegion_A_addrOutOfRange__C
    008d1a40 ti_sdo_ipc_SharedRegion_A_idTooLarge__C
    008d1a44 ti_sdo_ipc_SharedRegion_A_noHeap__C
    008d1a48 ti_sdo_ipc_SharedRegion_A_region0Invalid__C
    008d1a4c ti_sdo_ipc_SharedRegion_A_regionInvalid__C
    008d1a50 ti_sdo_ipc_SharedRegion_A_reserveTooMuch__C
    008d1a54 ti_sdo_ipc_SharedRegion_INVALIDSRPTR__C
    008ccfc8 ti_sdo_ipc_SharedRegion_Module_State_0_regions__A
    008d1a58 ti_sdo_ipc_SharedRegion_Module__diagsEnabled__C
    008d1a5c ti_sdo_ipc_SharedRegion_Module__diagsIncluded__C
    008d1a60 ti_sdo_ipc_SharedRegion_Module__diagsMask__C
    008d1e24 ti_sdo_ipc_SharedRegion_Module__id__C
    008cbe4c ti_sdo_ipc_SharedRegion_Module__state__V
    008bf160 ti_sdo_ipc_SharedRegion_attach__E
    008bf160 ti_sdo_ipc_SharedRegion_attach__F
    008d1a64 ti_sdo_ipc_SharedRegion_cacheLineSize__C
    008bf260 ti_sdo_ipc_SharedRegion_clearReservedMemory__E
    008bf260 ti_sdo_ipc_SharedRegion_clearReservedMemory__F
    008d1e26 ti_sdo_ipc_SharedRegion_numEntries__C
    008d1a68 ti_sdo_ipc_SharedRegion_numOffsetBits__C
    008d1a6c ti_sdo_ipc_SharedRegion_offsetMask__C
    008ac700 ti_sdo_ipc_SharedRegion_reserveMemory__E
    008ac700 ti_sdo_ipc_SharedRegion_reserveMemory__F
    008a6a20 ti_sdo_ipc_SharedRegion_start__E
    008a6a20 ti_sdo_ipc_SharedRegion_start__F
    008d1e28 ti_sdo_ipc_SharedRegion_translate__C
    008d1a70 ti_sdo_ipc_family_c647x_Interrupt_INTERDSPINT__C
    008d1a74 ti_sdo_ipc_family_c647x_Interrupt_IPCAR0__C
    008d1a78 ti_sdo_ipc_family_c647x_Interrupt_IPCGR0__C
    008d1a7c ti_sdo_ipc_family_c647x_Interrupt_KICK0__C
    008d1a80 ti_sdo_ipc_family_c647x_Interrupt_KICK1__C
    008cd750 ti_sdo_ipc_family_c647x_Interrupt_Module_State_0_fxnTable__A
    008cbe50 ti_sdo_ipc_family_c647x_Interrupt_Module__state__V
    008bf360 ti_sdo_ipc_family_c647x_Interrupt_Module_startup__E
    008bf360 ti_sdo_ipc_family_c647x_Interrupt_Module_startup__F
    008d1e2a ti_sdo_ipc_family_c647x_Interrupt_enableKick__C
    008c5a80 ti_sdo_ipc_family_c647x_Interrupt_intClear__E
    008c7660 ti_sdo_ipc_family_c647x_Interrupt_intDisable__E
    008c7680 ti_sdo_ipc_family_c647x_Interrupt_intEnable__E
    008be700 ti_sdo_ipc_family_c647x_Interrupt_intRegister__E
    008c5ac0 ti_sdo_ipc_family_c647x_Interrupt_intSend__E
    008c1c20 ti_sdo_ipc_family_c647x_Interrupt_intShmStub__I
    008c3040 ti_sdo_ipc_family_c647x_Interrupt_intUnregister__E
    008d1a84 ti_sdo_ipc_family_c647x_MultiProcSetup_A_invalidProcessor__C
    008d1a88 ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsEnabled__C
    008d1a8c ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsIncluded__C
    008d1a90 ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsMask__C
    008d1e2c ti_sdo_ipc_family_c647x_MultiProcSetup_Module__id__C
    008b7460 ti_sdo_ipc_family_c647x_MultiProcSetup_init__I
    008d1970 ti_sdo_ipc_family_c647x_MultiProcSetup_procMap__A
    008d1a94 ti_sdo_ipc_family_c647x_MultiProcSetup_procMap__C
    008c0920 ti_sdo_ipc_family_c647x_NotifySetup_attach__E
    008d1a98 ti_sdo_ipc_family_c647x_NotifySetup_dspIntVectId__C
    008c76a0 ti_sdo_ipc_family_c647x_NotifySetup_numIntLines__E
    008c4e60 ti_sdo_ipc_family_c647x_NotifySetup_sharedMemReq__E
    008d1a9c ti_sdo_ipc_gates_GateHWSem_A_invSemNum__C
    008c5b00 ti_sdo_ipc_gates_GateHWSem_Handle__label__S
    008bc560 ti_sdo_ipc_gates_GateHWSem_Instance_init__F
    008d1008 ti_sdo_ipc_gates_GateHWSem_Module__FXNS__C
    008d1aa0 ti_sdo_ipc_gates_GateHWSem_Module__diagsEnabled__C
    008d1aa4 ti_sdo_ipc_gates_GateHWSem_Module__diagsIncluded__C
    008d1aa8 ti_sdo_ipc_gates_GateHWSem_Module__diagsMask__C
    008d1e2e ti_sdo_ipc_gates_GateHWSem_Module__id__C
    008cbe58 ti_sdo_ipc_gates_GateHWSem_Module__root__V
    008bf460 ti_sdo_ipc_gates_GateHWSem_Module_startup__E
    008bf460 ti_sdo_ipc_gates_GateHWSem_Module_startup__F
    008d1414 ti_sdo_ipc_gates_GateHWSem_Object__DESC__C
    008d117c ti_sdo_ipc_gates_GateHWSem_Object__PARAMS__C
    008c3780 ti_sdo_ipc_gates_GateHWSem_Object__create__S
    008c5b40 ti_sdo_ipc_gates_GateHWSem_Object__delete__S
    008c76c0 ti_sdo_ipc_gates_GateHWSem_Params__init__S
    008d1aac ti_sdo_ipc_gates_GateHWSem_baseAddr__C
    008c0a00 ti_sdo_ipc_gates_GateHWSem_enter__E
    008c76e0 ti_sdo_ipc_gates_GateHWSem_getReservedMask__E
    008c4ec0 ti_sdo_ipc_gates_GateHWSem_leave__E
    008d1ab0 ti_sdo_ipc_gates_GateHWSem_numSems__C
    008c7700 ti_sdo_ipc_gates_GateHWSem_query__E
    008c7700 ti_sdo_ipc_gates_GateHWSem_query__F
    008d1ab8 ti_sdo_ipc_gates_GateHWSem_reservedMaskArr__A
    008d1ab4 ti_sdo_ipc_gates_GateHWSem_reservedMaskArr__C
    008c7720 ti_sdo_ipc_gates_GateHWSem_sharedMemReq__E
    008d1abc ti_sdo_ipc_gates_GateMPSupportNull_A_invalidAction__C
    008c5b80 ti_sdo_ipc_gates_GateMPSupportNull_Handle__label__S
    008c7740 ti_sdo_ipc_gates_GateMPSupportNull_Instance_init__F
    008d1034 ti_sdo_ipc_gates_GateMPSupportNull_Module__FXNS__C
    008d1ac0 ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsEnabled__C
    008d1ac4 ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsIncluded__C
    008d1ac8 ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsMask__C
    008d1e30 ti_sdo_ipc_gates_GateMPSupportNull_Module__id__C
    008cbe60 ti_sdo_ipc_gates_GateMPSupportNull_Module__root__V
    008d1434 ti_sdo_ipc_gates_GateMPSupportNull_Object__DESC__C
    008d11a0 ti_sdo_ipc_gates_GateMPSupportNull_Object__PARAMS__C
    008c3800 ti_sdo_ipc_gates_GateMPSupportNull_Object__create__S
    008c5bc0 ti_sdo_ipc_gates_GateMPSupportNull_Object__delete__S
    008c7760 ti_sdo_ipc_gates_GateMPSupportNull_Params__init__S
    008d1acc ti_sdo_ipc_gates_GateMPSupportNull_action__C
    008bf560 ti_sdo_ipc_gates_GateMPSupportNull_enter__E
    008c7780 ti_sdo_ipc_gates_GateMPSupportNull_getReservedMask__E
    008bf660 ti_sdo_ipc_gates_GateMPSupportNull_leave__E
    008c77a0 ti_sdo_ipc_gates_GateMPSupportNull_query__E
    008c77a0 ti_sdo_ipc_gates_GateMPSupportNull_query__F
    008c77c0 ti_sdo_ipc_gates_GateMPSupportNull_sharedMemReq__E
    008d1ad0 ti_sdo_ipc_gates_GatePeterson_E_gateRemotelyOpened__C
    008c5c00 ti_sdo_ipc_gates_GatePeterson_Handle__label__S
    008c4f20 ti_sdo_ipc_gates_GatePeterson_Instance_finalize__F
    008a8fc0 ti_sdo_ipc_gates_GatePeterson_Instance_init__F
    008d1060 ti_sdo_ipc_gates_GatePeterson_Module__FXNS__C
    008d1ad4 ti_sdo_ipc_gates_GatePeterson_Module__diagsEnabled__C
    008d1ad8 ti_sdo_ipc_gates_GatePeterson_Module__diagsIncluded__C
    008d1adc ti_sdo_ipc_gates_GatePeterson_Module__diagsMask__C
    008d1e32 ti_sdo_ipc_gates_GatePeterson_Module__id__C
    008cbe68 ti_sdo_ipc_gates_GatePeterson_Module__root__V
    008d1454 ti_sdo_ipc_gates_GatePeterson_Object__DESC__C
    008d11c4 ti_sdo_ipc_gates_GatePeterson_Object__PARAMS__C
    008c1ce0 ti_sdo_ipc_gates_GatePeterson_Object__create__S
    008c5c40 ti_sdo_ipc_gates_GatePeterson_Object__delete__S
    008c77e0 ti_sdo_ipc_gates_GatePeterson_Params__init__S
    008bb400 ti_sdo_ipc_gates_GatePeterson_enter__E
    008c7800 ti_sdo_ipc_gates_GatePeterson_getReservedMask__E
    008c30e0 ti_sdo_ipc_gates_GatePeterson_leave__E
    008d1ae0 ti_sdo_ipc_gates_GatePeterson_numInstances__C
    008c7820 ti_sdo_ipc_gates_GatePeterson_query__E
    008c7820 ti_sdo_ipc_gates_GatePeterson_query__F
    008c4f80 ti_sdo_ipc_gates_GatePeterson_sharedMemReq__E
    008cbe70 ti_sdo_ipc_heaps_HeapBufMP_Module__root__V
    008cbe78 ti_sdo_ipc_heaps_HeapBufMP_Module__state__V
    008d1ae4 ti_sdo_ipc_heaps_HeapMemMP_A_align__C
    008d1ae8 ti_sdo_ipc_heaps_HeapMemMP_A_heapSize__C
    008d1aec ti_sdo_ipc_heaps_HeapMemMP_A_invalidFree__C
    008d1af0 ti_sdo_ipc_heaps_HeapMemMP_A_zeroBlock__C
    008d1af4 ti_sdo_ipc_heaps_HeapMemMP_E_memory__C
    008c5c80 ti_sdo_ipc_heaps_HeapMemMP_Handle__label__S
    008b44e0 ti_sdo_ipc_heaps_HeapMemMP_Instance_finalize__F
    008a0a40 ti_sdo_ipc_heaps_HeapMemMP_Instance_init__F
    008d108c ti_sdo_ipc_heaps_HeapMemMP_Module__FXNS__C
    008d1af8 ti_sdo_ipc_heaps_HeapMemMP_Module__diagsEnabled__C
    008d1afc ti_sdo_ipc_heaps_HeapMemMP_Module__diagsIncluded__C
    008d1b00 ti_sdo_ipc_heaps_HeapMemMP_Module__diagsMask__C
    008d1e34 ti_sdo_ipc_heaps_HeapMemMP_Module__id__C
    008cbe7c ti_sdo_ipc_heaps_HeapMemMP_Module__root__V
    008cbe84 ti_sdo_ipc_heaps_HeapMemMP_Module__state__V
    008d1474 ti_sdo_ipc_heaps_HeapMemMP_Object__DESC__C
    008d0f50 ti_sdo_ipc_heaps_HeapMemMP_Object__PARAMS__C
    008c1da0 ti_sdo_ipc_heaps_HeapMemMP_Object__create__S
    008c5cc0 ti_sdo_ipc_heaps_HeapMemMP_Object__delete__S
    008c7840 ti_sdo_ipc_heaps_HeapMemMP_Params__init__S
    0089c060 ti_sdo_ipc_heaps_HeapMemMP_alloc__E
    0089cac0 ti_sdo_ipc_heaps_HeapMemMP_free__E
    008aae60 ti_sdo_ipc_heaps_HeapMemMP_getStats__E
    008c7860 ti_sdo_ipc_heaps_HeapMemMP_isBlocking__E
    008c7860 ti_sdo_ipc_heaps_HeapMemMP_isBlocking__F
    008ab2a0 ti_sdo_ipc_heaps_HeapMemMP_postInit__I
    008d1b04 ti_sdo_ipc_interfaces_IGateMPSupport_Interface__BASE__C
    008d1b08 ti_sdo_ipc_interfaces_IMessageQTransport_Interface__BASE__C
    008d1b0c ti_sdo_ipc_interfaces_INotifyDriver_Interface__BASE__C
    008c5d00 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Handle__label__S
    008c3180 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Instance_finalize__F
    008a8ae0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Instance_init__F
    008c5a80 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intClear__E
    008c7660 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intDisable__E
    008c7680 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intEnable__E
    008be700 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intRegister__E
    008c5ac0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intSend__E
    008c3040 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intUnregister__E
    008d0eb0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__FXNS__C
    008d1b10 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsEnabled__C
    008d1b14 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsIncluded__C
    008d1b18 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsMask__C
    008d1e36 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__id__C
    008cbe88 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__root__V
    008d1494 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__DESC__C
    008d0f1c ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__PARAMS__C
    008c1e60 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__create__S
    008c5d40 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__delete__S
    008d1b1c ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__heap__C
    008c7880 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Params__init__S
    008b4740 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_disableEvent__E
    008c5d80 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_disable__E
    008b9b40 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_enableEvent__E
    008c5dc0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_enable__E
    008b05a0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_isr__I
    008b88e0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_registerEvent__E
    008b7660 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_sendEvent__E
    008c4fe0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_setNotifyHandle__E
    008b3140 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_sharedMemReq__E
    008b3140 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_sharedMemReq__F
    008b9ce0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_unregisterEvent__E
    008d1b20 ti_sdo_ipc_nsremote_NameServerRemoteNotify_A_invalidValueLen__C
    008c5e00 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Handle__label__S
    008d1b24 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_semMultiBlock__O
    008d1b28 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_semRemoteWait__O
    008d1b2c ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_swiObj__O
    008be820 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_finalize__F
    008a2760 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_init__F
    008d10b4 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__FXNS__C
    008d1b30 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsEnabled__C
    008d1b34 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsIncluded__C
    008d1b38 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsMask__C
    008d1e38 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__id__C
    008cbe90 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__root__V
    008d14b4 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__DESC__C
    008d14d4 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__PARAMS__C
    008c1f20 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__create__S
    008c5e40 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__delete__S
    008c78a0 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__first__S
    008c78c0 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__next__S
    008c78e0 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Params__init__S
    008b9e80 ti_sdo_ipc_nsremote_NameServerRemoteNotify_attach__E
    008c7900 ti_sdo_ipc_nsremote_NameServerRemoteNotify_cbFxn__I
    008c3880 ti_sdo_ipc_nsremote_NameServerRemoteNotify_detach__E
    008a75a0 ti_sdo_ipc_nsremote_NameServerRemoteNotify_get__E
    008a75a0 ti_sdo_ipc_nsremote_NameServerRemoteNotify_get__F
    008d1b3c ti_sdo_ipc_nsremote_NameServerRemoteNotify_notifyEventId__C
    008c5e80 ti_sdo_ipc_nsremote_NameServerRemoteNotify_sharedMemReq__E
    008adc20 ti_sdo_ipc_nsremote_NameServerRemoteNotify_swiFxn__I
    008d1b40 ti_sdo_ipc_nsremote_NameServerRemoteNotify_timeout__C
    008cd838 ti_sdo_ipc_transports_TransportShmSetup_Module_State_0_handles__A
    008cbea0 ti_sdo_ipc_transports_TransportShmSetup_Module__state__V
    008bf760 ti_sdo_ipc_transports_TransportShmSetup_attach__E
    008c7920 ti_sdo_ipc_transports_TransportShmSetup_isRegistered__E
    008d1b44 ti_sdo_ipc_transports_TransportShmSetup_priority__C
    008c5040 ti_sdo_ipc_transports_TransportShmSetup_sharedMemReq__E
    008c5ec0 ti_sdo_ipc_transports_TransportShm_Handle__label__S
    008d1b48 ti_sdo_ipc_transports_TransportShm_Instance_State_swiObj__O
    008b7860 ti_sdo_ipc_transports_TransportShm_Instance_finalize__F
    0089e7e0 ti_sdo_ipc_transports_TransportShm_Instance_init__F
    008d10dc ti_sdo_ipc_transports_TransportShm_Module__FXNS__C
    008d1b4c ti_sdo_ipc_transports_TransportShm_Module__diagsEnabled__C
    008d1b50 ti_sdo_ipc_transports_TransportShm_Module__diagsIncluded__C
    008d1b54 ti_sdo_ipc_transports_TransportShm_Module__diagsMask__C
    008d1e3a ti_sdo_ipc_transports_TransportShm_Module__id__C
    008cbe98 ti_sdo_ipc_transports_TransportShm_Module__root__V
    008d14f4 ti_sdo_ipc_transports_TransportShm_Object__DESC__C
    008d1104 ti_sdo_ipc_transports_TransportShm_Object__PARAMS__C
    008c1fe0 ti_sdo_ipc_transports_TransportShm_Object__create__S
    008c5f00 ti_sdo_ipc_transports_TransportShm_Object__delete__S
    008c7940 ti_sdo_ipc_transports_TransportShm_Params__init__S
    008c7960 ti_sdo_ipc_transports_TransportShm_control__E
    008c7980 ti_sdo_ipc_transports_TransportShm_getStatus__E
    008d1e3c ti_sdo_ipc_transports_TransportShm_notifyEventId__C
    008c79a0 ti_sdo_ipc_transports_TransportShm_notifyFxn__I
    008aeba0 ti_sdo_ipc_transports_TransportShm_openByAddr__E
    008aeba0 ti_sdo_ipc_transports_TransportShm_openByAddr__F
    008a7b20 ti_sdo_ipc_transports_TransportShm_put__E
    008c79c0 ti_sdo_ipc_transports_TransportShm_setErrFxn__E
    008c79c0 ti_sdo_ipc_transports_TransportShm_setErrFxn__F
    008bc6c0 ti_sdo_ipc_transports_TransportShm_sharedMemReq__E
    008bc6c0 ti_sdo_ipc_transports_TransportShm_sharedMemReq__F
    008c3900 ti_sdo_ipc_transports_TransportShm_swiFxn__I
    008d1b58 ti_sdo_utils_INameServerRemote_Interface__BASE__C
    008c79e0 ti_sdo_utils_List_Instance_init__F
    008cbea4 ti_sdo_utils_List_Module__root__V
    008d1514 ti_sdo_utils_List_Object__DESC__C
    008d17cc ti_sdo_utils_List_Object__PARAMS__C
    008c3980 ti_sdo_utils_List_Object__create__S
    008c5f40 ti_sdo_utils_List_Object__destruct__S
    008c7a00 ti_sdo_utils_List_Object__get__S
    008d1b5c ti_sdo_utils_MultiProc_A_invalidMultiProcId__C
    008d1b60 ti_sdo_utils_MultiProc_Module__diagsEnabled__C
    008d1b64 ti_sdo_utils_MultiProc_Module__diagsIncluded__C
    008d1b68 ti_sdo_utils_MultiProc_Module__diagsMask__C
    008d1e3e ti_sdo_utils_MultiProc_Module__id__C
    008cbeac ti_sdo_utils_MultiProc_Module__state__V
    008c7a20 ti_sdo_utils_MultiProc_getClusterId__E
    008c7a20 ti_sdo_utils_MultiProc_getClusterId__F
    008d1e40 ti_sdo_utils_MultiProc_numProcessors__C
    008d1e42 ti_sdo_utils_MultiProc_numProcsInCluster__C
    008cbec0 ti_sdo_utils_NameServerRemoteNull_Module__root__V
    008d1b6c ti_sdo_utils_NameServer_A_invArgument__C
    008d1b70 ti_sdo_utils_NameServer_A_invalidLen__C
    008d1b74 ti_sdo_utils_NameServer_E_entryExists__C
    008d1b78 ti_sdo_utils_NameServer_E_maxReached__C
    008d1b7c ti_sdo_utils_NameServer_Instance_State_freeList__O
    008d1b80 ti_sdo_utils_NameServer_Instance_State_nameList__O
    008816e0 ti_sdo_utils_NameServer_Module_State_0_nsRemoteHandle__A
    008d1b84 ti_sdo_utils_NameServer_Module__diagsEnabled__C
    008d1b88 ti_sdo_utils_NameServer_Module__diagsIncluded__C
    008d1b8c ti_sdo_utils_NameServer_Module__diagsMask__C
    008d1e44 ti_sdo_utils_NameServer_Module__id__C
    008cbeb0 ti_sdo_utils_NameServer_Module__root__V
    008c5f80 ti_sdo_utils_NameServer_Module__startupDone__F
    008c5f80 ti_sdo_utils_NameServer_Module__startupDone__S
    008cbeb8 ti_sdo_utils_NameServer_Module__state__V
    008bb580 ti_sdo_utils_NameServer_Module_startup__E
    008bb580 ti_sdo_utils_NameServer_Module_startup__F
    008d1b90 ti_sdo_utils_NameServer_Object__count__C
    008c7a40 ti_sdo_utils_NameServer_Object__first__S
    008c5fc0 ti_sdo_utils_NameServer_Object__get__S
    008c7a60 ti_sdo_utils_NameServer_Object__next__S
    008ccd50 ti_sdo_utils_NameServer_Object__table__V
    008b9e80 ti_sdo_utils_NameServer_SetupProxy_attach__E
    008c3880 ti_sdo_utils_NameServer_SetupProxy_detach__E
    008c5e80 ti_sdo_utils_NameServer_SetupProxy_sharedMemReq__E
    008bc820 ti_sdo_utils_NameServer_isRegistered__E
    008bc980 ti_sdo_utils_NameServer_registerRemoteDriver__E
    008bcae0 ti_sdo_utils_NameServer_unregisterRemoteDriver__E
    008d1b94 ti_sysbios_BIOS_Module__diagsEnabled__C
    008d1b98 ti_sysbios_BIOS_Module__diagsIncluded__C
    008d1b9c ti_sysbios_BIOS_Module__diagsMask__C
    008d1e46 ti_sysbios_BIOS_Module__id__C
    008cbec8 ti_sysbios_BIOS_Module__state__V
    008c7a80 ti_sysbios_BIOS_RtsGateProxy_enter__E
    008c7aa0 ti_sysbios_BIOS_RtsGateProxy_leave__E
    008c7da0 ti_sysbios_BIOS_RtsGateProxy_query__E
    008c20a0 ti_sysbios_BIOS_errorRaiseHook__I
    008c50a0 ti_sysbios_BIOS_exitFunc__I
    008c7ac0 ti_sysbios_BIOS_getThreadType__E
    008d1ba0 ti_sysbios_BIOS_installedErrorHook__C
    008c5100 ti_sysbios_BIOS_registerRTSLock__I
    008c7ae0 ti_sysbios_BIOS_setThreadType__E
    008c6000 ti_sysbios_BIOS_startFunc__I
    008c6040 ti_sysbios_BIOS_start__E
    008c7b00 ti_sysbios_family_c62_TaskSupport_Module__startupDone__S
    008c5880 ti_sysbios_family_c62_TaskSupport_buildTaskStack
    008c7b20 ti_sysbios_family_c62_TaskSupport_checkStack__E
    008c7120 ti_sysbios_family_c62_TaskSupport_glue
    008c3a00 ti_sysbios_family_c62_TaskSupport_start__E
    008c3500 ti_sysbios_family_c62_TaskSupport_swap__E
    008d1908 ti_sysbios_family_c64p_EventCombiner_EVTMASK__C
    008d1ba4 ti_sysbios_family_c64p_EventCombiner_E_unpluggedEvent__C
    008d1e48 ti_sysbios_family_c64p_EventCombiner_Module__id__C
    008cbee4 ti_sysbios_family_c64p_EventCombiner_Module__state__V
    008c5160 ti_sysbios_family_c64p_EventCombiner_Module_startup__E
    008c5160 ti_sysbios_family_c64p_EventCombiner_Module_startup__F
    008c6080 ti_sysbios_family_c64p_EventCombiner_disableEvent__E
    008c6080 ti_sysbios_family_c64p_EventCombiner_disableEvent__F
    008c51c0 ti_sysbios_family_c64p_EventCombiner_dispatchPlug__E
    008c51c0 ti_sysbios_family_c64p_EventCombiner_dispatchPlug__F
    008bf860 ti_sysbios_family_c64p_EventCombiner_dispatch__E
    008bf860 ti_sysbios_family_c64p_EventCombiner_dispatch__F
    008c60c0 ti_sysbios_family_c64p_EventCombiner_enableEvent__E
    008c60c0 ti_sysbios_family_c64p_EventCombiner_enableEvent__F
    008c5220 ti_sysbios_family_c64p_EventCombiner_unused__E
    008c5220 ti_sysbios_family_c64p_EventCombiner_unused__F
    008d1ba8 ti_sysbios_family_c64p_Exception_E_exceptionMin__C
    008d1e4a ti_sysbios_family_c64p_Exception_Module__id__C
    008cc2e4 ti_sysbios_family_c64p_Exception_Module__state__V
    008c3a80 ti_sysbios_family_c64p_Exception_Module_startup__E
    008c3a80 ti_sysbios_family_c64p_Exception_Module_startup__F
    008baf80 ti_sysbios_family_c64p_Exception_dispatch__E
    008d1bac ti_sysbios_family_c64p_Exception_exceptionHook__C
    008d1bb0 ti_sysbios_family_c64p_Exception_externalHook__C
    008a11c0 ti_sysbios_family_c64p_Exception_handler__I
    008b5520 ti_sysbios_family_c64p_Exception_internalHandler__I
    008d1bb4 ti_sysbios_family_c64p_Exception_internalHook__C
    008d1bb8 ti_sysbios_family_c64p_Exception_nmiHook__C
    008d3000 ti_sysbios_family_c64p_Hwi0
    008d3020 ti_sysbios_family_c64p_Hwi1
    008d3140 ti_sysbios_family_c64p_Hwi10
    008d3160 ti_sysbios_family_c64p_Hwi11
    008d3180 ti_sysbios_family_c64p_Hwi12
    008d31a0 ti_sysbios_family_c64p_Hwi13
    008d31c0 ti_sysbios_family_c64p_Hwi14
    008d31e0 ti_sysbios_family_c64p_Hwi15
    008d3040 ti_sysbios_family_c64p_Hwi2
    008d3060 ti_sysbios_family_c64p_Hwi3
    008d3080 ti_sysbios_family_c64p_Hwi4
    008d30a0 ti_sysbios_family_c64p_Hwi5
    008d30c0 ti_sysbios_family_c64p_Hwi6
    008d30e0 ti_sysbios_family_c64p_Hwi7
    008d3100 ti_sysbios_family_c64p_Hwi8
    008d3120 ti_sysbios_family_c64p_Hwi9
    008d1bbc ti_sysbios_family_c64p_Hwi_E_alreadyDefined__C
    008d1bc0 ti_sysbios_family_c64p_Hwi_E_handleNotFound__C
    008c0ae0 ti_sysbios_family_c64p_Hwi_Instance_finalize__F
    008c0bc0 ti_sysbios_family_c64p_Hwi_Instance_init__F
    008d1bc4 ti_sysbios_family_c64p_Hwi_LD_end__C
    008d1bc8 ti_sysbios_family_c64p_Hwi_LM_begin__C
    008d1bcc ti_sysbios_family_c64p_Hwi_Module__diagsEnabled__C
    008d1bd0 ti_sysbios_family_c64p_Hwi_Module__diagsIncluded__C
    008d1bd4 ti_sysbios_family_c64p_Hwi_Module__diagsMask__C
    008d1e4c ti_sysbios_family_c64p_Hwi_Module__id__C
    008d1e4e ti_sysbios_family_c64p_Hwi_Module__loggerDefined__C
    008d1bd8 ti_sysbios_family_c64p_Hwi_Module__loggerFxn1__C
    008d1bdc ti_sysbios_family_c64p_Hwi_Module__loggerFxn8__C
    008d1be0 ti_sysbios_family_c64p_Hwi_Module__loggerObj__C
    008cc310 ti_sysbios_family_c64p_Hwi_Module__root__V
    008c6100 ti_sysbios_family_c64p_Hwi_Module__startupDone__F
    008c6100 ti_sysbios_family_c64p_Hwi_Module__startupDone__S
    008cc318 ti_sysbios_family_c64p_Hwi_Module__state__V
    008bd640 ti_sysbios_family_c64p_Hwi_Module_startup__E
    008bd640 ti_sysbios_family_c64p_Hwi_Module_startup__F
    008d1534 ti_sysbios_family_c64p_Hwi_Object__DESC__C
    008d0f80 ti_sysbios_family_c64p_Hwi_Object__PARAMS__C
    008c2160 ti_sysbios_family_c64p_Hwi_Object__create__S
    008c6140 ti_sysbios_family_c64p_Hwi_Object__delete__S
    008cd250 ti_sysbios_family_c64p_Hwi_Object__table__V
    008c7b40 ti_sysbios_family_c64p_Hwi_Params__init__S
    008c7b60 ti_sysbios_family_c64p_Hwi_clearInterrupt__E
    008c6180 ti_sysbios_family_c64p_Hwi_disableInterrupt__E
    008b6e60 ti_sysbios_family_c64p_Hwi_dispatchAlways
    008aeea0 ti_sysbios_family_c64p_Hwi_dispatchC__I
    008c61c0 ti_sysbios_family_c64p_Hwi_enableInterrupt__E
    008c3b00 ti_sysbios_family_c64p_Hwi_eventMap__E
    008c7b80 ti_sysbios_family_c64p_Hwi_getHandle__E
    008c2d20 ti_sysbios_family_c64p_Hwi_plug__E
    008b5de0 ti_sysbios_family_c64p_Hwi_reconfig__E
    008c7ba0 ti_sysbios_family_c64p_Hwi_startup__E
    008c7bc0 ti_sysbios_family_c64p_Hwi_switchFromBootStack__E
    008c7be0 ti_sysbios_family_c64p_Hwi_unPluggedInterrupt__I
    008c7c00 ti_sysbios_family_c64p_tci6488_TimerSupport_enable__E
    008bd780 ti_sysbios_family_c66_Cache_Module_startup__E
    008bd780 ti_sysbios_family_c66_Cache_Module_startup__F
    008d1be4 ti_sysbios_family_c66_Cache_atomicBlockSize__C
    008d1928 ti_sysbios_family_c66_Cache_initSize__C
    008c3b80 ti_sysbios_family_c66_Cache_invL1pAll__E
    008c7c20 ti_sysbios_family_c66_Cache_inv__E
    008d02d0 ti_sysbios_family_c66_Cache_marvalues__C
    008c7c40 ti_sysbios_family_c66_Cache_wbInv__E
    008c7c60 ti_sysbios_family_c66_Cache_wb__E
    008d1be8 ti_sysbios_family_c66_tci66xx_CpIntc_E_unpluggedSysInt__C
    008cd848 ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_controller__A
    008cc4f0 ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_dispatchTab__A
    008cd2c8 ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_hostIntToSysInt__A
    008cd6e8 ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_initSIER__A
    008d1e50 ti_sysbios_family_c66_tci66xx_CpIntc_Module__id__C
    008cc380 ti_sysbios_family_c66_tci66xx_CpIntc_Module__state__V
    008b1580 ti_sysbios_family_c66_tci66xx_CpIntc_Module_startup__E
    008b1580 ti_sysbios_family_c66_tci66xx_CpIntc_Module_startup__F
    008c7c80 ti_sysbios_family_c66_tci66xx_CpIntc_disableHostInt__E
    008c7c80 ti_sysbios_family_c66_tci66xx_CpIntc_disableHostInt__F
    008c6200 ti_sysbios_family_c66_tci66xx_CpIntc_dispatchPlug__E
    008c6200 ti_sysbios_family_c66_tci66xx_CpIntc_dispatchPlug__F
    008ba020 ti_sysbios_family_c66_tci66xx_CpIntc_dispatch__E
    008ba020 ti_sysbios_family_c66_tci66xx_CpIntc_dispatch__F
    008c6240 ti_sysbios_family_c66_tci66xx_CpIntc_enableAllHostInts__E
    008c6240 ti_sysbios_family_c66_tci66xx_CpIntc_enableAllHostInts__F
    008c7ca0 ti_sysbios_family_c66_tci66xx_CpIntc_enableHostInt__E
    008c7ca0 ti_sysbios_family_c66_tci66xx_CpIntc_enableHostInt__F
    008d1718 ti_sysbios_family_c66_tci66xx_CpIntc_eventId__A
    008d1bec ti_sysbios_family_c66_tci66xx_CpIntc_eventId__C
    008c3c00 ti_sysbios_family_c66_tci66xx_CpIntc_getEventId__E
    008c3c00 ti_sysbios_family_c66_tci66xx_CpIntc_getEventId__F
    008d1738 ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_0__A
    008d1758 ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_1__A
    008d1778 ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_2__A
    008d1798 ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_3__A
    008d1918 ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId__A
    008d1bf0 ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId__C
    008c3c80 ti_sysbios_family_c66_tci66xx_CpIntc_mapSysIntToHostInt__E
    008c3c80 ti_sysbios_family_c66_tci66xx_CpIntc_mapSysIntToHostInt__F
    008d1bf4 ti_sysbios_family_c66_tci66xx_CpIntc_numEvents__C
    008d1bf8 ti_sysbios_family_c66_tci66xx_CpIntc_numStatusRegs__C
    008d1bfc ti_sysbios_family_c66_tci66xx_CpIntc_numSysInts__C
    008d0a58 ti_sysbios_family_c66_tci66xx_CpIntc_sysIntToHostInt__A
    008d1c00 ti_sysbios_family_c66_tci66xx_CpIntc_sysIntToHostInt__C
    008c5280 ti_sysbios_family_c66_tci66xx_CpIntc_unused__E
    008c5280 ti_sysbios_family_c66_tci66xx_CpIntc_unused__F
    008c58c0 ti_sysbios_family_xxx_Hwi_switchToIsrStack
    008c7140 ti_sysbios_family_xxx_Hwi_switchToTaskStack
    008c6280 ti_sysbios_gates_GateAll_Handle__label__S
    008c7cc0 ti_sysbios_gates_GateAll_Instance_init__F
    008d11e8 ti_sysbios_gates_GateAll_Module__FXNS__C
    008cc390 ti_sysbios_gates_GateAll_Module__root__V
    008d1554 ti_sysbios_gates_GateAll_Object__DESC__C
    008d17e4 ti_sysbios_gates_GateAll_Object__PARAMS__C
    008c3d00 ti_sysbios_gates_GateAll_Object__create__S
    008c62c0 ti_sysbios_gates_GateAll_Object__delete__S
    008cd7e0 ti_sysbios_gates_GateAll_Object__table__V
    008c52e0 ti_sysbios_gates_GateAll_enter__E
    008c2220 ti_sysbios_gates_GateAll_leave__E
    008c7ce0 ti_sysbios_gates_GateAll_query__E
    008c7ce0 ti_sysbios_gates_GateAll_query__F
    008c6300 ti_sysbios_gates_GateHwi_Handle__label__S
    008c7d00 ti_sysbios_gates_GateHwi_Instance_init__F
    008d120c ti_sysbios_gates_GateHwi_Module__FXNS__C
    008cc398 ti_sysbios_gates_GateHwi_Module__root__V
    008d1574 ti_sysbios_gates_GateHwi_Object__DESC__C
    008d17fc ti_sysbios_gates_GateHwi_Object__PARAMS__C
    008c3d80 ti_sysbios_gates_GateHwi_Object__create__S
    008c6340 ti_sysbios_gates_GateHwi_Object__delete__S
    008cd890 ti_sysbios_gates_GateHwi_Object__table__V
    008c7d20 ti_sysbios_gates_GateHwi_enter__E
    008c7d40 ti_sysbios_gates_GateHwi_leave__E
    008c7d60 ti_sysbios_gates_GateHwi_query__E
    008c7d60 ti_sysbios_gates_GateHwi_query__F
    008d1c04 ti_sysbios_gates_GateMutexPri_A_badContext__C
    008c6380 ti_sysbios_gates_GateMutexPri_Handle__label__S
    008d1c08 ti_sysbios_gates_GateMutexPri_Instance_State_pendQ__O
    008c63c0 ti_sysbios_gates_GateMutexPri_Instance_finalize__F
    008c6400 ti_sysbios_gates_GateMutexPri_Instance_init__F
    008d1230 ti_sysbios_gates_GateMutexPri_Module__FXNS__C
    008d1c0c ti_sysbios_gates_GateMutexPri_Module__diagsEnabled__C
    008d1c10 ti_sysbios_gates_GateMutexPri_Module__diagsIncluded__C
    008d1c14 ti_sysbios_gates_GateMutexPri_Module__diagsMask__C
    008d1e52 ti_sysbios_gates_GateMutexPri_Module__id__C
    008cc3a8 ti_sysbios_gates_GateMutexPri_Module__root__V
    008d1594 ti_sysbios_gates_GateMutexPri_Object__DESC__C
    008d1814 ti_sysbios_gates_GateMutexPri_Object__PARAMS__C
    008c3e00 ti_sysbios_gates_GateMutexPri_Object__create__S
    008c6440 ti_sysbios_gates_GateMutexPri_Object__delete__S
    008c6480 ti_sysbios_gates_GateMutexPri_Object__destruct__S
    008cd768 ti_sysbios_gates_GateMutexPri_Object__table__V
    008afd20 ti_sysbios_gates_GateMutexPri_enter__E
    008bf960 ti_sysbios_gates_GateMutexPri_leave__E
    008c7d80 ti_sysbios_gates_GateMutexPri_query__E
    008c7d80 ti_sysbios_gates_GateMutexPri_query__F
    008d1c18 ti_sysbios_gates_GateMutex_A_badContext__C
    008c64c0 ti_sysbios_gates_GateMutex_Handle__label__S
    008d1c1c ti_sysbios_gates_GateMutex_Instance_State_sem__O
    008c6500 ti_sysbios_gates_GateMutex_Instance_finalize__F
    008c5340 ti_sysbios_gates_GateMutex_Instance_init__F
    008d1254 ti_sysbios_gates_GateMutex_Module__FXNS__C
    008d1c20 ti_sysbios_gates_GateMutex_Module__diagsEnabled__C
    008d1c24 ti_sysbios_gates_GateMutex_Module__diagsIncluded__C
    008d1c28 ti_sysbios_gates_GateMutex_Module__diagsMask__C
    008d1e54 ti_sysbios_gates_GateMutex_Module__id__C
    008cc3a0 ti_sysbios_gates_GateMutex_Module__root__V
    008d15b4 ti_sysbios_gates_GateMutex_Object__DESC__C
    008d182c ti_sysbios_gates_GateMutex_Object__PARAMS__C
    008c3e80 ti_sysbios_gates_GateMutex_Object__create__S
    008c6540 ti_sysbios_gates_GateMutex_Object__delete__S
    008cd488 ti_sysbios_gates_GateMutex_Object__table__V
    008ba1c0 ti_sysbios_gates_GateMutex_enter__E
    008c6580 ti_sysbios_gates_GateMutex_leave__E
    008c7da0 ti_sysbios_gates_GateMutex_query__E
    008c7da0 ti_sysbios_gates_GateMutex_query__F
    008d1c2c ti_sysbios_gates_GateSwi_A_badContext__C
    008c65c0 ti_sysbios_gates_GateSwi_Handle__label__S
    008c7dc0 ti_sysbios_gates_GateSwi_Instance_init__F
    008d1278 ti_sysbios_gates_GateSwi_Module__FXNS__C
    008d1c30 ti_sysbios_gates_GateSwi_Module__diagsEnabled__C
    008d1c34 ti_sysbios_gates_GateSwi_Module__diagsIncluded__C
    008d1c38 ti_sysbios_gates_GateSwi_Module__diagsMask__C
    008d1e56 ti_sysbios_gates_GateSwi_Module__id__C
    008cc3b0 ti_sysbios_gates_GateSwi_Module__root__V
    008d15d4 ti_sysbios_gates_GateSwi_Object__DESC__C
    008d1844 ti_sysbios_gates_GateSwi_Object__PARAMS__C
    008c3f00 ti_sysbios_gates_GateSwi_Object__create__S
    008c6600 ti_sysbios_gates_GateSwi_Object__delete__S
    008cd858 ti_sysbios_gates_GateSwi_Object__table__V
    008bd8c0 ti_sysbios_gates_GateSwi_enter__E
    008c3f80 ti_sysbios_gates_GateSwi_leave__E
    008c7de0 ti_sysbios_gates_GateSwi_query__E
    008c7de0 ti_sysbios_gates_GateSwi_query__F
    008c7c20 ti_sysbios_hal_Cache_CacheProxy_inv__E
    008c7c40 ti_sysbios_hal_Cache_CacheProxy_wbInv__E
    008c7c60 ti_sysbios_hal_Cache_CacheProxy_wb__E
    008c7c20 ti_sysbios_hal_Cache_inv__E
    008c7c40 ti_sysbios_hal_Cache_wbInv__E
    008c7c60 ti_sysbios_hal_Cache_wb__E
    008d1c3c ti_sysbios_hal_Hwi_E_stackOverflow__C
    008c7e00 ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S
    008c7b60 ti_sysbios_hal_Hwi_HwiProxy_clearInterrupt__E
    008c6180 ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E
    008c61c0 ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E
    008c7ba0 ti_sysbios_hal_Hwi_HwiProxy_startup__E
    008c7bc0 ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E
    008d1e58 ti_sysbios_hal_Hwi_Module__id__C
    008cc3b8 ti_sysbios_hal_Hwi_Module__root__V
    008c7e20 ti_sysbios_hal_Hwi_Module_startup__E
    008c7e20 ti_sysbios_hal_Hwi_Module_startup__F
    008cd798 ti_sysbios_hal_Hwi_Object__table__V
    008c4000 ti_sysbios_hal_Hwi_checkStack
    008c7b60 ti_sysbios_hal_Hwi_clearInterrupt__E
    008c6180 ti_sysbios_hal_Hwi_disableInterrupt__E
    008c61c0 ti_sysbios_hal_Hwi_enableInterrupt__E
    008c53a0 ti_sysbios_hal_Hwi_initStack
    008c7ba0 ti_sysbios_hal_Hwi_startup__E
    008c7bc0 ti_sysbios_hal_Hwi_switchFromBootStack__E
    008cc3c0 ti_sysbios_hal_Timer_Module__root__V
    008c6640 ti_sysbios_hal_Timer_Module__startupDone__F
    008c6640 ti_sysbios_hal_Timer_Module__startupDone__S
    008c7e40 ti_sysbios_hal_Timer_Module_startup__E
    008c7e40 ti_sysbios_hal_Timer_Module_startup__F
    008cd868 ti_sysbios_hal_Timer_Object__table__V
    008c7e60 ti_sysbios_hal_Timer_TimerProxy_Module__startupDone__S
    008c7e80 ti_sysbios_hal_Timer_TimerProxy_getExpiredCounts__E
    008c7ea0 ti_sysbios_hal_Timer_TimerProxy_getPeriod__E
    008c7ec0 ti_sysbios_hal_Timer_TimerProxy_setNextTick__E
    008c0d80 ti_sysbios_hal_Timer_TimerProxy_startup__E
    008c0d80 ti_sysbios_hal_Timer_startup__E
    008d1c40 ti_sysbios_heaps_HeapBuf_Instance_State_freeList__O
    008cc3c8 ti_sysbios_heaps_HeapBuf_Module__root__V
    008cc3d0 ti_sysbios_heaps_HeapBuf_Module__state__V
    008bb700 ti_sysbios_heaps_HeapBuf_Module_startup__E
    008bb700 ti_sysbios_heaps_HeapBuf_Module_startup__F
    008d1c44 ti_sysbios_heaps_HeapBuf_Object__count__C
    008c7ee0 ti_sysbios_heaps_HeapBuf_Object__get__S
    008d1c48 ti_sysbios_heaps_HeapBuf_numConstructedHeaps__C
    008d1c4c ti_sysbios_heaps_HeapMem_A_align__C
    008d1c50 ti_sysbios_heaps_HeapMem_A_heapSize__C
    008d1c54 ti_sysbios_heaps_HeapMem_A_invalidFree__C
    008d1c58 ti_sysbios_heaps_HeapMem_A_zeroBlock__C
    008d1c5c ti_sysbios_heaps_HeapMem_E_memory__C
    008c6680 ti_sysbios_heaps_HeapMem_Handle__label__S
    008816f0 ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A
    008bb880 ti_sysbios_heaps_HeapMem_Instance_init__F
    008c7f00 ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E
    008c7f20 ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E
    008c7da0 ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E
    008d112c ti_sysbios_heaps_HeapMem_Module__FXNS__C
    008d1c60 ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C
    008d1c64 ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C
    008d1c68 ti_sysbios_heaps_HeapMem_Module__diagsMask__C
    008d1c6c ti_sysbios_heaps_HeapMem_Module__gateObj__C
    008d1e5a ti_sysbios_heaps_HeapMem_Module__id__C
    008cc3d4 ti_sysbios_heaps_HeapMem_Module__root__V
    008d15f4 ti_sysbios_heaps_HeapMem_Object__DESC__C
    008d1614 ti_sysbios_heaps_HeapMem_Object__PARAMS__C
    008d1c70 ti_sysbios_heaps_HeapMem_Object__count__C
    008c4080 ti_sysbios_heaps_HeapMem_Object__create__S
    008c66c0 ti_sysbios_heaps_HeapMem_Object__delete__S
    008c6700 ti_sysbios_heaps_HeapMem_Object__get__S
    008cd7b8 ti_sysbios_heaps_HeapMem_Object__table__V
    008a4140 ti_sysbios_heaps_HeapMem_alloc__E
    008a34c0 ti_sysbios_heaps_HeapMem_free__E
    008c22e0 ti_sysbios_heaps_HeapMem_getStats__E
    008c3220 ti_sysbios_heaps_HeapMem_init__I
    008c7f40 ti_sysbios_heaps_HeapMem_isBlocking__E
    008d1c74 ti_sysbios_heaps_HeapMem_reqAlignMask__C
    008d1c78 ti_sysbios_heaps_HeapMem_reqAlign__C
    008d1c7c ti_sysbios_knl_Clock_A_badThreadType__C
    008bda00 ti_sysbios_knl_Clock_Instance_finalize__F
    008b33c0 ti_sysbios_knl_Clock_Instance_init__F
    008d1c80 ti_sysbios_knl_Clock_LM_begin__C
    008d1c84 ti_sysbios_knl_Clock_LM_tick__C
    008d1c88 ti_sysbios_knl_Clock_LW_delayed__C
    008d1c8c ti_sysbios_knl_Clock_Module_State_clockQ__O
    008d1c90 ti_sysbios_knl_Clock_Module__diagsEnabled__C
    008d1c94 ti_sysbios_knl_Clock_Module__diagsIncluded__C
    008d1c98 ti_sysbios_knl_Clock_Module__diagsMask__C
    008d1e5c ti_sysbios_knl_Clock_Module__id__C
    008d1e5e ti_sysbios_knl_Clock_Module__loggerDefined__C
    008d1c9c ti_sysbios_knl_Clock_Module__loggerFxn1__C
    008d1ca0 ti_sysbios_knl_Clock_Module__loggerFxn2__C
    008d1ca4 ti_sysbios_knl_Clock_Module__loggerObj__C
    008cc3dc ti_sysbios_knl_Clock_Module__root__V
    008cc3e4 ti_sysbios_knl_Clock_Module__state__V
    008c4100 ti_sysbios_knl_Clock_Module_startup__E
    008c4100 ti_sysbios_knl_Clock_Module_startup__F
    008d1634 ti_sysbios_knl_Clock_Object__DESC__C
    008d129c ti_sysbios_knl_Clock_Object__PARAMS__C
    008c4180 ti_sysbios_knl_Clock_Object__create__S
    008c6740 ti_sysbios_knl_Clock_Object__destruct__S
    008c7f60 ti_sysbios_knl_Clock_Params__init__S
    008c4200 ti_sysbios_knl_Clock_doTick__I
    008c4280 ti_sysbios_knl_Clock_getTicks__E
    008c23a0 ti_sysbios_knl_Clock_logTick__E
    008bfa60 ti_sysbios_knl_Clock_startI__E
    008c0ca0 ti_sysbios_knl_Clock_start__E
    008d1ca8 ti_sysbios_knl_Clock_tickMode__C
    008d1cac ti_sysbios_knl_Clock_tickSource__C
    008b1820 ti_sysbios_knl_Clock_workFunc__E
    008d1cb0 ti_sysbios_knl_Idle_funcList__A
    008d194c ti_sysbios_knl_Idle_funcList__C
    008c4300 ti_sysbios_knl_Idle_loop__E
    008c7f80 ti_sysbios_knl_Queue_Instance_init__F
    008cc410 ti_sysbios_knl_Queue_Module__root__V
    008d1654 ti_sysbios_knl_Queue_Object__DESC__C
    008d185c ti_sysbios_knl_Queue_Object__PARAMS__C
    008c4380 ti_sysbios_knl_Queue_Object__create__S
    008c6780 ti_sysbios_knl_Queue_Object__destruct__S
    008c7fa0 ti_sysbios_knl_Queue_Object__get__S
    008c7fc0 ti_sysbios_knl_Queue_empty__E
    008d1cb4 ti_sysbios_knl_Semaphore_A_badContext__C
    008d1cb8 ti_sysbios_knl_Semaphore_A_noEvents__C
    008d1cbc ti_sysbios_knl_Semaphore_A_overflow__C
    008d1cc0 ti_sysbios_knl_Semaphore_Instance_State_pendQ__O
    008c67c0 ti_sysbios_knl_Semaphore_Instance_finalize__F
    008bdb40 ti_sysbios_knl_Semaphore_Instance_init__F
    008d1cc4 ti_sysbios_knl_Semaphore_LM_pend__C
    008d1cc8 ti_sysbios_knl_Semaphore_LM_post__C
    008d1ccc ti_sysbios_knl_Semaphore_Module__diagsEnabled__C
    008d1cd0 ti_sysbios_knl_Semaphore_Module__diagsIncluded__C
    008d1cd4 ti_sysbios_knl_Semaphore_Module__diagsMask__C
    008d1e60 ti_sysbios_knl_Semaphore_Module__id__C
    008d1e62 ti_sysbios_knl_Semaphore_Module__loggerDefined__C
    008d1cd8 ti_sysbios_knl_Semaphore_Module__loggerFxn2__C
    008d1cdc ti_sysbios_knl_Semaphore_Module__loggerFxn4__C
    008d1ce0 ti_sysbios_knl_Semaphore_Module__loggerObj__C
    008cc418 ti_sysbios_knl_Semaphore_Module__root__V
    008d1674 ti_sysbios_knl_Semaphore_Object__DESC__C
    008d12c0 ti_sysbios_knl_Semaphore_Object__PARAMS__C
    008c4400 ti_sysbios_knl_Semaphore_Object__create__S
    008c6800 ti_sysbios_knl_Semaphore_Object__delete__S
    008c6840 ti_sysbios_knl_Semaphore_Object__destruct__S
    008cd780 ti_sysbios_knl_Semaphore_Object__table__V
    008c7fe0 ti_sysbios_knl_Semaphore_Params__init__S
    008c4480 ti_sysbios_knl_Semaphore_pendTimeout__I
    008ac300 ti_sysbios_knl_Semaphore_pend__E
    008b5760 ti_sysbios_knl_Semaphore_post__E
    008d1ce4 ti_sysbios_knl_Swi_A_badPriority__C
    008c2460 ti_sysbios_knl_Swi_Instance_finalize__F
    008b8aa0 ti_sysbios_knl_Swi_Instance_init__F
    008d1ce8 ti_sysbios_knl_Swi_LD_end__C
    008d1cec ti_sysbios_knl_Swi_LM_begin__C
    008d1cf0 ti_sysbios_knl_Swi_LM_post__C
    008cd0d8 ti_sysbios_knl_Swi_Module_State_0_readyQ__A
    008d1cf4 ti_sysbios_knl_Swi_Module__diagsEnabled__C
    008d1cf8 ti_sysbios_knl_Swi_Module__diagsIncluded__C
    008d1cfc ti_sysbios_knl_Swi_Module__diagsMask__C
    008d1e64 ti_sysbios_knl_Swi_Module__id__C
    008d1e66 ti_sysbios_knl_Swi_Module__loggerDefined__C
    008d1d00 ti_sysbios_knl_Swi_Module__loggerFxn1__C
    008d1d04 ti_sysbios_knl_Swi_Module__loggerFxn4__C
    008d1d08 ti_sysbios_knl_Swi_Module__loggerObj__C
    008cc420 ti_sysbios_knl_Swi_Module__root__V
    008cc428 ti_sysbios_knl_Swi_Module__state__V
    008c5400 ti_sysbios_knl_Swi_Module_startup__E
    008c5400 ti_sysbios_knl_Swi_Module_startup__F
    008d1694 ti_sysbios_knl_Swi_Object__DESC__C
    008d1154 ti_sysbios_knl_Swi_Object__PARAMS__C
    008d1d0c ti_sysbios_knl_Swi_Object__count__C
    008c2520 ti_sysbios_knl_Swi_Object__create__S
    008c6880 ti_sysbios_knl_Swi_Object__destruct__S
    008c68c0 ti_sysbios_knl_Swi_Object__get__S
    008cd628 ti_sysbios_knl_Swi_Object__table__V
    008c8000 ti_sysbios_knl_Swi_Params__init__S
    008c8020 ti_sysbios_knl_Swi_disable__E
    008c8040 ti_sysbios_knl_Swi_getTrigger__E
    008c6900 ti_sysbios_knl_Swi_inc__E
    008bdc80 ti_sysbios_knl_Swi_post__E
    008bfb60 ti_sysbios_knl_Swi_restoreHwi__E
    008b6000 ti_sysbios_knl_Swi_run__I
    008bba00 ti_sysbios_knl_Swi_schedule__I
    008c4500 ti_sysbios_knl_Swi_startup__E
    008d1d10 ti_sysbios_knl_Task_A_badPriority__C
    008d1d14 ti_sysbios_knl_Task_E_spOutOfBounds__C
    008d1d18 ti_sysbios_knl_Task_E_stackOverflow__C
    008896f0 ti_sysbios_knl_Task_Instance_State_0_hookEnv__A
    00896440 ti_sysbios_knl_Task_Instance_State_0_stack__A
    008d1d1c ti_sysbios_knl_Task_LD_block__C
    008d1d20 ti_sysbios_knl_Task_LD_exit__C
    008d1d24 ti_sysbios_knl_Task_LD_ready__C
    008d1d28 ti_sysbios_knl_Task_LM_setPri__C
    008d1d2c ti_sysbios_knl_Task_LM_switch__C
    008d1d30 ti_sysbios_knl_Task_LM_yield__C
    008cd158 ti_sysbios_knl_Task_Module_State_0_readyQ__A
    008d1d34 ti_sysbios_knl_Task_Module_State_inactiveQ__O
    008d1d38 ti_sysbios_knl_Task_Module_State_terminatedQ__O
    008d1d3c ti_sysbios_knl_Task_Module__diagsEnabled__C
    008d1d40 ti_sysbios_knl_Task_Module__diagsIncluded__C
    008d1d44 ti_sysbios_knl_Task_Module__diagsMask__C
    008d1e68 ti_sysbios_knl_Task_Module__id__C
    008d1e6a ti_sysbios_knl_Task_Module__loggerDefined__C
    008d1d48 ti_sysbios_knl_Task_Module__loggerFxn2__C
    008d1d4c ti_sysbios_knl_Task_Module__loggerFxn4__C
    008d1d50 ti_sysbios_knl_Task_Module__loggerObj__C
    008cc444 ti_sysbios_knl_Task_Module__root__V
    008cc44c ti_sysbios_knl_Task_Module__state__V
    008b0000 ti_sysbios_knl_Task_Module_startup__E
    008b0000 ti_sysbios_knl_Task_Module_startup__F
    008d1d54 ti_sysbios_knl_Task_Object__count__C
    008c8060 ti_sysbios_knl_Task_Object__first__S
    008c6940 ti_sysbios_knl_Task_Object__get__S
    008c8080 ti_sysbios_knl_Task_Object__next__S
    008cd440 ti_sysbios_knl_Task_Object__table__V
    008c80a0 ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S
    008c7b20 ti_sysbios_knl_Task_SupportProxy_checkStack__E
    008c3a00 ti_sysbios_knl_Task_SupportProxy_start__E
    008c3500 ti_sysbios_knl_Task_SupportProxy_swap__E
    008d1d58 ti_sysbios_knl_Task_allBlockedFunc__C
    008c5460 ti_sysbios_knl_Task_allBlockedFunction__I
    008bddc0 ti_sysbios_knl_Task_blockI__E
    008b8c60 ti_sysbios_knl_Task_checkStacks__E
    008d1e6c ti_sysbios_knl_Task_deleteTerminatedTasks__C
    008c80c0 ti_sysbios_knl_Task_disable__E
    008c80e0 ti_sysbios_knl_Task_enable__E
    008c54c0 ti_sysbios_knl_Task_enter__I
    008b3640 ti_sysbios_knl_Task_exit__E
    008c8100 ti_sysbios_knl_Task_getPri__E
    008d1878 ti_sysbios_knl_Task_hooks__A
    008d1954 ti_sysbios_knl_Task_hooks__C
    008d1e6e ti_sysbios_knl_Task_initStackFlag__C
    008d1d5c ti_sysbios_knl_Task_numConstructedTasks__C
    008d1d60 ti_sysbios_knl_Task_numPriorities__C
    008b7e20 ti_sysbios_knl_Task_postInit__I
    008c4580 ti_sysbios_knl_Task_restore__E
    008b6220 ti_sysbios_knl_Task_schedule__I
    008c8120 ti_sysbios_knl_Task_self__E
    008acac0 ti_sysbios_knl_Task_setPri__E
    008b6440 ti_sysbios_knl_Task_startup__E
    008bbb80 ti_sysbios_knl_Task_unblockI__E
    008bdf00 ti_sysbios_knl_Task_yield__E
    008cc480 ti_sysbios_syncs_SyncSem_Module__root__V
    008d1d64 ti_sysbios_timers_timer64_Timer_A_notAvailable__C
    008d1d68 ti_sysbios_timers_timer64_Timer_E_cannotSupport__C
    008cce68 ti_sysbios_timers_timer64_Timer_Module_State_0_device__A
    008cd4c8 ti_sysbios_timers_timer64_Timer_Module_State_0_gctrl__A
    008cd508 ti_sysbios_timers_timer64_Timer_Module_State_0_handles__A
    008cd548 ti_sysbios_timers_timer64_Timer_Module_State_0_intFreqs__A
    008d1d6c ti_sysbios_timers_timer64_Timer_Module__diagsEnabled__C
    008d1d70 ti_sysbios_timers_timer64_Timer_Module__diagsIncluded__C
    008d1d74 ti_sysbios_timers_timer64_Timer_Module__diagsMask__C
    008d1e70 ti_sysbios_timers_timer64_Timer_Module__id__C
    008cc488 ti_sysbios_timers_timer64_Timer_Module__root__V
    008c6980 ti_sysbios_timers_timer64_Timer_Module__startupDone__F
    008c6980 ti_sysbios_timers_timer64_Timer_Module__startupDone__S
    008cc490 ti_sysbios_timers_timer64_Timer_Module__state__V
    008a6fe0 ti_sysbios_timers_timer64_Timer_Module_startup__E
    008a6fe0 ti_sysbios_timers_timer64_Timer_Module_startup__F
    008cd3f0 ti_sysbios_timers_timer64_Timer_Object__table__V
    008c7c00 ti_sysbios_timers_timer64_Timer_TimerSupportProxy_enable__E
    008d1d78 ti_sysbios_timers_timer64_Timer_anyMask__C
    008d1d7c ti_sysbios_timers_timer64_Timer_freqDivisor__C
    008c4600 ti_sysbios_timers_timer64_Timer_getCount__E
    008c4600 ti_sysbios_timers_timer64_Timer_getExpiredCounts__E
    008b8000 ti_sysbios_timers_timer64_Timer_getFreq__E
    008c4680 ti_sysbios_timers_timer64_Timer_getPeriod__E
    008d1d80 ti_sysbios_timers_timer64_Timer_numLocalTimers__C
    008d1d84 ti_sysbios_timers_timer64_Timer_numTimerDevices__C
    008c8140 ti_sysbios_timers_timer64_Timer_setNextTick__E
    008b8e20 ti_sysbios_timers_timer64_Timer_setPeriodMicroSecs__E
    008ba360 ti_sysbios_timers_timer64_Timer_start__E
    008d1e72 ti_sysbios_timers_timer64_Timer_startupNeeded__C
    008c0d80 ti_sysbios_timers_timer64_Timer_startup__E
    008c25e0 ti_sysbios_timers_timer64_Timer_stop__E
    008c7d80 ti_sysbios_xdcruntime_GateProcessSupport_query__F
    008d1d88 ti_sysbios_xdcruntime_GateThreadSupport_Instance_State_gate__O
    008c69c0 ti_sysbios_xdcruntime_GateThreadSupport_Instance_finalize__F
    008c6a00 ti_sysbios_xdcruntime_GateThreadSupport_Instance_init__F
    008cc4a4 ti_sysbios_xdcruntime_GateThreadSupport_Module__root__V
    008d16b4 ti_sysbios_xdcruntime_GateThreadSupport_Object__DESC__C
    008d1890 ti_sysbios_xdcruntime_GateThreadSupport_Object__PARAMS__C
    008c4700 ti_sysbios_xdcruntime_GateThreadSupport_Object__create__S
    008c6a40 ti_sysbios_xdcruntime_GateThreadSupport_Object__delete__S
    008c6a80 ti_sysbios_xdcruntime_GateThreadSupport_enter__E
    008c6a80 ti_sysbios_xdcruntime_GateThreadSupport_enter__F
    008c6ac0 ti_sysbios_xdcruntime_GateThreadSupport_leave__E
    008c6ac0 ti_sysbios_xdcruntime_GateThreadSupport_leave__F
    008c7d80 ti_sysbios_xdcruntime_GateThreadSupport_query__E
    008c7d80 ti_sysbios_xdcruntime_GateThreadSupport_query__F
    008c6b00 time
    008d327c total_set_ranging_pulses_sent
    008bd280 transer_ByEDMA
    008d33a4 transferCallback
    008d32e0 tx_high
    008c4780 unlink
    008ae280 unregisterEdma3Interrupts
    008d3364 userInitConfig
    008896f8 userInstInitConfigArray
    008c32c0 write
    008c5520 writemsg
    0083e758 xPow
    008d3220 xPow_ll
    0081e3a0 x_corr_ll
    00820710 x_del
    0083e730 x_del_ll
    00820718 x_del_next
    00820720 x_ll
    0c001000 x_ll_shared
    008d1d8c xdc_runtime_Assert_E_assertFailed__C
    008c3360 xdc_runtime_Assert_raise__I
    008d1d90 xdc_runtime_Core_A_initializedParams__C
    008d1d94 xdc_runtime_Core_Module__diagsEnabled__C
    008d1d98 xdc_runtime_Core_Module__diagsIncluded__C
    008d1d9c xdc_runtime_Core_Module__diagsMask__C
    008d1e74 xdc_runtime_Core_Module__id__C
    008c4800 xdc_runtime_Core_assignLabel__I
    008c4880 xdc_runtime_Core_assignParams__I
    008b38c0 xdc_runtime_Core_createObject__I
    008bfc60 xdc_runtime_Core_deleteObject__I
    008d1da0 xdc_runtime_Error_E_generic__C
    008d1da4 xdc_runtime_Error_E_memory__C
    008d1da8 xdc_runtime_Error_Module__diagsEnabled__C
    008d1dac xdc_runtime_Error_Module__diagsIncluded__C
    008d1db0 xdc_runtime_Error_Module__diagsMask__C
    008d1e76 xdc_runtime_Error_Module__loggerDefined__C
    008d1db4 xdc_runtime_Error_Module__loggerFxn8__C
    008d1db8 xdc_runtime_Error_Module__loggerObj__C
    008cc4ac xdc_runtime_Error_Module__state__V
    008c6b40 xdc_runtime_Error_check__E
    008c6b40 xdc_runtime_Error_check__F
    008c6b80 xdc_runtime_Error_init__E
    008c6b80 xdc_runtime_Error_init__F
    008d1e78 xdc_runtime_Error_maxDepth__C
    008d1dbc xdc_runtime_Error_policy__C
    008c0e60 xdc_runtime_Error_print__E
    008c0e60 xdc_runtime_Error_print__F
    008d1dc0 xdc_runtime_Error_raiseHook__C
    008b3b40 xdc_runtime_Error_raiseX__E
    008b3b40 xdc_runtime_Error_raiseX__F
    008c6bc0 xdc_runtime_GateNull_Handle__label__S
    008d12e4 xdc_runtime_GateNull_Module__FXNS__C
    008cc4b0 xdc_runtime_GateNull_Module__root__V
    008d16d4 xdc_runtime_GateNull_Object__DESC__C
    008d18a8 xdc_runtime_GateNull_Object__PARAMS__C
    008c6c00 xdc_runtime_GateNull_Object__create__S
    008c6c40 xdc_runtime_GateNull_Object__delete__S
    008cd898 xdc_runtime_GateNull_Object__table__V
    008c8160 xdc_runtime_GateNull_enter__E
    008c8160 xdc_runtime_GateNull_enter__F
    008c8180 xdc_runtime_GateNull_leave__E
    008c8180 xdc_runtime_GateNull_leave__F
    008c81a0 xdc_runtime_GateNull_query__E
    008c81a0 xdc_runtime_GateNull_query__F
    008c81c0 xdc_runtime_Gate_enterSystem__E
    008c81c0 xdc_runtime_Gate_enterSystem__F
    008c6c80 xdc_runtime_Gate_leaveSystem__E
    008c6c80 xdc_runtime_Gate_leaveSystem__F
    008d1dc4 xdc_runtime_IGateProvider_Interface__BASE__C
    008d1dc8 xdc_runtime_IHeap_Interface__BASE__C
    008d1dcc xdc_runtime_IModule_Interface__BASE__C
    008d1dd0 xdc_runtime_Log_L_error__C
    008c7d60 xdc_runtime_Main_Module_GateProxy_query__E
    008d1dd4 xdc_runtime_Main_Module__diagsEnabled__C
    008d1dd8 xdc_runtime_Main_Module__diagsIncluded__C
    008d1ddc xdc_runtime_Main_Module__diagsMask__C
    008d1e7a xdc_runtime_Main_Module__id__C
    008d1e7c xdc_runtime_Main_Module__loggerDefined__C
    008d1de0 xdc_runtime_Main_Module__loggerFxn4__C
    008d1de4 xdc_runtime_Main_Module__loggerObj__C
    008c8220 xdc_runtime_Memory_HeapProxy_alloc__E
    008c8240 xdc_runtime_Memory_HeapProxy_free__E
    008d1e7e xdc_runtime_Memory_Module__id__C
    008cc4b8 xdc_runtime_Memory_Module__state__V
    008c0f40 xdc_runtime_Memory_alloc__E
    008c0f40 xdc_runtime_Memory_alloc__F
    008c5580 xdc_runtime_Memory_calloc__E
    008c5580 xdc_runtime_Memory_calloc__F
    008d1de8 xdc_runtime_Memory_defaultHeapInstance__C
    008c6cc0 xdc_runtime_Memory_free__E
    008c6cc0 xdc_runtime_Memory_free__F
    008c8260 xdc_runtime_Memory_getMaxDefaultTypeAlign__E
    008c8260 xdc_runtime_Memory_getMaxDefaultTypeAlign__F
    008c55e0 xdc_runtime_Memory_valloc__E
    008c55e0 xdc_runtime_Memory_valloc__F
    008cc4bc xdc_runtime_Registry_Module__state__V
    008c6d00 xdc_runtime_Registry_findById__E
    008c6d00 xdc_runtime_Registry_findById__F
    008c8280 xdc_runtime_Startup_Module__startupDone__S
    008cc4c4 xdc_runtime_Startup_Module__state__V
    00000001 xdc_runtime_Startup__EXECFXN__C
    00000001 xdc_runtime_Startup__RESETFXN__C
    008d1dec xdc_runtime_Startup_execImpl__C
    008bfd60 xdc_runtime_Startup_exec__E
    008bfd60 xdc_runtime_Startup_exec__F
    008c82a0 xdc_runtime_Startup_exec__I
    008d1938 xdc_runtime_Startup_firstFxns__A
    008d195c xdc_runtime_Startup_firstFxns__C
    008d1df0 xdc_runtime_Startup_lastFxns__A
    008d1964 xdc_runtime_Startup_lastFxns__C
    008d1df4 xdc_runtime_Startup_maxPasses__C
    008c82c0 xdc_runtime_Startup_reset__I
    008c82e0 xdc_runtime_Startup_rtsDone__E
    008c82e0 xdc_runtime_Startup_rtsDone__F
    008d1308 xdc_runtime_Startup_sfxnRts__A
    008d1df8 xdc_runtime_Startup_sfxnRts__C
    008d0de8 xdc_runtime_Startup_sfxnTab__A
    008d1dfc xdc_runtime_Startup_sfxnTab__C
    008b49a0 xdc_runtime_Startup_startMods__I
    008c5640 xdc_runtime_SysStd_abort__E
    008c5640 xdc_runtime_SysStd_abort__F
    008c8300 xdc_runtime_SysStd_exit__E
    008c8300 xdc_runtime_SysStd_exit__F
    008c8320 xdc_runtime_SysStd_putch__E
    008c8320 xdc_runtime_SysStd_putch__F
    008c8340 xdc_runtime_SysStd_ready__E
    008c8340 xdc_runtime_SysStd_ready__F
    008c8360 xdc_runtime_System_Module_GateProxy_enter__E
    008c8380 xdc_runtime_System_Module_GateProxy_leave__E
    008c7d60 xdc_runtime_System_Module_GateProxy_query__E
    008cd6c8 xdc_runtime_System_Module_State_0_atexitHandlers__A
    008d1e00 xdc_runtime_System_Module__gateObj__C
    008cc4cc xdc_runtime_System_Module__state__V
    008c83a0 xdc_runtime_System_Module_startup__E
    008c83a0 xdc_runtime_System_Module_startup__F
    008c5640 xdc_runtime_System_SupportProxy_abort__E
    008c8300 xdc_runtime_System_SupportProxy_exit__E
    008c8320 xdc_runtime_System_SupportProxy_putch__E
    008c8340 xdc_runtime_System_SupportProxy_ready__E
    008c6d40 xdc_runtime_System_abort__E
    008c6d40 xdc_runtime_System_abort__F
    008c6d80 xdc_runtime_System_aprintf__E
    008c56a0 xdc_runtime_System_aprintf_va__E
    008c56a0 xdc_runtime_System_aprintf_va__F
    008c4900 xdc_runtime_System_atexit__E
    008c4900 xdc_runtime_System_atexit__F
    008c56a0 xdc_runtime_System_avprintf__E
    008c56a0 xdc_runtime_System_avprintf__F
    0089de40 xdc_runtime_System_doPrint__I
    008c83c0 xdc_runtime_System_exit__E
    008c83c0 xdc_runtime_System_exit__F
    008d1e04 xdc_runtime_System_extendFxn__C
    008c26a0 xdc_runtime_System_formatNum__I
    008c83e0 xdc_runtime_System_lastFxn__I
    008d1e08 xdc_runtime_System_maxAtexitHandlers__C
    008b4c00 xdc_runtime_System_printfExtend__I
    008c6dc0 xdc_runtime_System_printf__E
    008c5700 xdc_runtime_System_printf_va__E
    008c5700 xdc_runtime_System_printf_va__F
    008c4980 xdc_runtime_System_rtsExit__I
    008c8400 xdc_runtime_System_sprintf_va__E
    008c8400 xdc_runtime_System_sprintf_va__F
    008c5700 xdc_runtime_System_vprintf__E
    008c5700 xdc_runtime_System_vprintf__F
    008c8400 xdc_runtime_System_vsprintf__E
    008c8400 xdc_runtime_System_vsprintf__F
    008cc4d8 xdc_runtime_Text_Module__state__V
    008d1e80 xdc_runtime_Text_charCnt__C
    008cd8a0 xdc_runtime_Text_charTab__A
    008d1e0c xdc_runtime_Text_charTab__C
    008c5760 xdc_runtime_Text_cordText__E
    008c5760 xdc_runtime_Text_cordText__F
    008d1e82 xdc_runtime_Text_isLoaded__C
    008d1e10 xdc_runtime_Text_nameEmpty__C
    008d1e14 xdc_runtime_Text_nameStatic__C
    008d1e18 xdc_runtime_Text_nameUnknown__C
    008d06d0 xdc_runtime_Text_nodeTab__A
    008d1e1c xdc_runtime_Text_nodeTab__C
    008c4a00 xdc_runtime_Text_printVisFxn__I
    008be940 xdc_runtime_Text_putLab__E
    008be940 xdc_runtime_Text_putLab__F
    008bfe60 xdc_runtime_Text_putMod__E
    008bfe60 xdc_runtime_Text_putMod__F
    008bbd00 xdc_runtime_Text_putSite__E
    008bbd00 xdc_runtime_Text_putSite__F
    008d1e84 xdc_runtime_Text_registryModsLastId__C
    008c6e00 xdc_runtime_Text_ropeText__E
    008c6e00 xdc_runtime_Text_ropeText__F
    008d1e86 xdc_runtime_Text_unnamedModsLastId__C
    008bff60 xdc_runtime_Text_visitRope2__I
    008d1e20 xdc_runtime_Text_visitRopeFxn__C
    008c8420 xdc_runtime_Text_visitRope__I
    008c4a80 xdc_runtime_Text_xprintf__I
    008c6e40 xdc_runtime_knl_GateThread_Handle__label__S
    008c6e80 xdc_runtime_knl_GateThread_Instance_finalize__F
    008c6ec0 xdc_runtime_knl_GateThread_Instance_init__F
    008d132c xdc_runtime_knl_GateThread_Module__FXNS__C
    008cc4e0 xdc_runtime_knl_GateThread_Module__root__V
    008c8440 xdc_runtime_knl_GateThread_Module__startupDone__S
    008d16f4 xdc_runtime_knl_GateThread_Object__DESC__C
    008d18c0 xdc_runtime_knl_GateThread_Object__PARAMS__C
    008c2760 xdc_runtime_knl_GateThread_Object__create__S
    008c6f00 xdc_runtime_knl_GateThread_Object__delete__S
    008c8460 xdc_runtime_knl_GateThread_Proxy_Object__create__S
    008c8480 xdc_runtime_knl_GateThread_Proxy_Object__delete__S
    008c84a0 xdc_runtime_knl_GateThread_Proxy_enter__E
    008c84c0 xdc_runtime_knl_GateThread_Proxy_leave__E
    008c7d80 xdc_runtime_knl_GateThread_Proxy_query__E
    008c84e0 xdc_runtime_knl_GateThread_enter__E
    008c84e0 xdc_runtime_knl_GateThread_enter__F
    008c8500 xdc_runtime_knl_GateThread_leave__E
    008c8500 xdc_runtime_knl_GateThread_leave__F
    008c7d80 xdc_runtime_knl_GateThread_query__E
    008c7d80 xdc_runtime_knl_GateThread_query__F
    0083e750 yPow
    008d3218 yPow_ll
    0083e738 y_AC_ll
    0081f340 y_corr_ll
    0083e728 y_est_ll
    0083e720 y_ll


    GLOBAL SYMBOLS: SORTED BY Symbol Address

    address name
    -------- ----
    00000000 _argsize
    00000001 __TI_args_main
    00000001 xdc_runtime_Startup__EXECFXN__C
    00000001 xdc_runtime_Startup__RESETFXN__C
    00001000 __TI_STACK_SIZE
    00800200 __ASM__
    00800270 __ISA__
    00800288 __PLAT__
    008002b0 __TARG__
    008002d8 __TRDR__
    0081e200 delay
    0081e210 corr_ll
    0081e3a0 x_corr_ll
    0081f340 y_corr_ll
    008202e0 corr
    00820470 abs_corr
    00820478 h_est
    008205b8 h_est_ll
    008206f8 scale
    00820700 stf_end
    00820708 ltf_begin
    00820710 x_del
    00820718 x_del_next
    00820720 x_ll
    0083e720 y_ll
    0083e728 y_est_ll
    0083e730 x_del_ll
    0083e738 y_AC_ll
    0083e750 yPow
    0083e758 xPow
    0083e760 CleanAdj
    00847760 Adj
    00850760 check
    00850780 localQueueName
    00850790 nextQueueName
    008507a0 random_val
    0086e7a0 preamble_vals
    008737a0 drvObj
    00874620 drvInstance
    00878e00 edma3DrvChBoundRes
    008816e0 ti_sdo_utils_NameServer_Module_State_0_nsRemoteHandle__A
    008816f0 ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A
    008896f0 ti_sysbios_knl_Task_Instance_State_0_hookEnv__A
    008896f8 userInstInitConfigArray
    0088b138 resMgrInstanceArray
    0088d9e0 edma3_dma_ch_max_val
    0088da00 edma3_link_ch_min_val
    0088da20 edma3_link_ch_max_val
    0088da40 edma3_qdma_ch_min_val
    0088da60 edma3_qdma_ch_max_val
    0088da80 edma3_log_ch_max_val
    0088daa0 resMgrObj
    00895440 RcvLog
    00895840 RcvTimeLog
    00895c40 SendTimeLog
    00896040 SendLog
    00896440 ti_sysbios_knl_Task_Instance_State_0_stack__A
    00897040 _tmpnams
    00897180 AC_SystemReset
    00897270 ICM_Send_Message_Local
    008972f0 loopback2Tx
    008985b4 AnalogueCancSetUp
    00898754 StartUp
    008987a4 Set_APU_Config
    008987a8 CallBackFunc
    008987c0 ti_sdo_ipc_GateMP_Instance_init__F
    00899980 main
    0089a8a0 EDMA3_DRV_requestChannel
    0089b4e0 EDMA3_RM_allocResource
    0089c060 ti_sdo_ipc_heaps_HeapMemMP_alloc__E
    0089cac0 ti_sdo_ipc_heaps_HeapMemMP_free__E
    0089d4a0 Ipc_attach
    0089de40 xdc_runtime_System_doPrint__I
    0089e7e0 ti_sdo_ipc_transports_TransportShm_Instance_init__F
    0089f100 ti_sdo_ipc_ListMP_Instance_init__F
    0089f9a0 ti_sdo_ipc_GateMP_Instance_finalize__F
    008a0200 MessageQ_put
    008a0a40 ti_sdo_ipc_heaps_HeapMemMP_Instance_init__F
    008a11c0 ti_sysbios_family_c64p_Exception_handler__I
    008a2060 Notify_registerEvent
    008a2760 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_init__F
    008a2e20 NameServer_add
    008a34c0 ti_sysbios_heaps_HeapMem_free__E
    008a3b20 Notify_sendEvent
    008a4140 ti_sysbios_heaps_HeapMem_alloc__E
    008a4760 EDMA3_RM_open
    008a4d40 Notify_registerEventSingle
    008a5320 ListMP_getHead
    008a58e0 Notify_unregisterEventSingle
    008a5ea0 __c6xabi_divd
    008a6a20 ti_sdo_ipc_SharedRegion_start__E
    008a6a20 ti_sdo_ipc_SharedRegion_start__F
    008a6fe0 ti_sysbios_timers_timer64_Timer_Module_startup__E
    008a6fe0 ti_sysbios_timers_timer64_Timer_Module_startup__F
    008a75a0 ti_sdo_ipc_nsremote_NameServerRemoteNotify_get__E
    008a75a0 ti_sdo_ipc_nsremote_NameServerRemoteNotify_get__F
    008a7b20 ti_sdo_ipc_transports_TransportShm_put__E
    008a80a0 ti_sdo_ipc_Ipc_procSyncStart__I
    008a85e0 TRxDataInterface_Initialize
    008a8614 Send_CPRIData
    008a88b0 Recv_CPRIData
    008a8ae0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Instance_init__F
    008a8fc0 ti_sdo_ipc_gates_GatePeterson_Instance_init__F
    008a9460 _printfi
    008a9d20 ti_sdo_ipc_GateMP_setRegion0Reserved__E
    008a9d20 ti_sdo_ipc_GateMP_setRegion0Reserved__F
    008aa180 ti_sdo_ipc_Ipc_procSyncFinish__I
    008aa5e0 ListMP_putTail
    008aae60 ti_sdo_ipc_heaps_HeapMemMP_getStats__E
    008ab2a0 ti_sdo_ipc_heaps_HeapMemMP_postInit__I
    008ab6e0 EDMA3_RM_freeResource
    008abb00 requestChannel
    008abb20 freeChannel
    008abb50 edma3_xfer
    008abf00 ti_sdo_ipc_Notify_Instance_init__F
    008ac300 ti_sysbios_knl_Semaphore_pend__E
    008ac700 ti_sdo_ipc_SharedRegion_reserveMemory__E
    008ac700 ti_sdo_ipc_SharedRegion_reserveMemory__F
    008acac0 ti_sysbios_knl_Task_setPri__E
    008ace80 fputs
    008ad220 HeapMemMP_sharedMemReq
    008ad5a0 EDMA3_RM_create
    008ad8e0 GateMP_sharedMemReq
    008adc20 ti_sdo_ipc_nsremote_NameServerRemoteNotify_swiFxn__I
    008ae280 unregisterEdma3Interrupts
    008ae34c registerEdma3Interrupts
    008ae5a0 EDMA3_DRV_freeChannel
    008ae8a0 GateMP_openByAddr
    008aeba0 ti_sdo_ipc_transports_TransportShm_openByAddr__E
    008aeba0 ti_sdo_ipc_transports_TransportShm_openByAddr__F
    008aeea0 ti_sysbios_family_c64p_Hwi_dispatchC__I
    008af2ec ICM_Send_Message
    008af350 ICM_Register_Callback
    008af358 ICM_Initialize
    008af480 SharedRegion_getEntry
    008af760 SharedRegion_getPtr
    008afd20 ti_sysbios_gates_GateMutexPri_enter__E
    008b0000 ti_sysbios_knl_Task_Module_startup__E
    008b0000 ti_sysbios_knl_Task_Module_startup__F
    008b02e0 EDMA3_DRV_open
    008b05a0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_isr__I
    008b0860 Ipc_start
    008b0b00 NameServer_getLocal
    008b1580 ti_sysbios_family_c66_tci66xx_CpIntc_Module_startup__E
    008b1580 ti_sysbios_family_c66_tci66xx_CpIntc_Module_startup__F
    008b1820 ti_sysbios_knl_Clock_workFunc__E
    008b1ac0 EDMA3_DRV_create
    008b1d40 EDMA3_DRV_disableTransfer
    008b20a0 ERR_Send_ErrorMsg
    008b20e8 ERR_Initialize
    008b21c8 ERR_Display
    008b2240 SharedRegion_getSRPtr
    008b24c0 __c6xabi_divf
    008b2ec0 edma3OsSemTake
    008b2ee8 edma3OsSemGive
    008b2f08 edma3OsSemDelete
    008b2f2c edma3OsSemCreate
    008b2f88 edma3OsProtectExit
    008b3018 edma3OsProtectEntry
    008b30d8 Edma3_CacheInvalidate
    008b3100 Edma3_CacheFlush
    008b3140 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_sharedMemReq__E
    008b3140 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_sharedMemReq__F
    008b33c0 ti_sysbios_knl_Clock_Instance_init__F
    008b3640 ti_sysbios_knl_Task_exit__E
    008b38c0 xdc_runtime_Core_createObject__I
    008b3b40 xdc_runtime_Error_raiseX__E
    008b3b40 xdc_runtime_Error_raiseX__F
    008b3dc0 EDMA3_DRV_enableTransfer
    008b4020 ListMP_sharedMemReq
    008b4280 ti_sdo_ipc_ListMP_Instance_finalize__F
    008b44e0 ti_sdo_ipc_heaps_HeapMemMP_Instance_finalize__F
    008b4740 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_disableEvent__E
    008b49a0 xdc_runtime_Startup_startMods__I
    008b4c00 xdc_runtime_System_printfExtend__I
    008b4e60 __c6xabi_divull
    008b5520 ti_sysbios_family_c64p_Exception_internalHandler__I
    008b5760 ti_sysbios_knl_Semaphore_post__E
    008b5bc0 fputc
    008b5de0 ti_sysbios_family_c64p_Hwi_reconfig__E
    008b6000 ti_sysbios_knl_Swi_run__I
    008b6220 ti_sysbios_knl_Task_schedule__I
    008b6440 ti_sysbios_knl_Task_startup__E
    008b6660 GateMP_enter
    008b6860 GateMP_leave
    008b6a60 ListMP_openByAddr
    008b6e60 ti_sysbios_family_c64p_Hwi_dispatchAlways
    008b7260 setvbuf
    008b7460 ti_sdo_ipc_family_c647x_MultiProcSetup_init__I
    008b7660 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_sendEvent__E
    008b7860 ti_sdo_ipc_transports_TransportShm_Instance_finalize__F
    008b7a60 ti_sdo_ipc_GateMP_attach__E
    008b7a60 ti_sdo_ipc_GateMP_attach__F
    008b7c40 ti_sdo_ipc_GateMP_getFreeResource__I
    008b7e20 ti_sysbios_knl_Task_postInit__I
    008b8000 ti_sysbios_timers_timer64_Timer_getFreq__E
    008b81e0 EDMA3_RM_close
    008b83a0 HeapMemMP_openByAddr
    008b8720 edma3init
    008b8864 edma3deinit
    008b88e0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_registerEvent__E
    008b8aa0 ti_sysbios_knl_Swi_Instance_init__F
    008b8c60 ti_sysbios_knl_Task_checkStacks__E
    008b8e20 ti_sysbios_timers_timer64_Timer_setPeriodMicroSecs__E
    008b8fe0 HOSTrename
    008b9180 SharedRegion_getCacheLineSize
    008b9320 SharedRegion_getHeap
    008b94c0 SharedRegion_isCacheEnabled
    008b9660 __c6xabi_divul
    008b9800 log
    008b99a0 ti_sdo_ipc_GateMP_openRegion0Reserved__E
    008b99a0 ti_sdo_ipc_GateMP_openRegion0Reserved__F
    008b9b40 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_enableEvent__E
    008b9ce0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_unregisterEvent__E
    008b9e80 ti_sdo_ipc_nsremote_NameServerRemoteNotify_attach__E
    008b9e80 ti_sdo_utils_NameServer_SetupProxy_attach__E
    008ba020 ti_sysbios_family_c66_tci66xx_CpIntc_dispatch__E
    008ba020 ti_sysbios_family_c66_tci66xx_CpIntc_dispatch__F
    008ba1c0 ti_sysbios_gates_GateMutex_enter__E
    008ba360 ti_sysbios_timers_timer64_Timer_start__E
    008ba500 EDMA3_RM_registerTccCb
    008ba680 MultiProc_setLocalId
    008ba800 NameServer_getHandle
    008ba980 Notify_intLineRegistered
    008bae00 frexp
    008baf80 ti_sysbios_family_c64p_Exception_dispatch__E
    008bb100 ti_sdo_ipc_MessageQ_registerTransport__E
    008bb100 ti_sdo_ipc_MessageQ_registerTransport__F
    008bb280 ti_sdo_ipc_Notify_Module_startup__E
    008bb280 ti_sdo_ipc_Notify_Module_startup__F
    008bb400 ti_sdo_ipc_gates_GatePeterson_enter__E
    008bb580 ti_sdo_utils_NameServer_Module_startup__E
    008bb580 ti_sdo_utils_NameServer_Module_startup__F
    008bb700 ti_sysbios_heaps_HeapBuf_Module_startup__E
    008bb700 ti_sysbios_heaps_HeapBuf_Module_startup__F
    008bb880 ti_sysbios_heaps_HeapMem_Instance_init__F
    008bba00 ti_sysbios_knl_Swi_schedule__I
    008bbb80 ti_sysbios_knl_Task_unblockI__E
    008bbd00 xdc_runtime_Text_putSite__E
    008bbd00 xdc_runtime_Text_putSite__F
    008bbe80 EDMA3_DRV_close
    008bbfe0 EDMA3_RM_unregisterTccCb
    008bc2a0 ti_sdo_ipc_GateMP_createLocal__E
    008bc2a0 ti_sdo_ipc_GateMP_createLocal__F
    008bc400 ti_sdo_ipc_MessageQ_unregisterTransport__E
    008bc400 ti_sdo_ipc_MessageQ_unregisterTransport__F
    008bc560 ti_sdo_ipc_gates_GateHWSem_Instance_init__F
    008bc6c0 ti_sdo_ipc_transports_TransportShm_sharedMemReq__E
    008bc6c0 ti_sdo_ipc_transports_TransportShm_sharedMemReq__F
    008bc820 ti_sdo_utils_NameServer_isRegistered__E
    008bc980 ti_sdo_utils_NameServer_registerRemoteDriver__E
    008bcae0 ti_sdo_utils_NameServer_unregisterRemoteDriver__E
    008bcc40 EDMA3_DRV_setPaRAM
    008bcd80 GateMP_close
    008bcec0 Notify_attach
    008bd000 _auto_init_elf
    008bd280 transer_ByEDMA
    008bd2e8 init_data_transfer
    008bd340 copy_data_ByEDMA
    008bd500 ti_sdo_ipc_Notify_exec__E
    008bd500 ti_sdo_ipc_Notify_exec__F
    008bd640 ti_sysbios_family_c64p_Hwi_Module_startup__E
    008bd640 ti_sysbios_family_c64p_Hwi_Module_startup__F
    008bd780 ti_sysbios_family_c66_Cache_Module_startup__E
    008bd780 ti_sysbios_family_c66_Cache_Module_startup__F
    008bd8c0 ti_sysbios_gates_GateSwi_enter__E
    008bda00 ti_sysbios_knl_Clock_Instance_finalize__F
    008bdb40 ti_sysbios_knl_Semaphore_Instance_init__F
    008bdc80 ti_sysbios_knl_Swi_post__E
    008bddc0 ti_sysbios_knl_Task_blockI__E
    008bdf00 ti_sysbios_knl_Task_yield__E
    008be040 EDMA3_DRV_clearErrorBits
    008be160 _closefile
    008be3a0 fseek
    008be5e0 ti_sdo_ipc_MessageQ_Module_startup__E
    008be5e0 ti_sdo_ipc_MessageQ_Module_startup__F
    008be700 ti_sdo_ipc_family_c647x_Interrupt_intRegister__E
    008be700 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intRegister__E
    008be820 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_finalize__F
    008be940 xdc_runtime_Text_putLab__E
    008be940 xdc_runtime_Text_putLab__F
    008bea60 HOSTlseek
    008beb60 _wrt_ok
    008bec60 callback2
    008bec90 callback1
    008bed60 fprintf
    008bef60 ti_sdo_ipc_GateMP_start__E
    008bef60 ti_sdo_ipc_GateMP_start__F
    008bf060 ti_sdo_ipc_Notify_Instance_finalize__F
    008bf160 ti_sdo_ipc_SharedRegion_attach__E
    008bf160 ti_sdo_ipc_SharedRegion_attach__F
    008bf260 ti_sdo_ipc_SharedRegion_clearReservedMemory__E
    008bf260 ti_sdo_ipc_SharedRegion_clearReservedMemory__F
    008bf360 ti_sdo_ipc_family_c647x_Interrupt_Module_startup__E
    008bf360 ti_sdo_ipc_family_c647x_Interrupt_Module_startup__F
    008bf460 ti_sdo_ipc_gates_GateHWSem_Module_startup__E
    008bf460 ti_sdo_ipc_gates_GateHWSem_Module_startup__F
    008bf560 ti_sdo_ipc_gates_GateMPSupportNull_enter__E
    008bf660 ti_sdo_ipc_gates_GateMPSupportNull_leave__E
    008bf760 ti_sdo_ipc_MessageQ_SetupTransportProxy_attach__E
    008bf760 ti_sdo_ipc_transports_TransportShmSetup_attach__E
    008bf860 ti_sysbios_family_c64p_EventCombiner_dispatch__E
    008bf860 ti_sysbios_family_c64p_EventCombiner_dispatch__F
    008bf960 ti_sysbios_gates_GateMutexPri_leave__E
    008bfa60 ti_sysbios_knl_Clock_startI__E
    008bfb60 ti_sysbios_knl_Swi_restoreHwi__E
    008bfc60 xdc_runtime_Core_deleteObject__I
    008bfd60 xdc_runtime_Startup_exec__E
    008bfd60 xdc_runtime_Startup_exec__F
    008bfe60 xdc_runtime_Text_putMod__E
    008bfe60 xdc_runtime_Text_putMod__F
    008bff60 xdc_runtime_Text_visitRope2__I
    008c0060 EDMA3_DRV_delete
    008c0140 HOSTopen
    008c0300 atoi
    008c03e0 close
    008c04c0 __TI_zero_init
    008c05a0 fflush
    008c0680 gpio_Init
    008c06b4 gpio_SetOutput
    008c06f8 gpio_SetInput
    008c0760 ltoa
    008c0840 memset
    008c0920 ti_sdo_ipc_Notify_SetupProxy_attach__E
    008c0920 ti_sdo_ipc_family_c647x_NotifySetup_attach__E
    008c0a00 ti_sdo_ipc_gates_GateHWSem_enter__E
    008c0ae0 ti_sysbios_family_c64p_Hwi_Instance_finalize__F
    008c0bc0 ti_sysbios_family_c64p_Hwi_Instance_init__F
    008c0ca0 ti_sysbios_knl_Clock_start__E
    008c0d80 ti_sysbios_hal_Timer_TimerProxy_startup__E
    008c0d80 ti_sysbios_hal_Timer_startup__E
    008c0d80 ti_sysbios_timers_timer64_Timer_startup__E
    008c0e60 xdc_runtime_Error_print__E
    008c0e60 xdc_runtime_Error_print__F
    008c0f40 xdc_runtime_Memory_alloc__E
    008c0f40 xdc_runtime_Memory_alloc__F
    008c1020 EDMA3_RM_delete
    008c10e0 HOSTread
    008c11a0 HOSTunlink
    008c1260 HOSTwrite
    008c1320 HeapMemMP_create
    008c13e0 ListMP_create
    008c1560 __cxa_finalize
    008c1620 __c6xabi_divu
    008c1620 __divu
    008c16e0 _doflush
    008c17a0 exit
    008c1860 ti_sdo_ipc_GateMP_Object__create__S
    008c1920 ti_sdo_ipc_GateMP_getRegion0ReservedSize__E
    008c1920 ti_sdo_ipc_GateMP_getRegion0ReservedSize__F
    008c19e0 ti_sdo_ipc_ListMP_Object__create__S
    008c1aa0 ti_sdo_ipc_Notify_Object__create__S
    008c1b60 ti_sdo_ipc_Notify_execMany__I
    008c1c20 ti_sdo_ipc_family_c647x_Interrupt_intShmStub__I
    008c1ce0 ti_sdo_ipc_gates_GatePeterson_Object__create__S
    008c1da0 ti_sdo_ipc_heaps_HeapMemMP_Object__create__S
    008c1e60 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__create__S
    008c1f20 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__create__S
    008c1fe0 ti_sdo_ipc_transports_TransportShm_Object__create__S
    008c20a0 ti_sysbios_BIOS_errorRaiseHook__I
    008c2160 ti_sysbios_family_c64p_Hwi_Object__create__S
    008c2220 ti_sysbios_gates_GateAll_leave__E
    008c22e0 ti_sysbios_heaps_HeapMem_getStats__E
    008c23a0 ti_sysbios_knl_Clock_logTick__E
    008c2460 ti_sysbios_knl_Swi_Instance_finalize__F
    008c2520 ti_sysbios_knl_Swi_Object__create__S
    008c25e0 ti_sysbios_timers_timer64_Timer_stop__E
    008c26a0 xdc_runtime_System_formatNum__I
    008c2760 xdc_runtime_knl_GateThread_Object__create__S
    008c2820 HOSTclose
    008c28c0 HOSTtime
    008c2960 __c6xabi_remu
    008c2960 __remu
    008c2a00 _c_int00
    008c2aa0 _cleanup
    008c2d20 ti_sysbios_family_c64p_Hwi_plug__E
    008c2e60 lseek
    008c2f00 memcpy
    008c2fa0 modf
    008c3040 ti_sdo_ipc_family_c647x_Interrupt_intUnregister__E
    008c3040 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intUnregister__E
    008c30e0 ti_sdo_ipc_gates_GatePeterson_leave__E
    008c3180 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Instance_finalize__F
    008c3220 ti_sysbios_heaps_HeapMem_init__I
    008c32c0 write
    008c3360 xdc_runtime_Assert_raise__I
    008c3400 __c6xabi_fixdu
    008c3480 __c6xabi_llshl
    008c3500 ti_sysbios_family_c62_TaskSupport_swap__E
    008c3500 ti_sysbios_knl_Task_SupportProxy_swap__E
    008c3580 edma3MemCpy
    008c3600 malloc
    008c3680 rand
    008c3700 readmsg
    008c3780 ti_sdo_ipc_gates_GateHWSem_Object__create__S
    008c3800 ti_sdo_ipc_gates_GateMPSupportNull_Object__create__S
    008c3880 ti_sdo_ipc_nsremote_NameServerRemoteNotify_detach__E
    008c3880 ti_sdo_utils_NameServer_SetupProxy_detach__E
    008c3900 ti_sdo_ipc_transports_TransportShm_swiFxn__I
    008c3980 ti_sdo_utils_List_Object__create__S
    008c3a00 ti_sysbios_family_c62_TaskSupport_start__E
    008c3a00 ti_sysbios_knl_Task_SupportProxy_start__E
    008c3a80 ti_sysbios_family_c64p_Exception_Module_startup__E
    008c3a80 ti_sysbios_family_c64p_Exception_Module_startup__F
    008c3b00 ti_sysbios_family_c64p_Hwi_eventMap__E
    008c3b80 ti_sysbios_family_c66_Cache_invL1pAll__E
    008c3c00 ti_sysbios_family_c66_tci66xx_CpIntc_getEventId__E
    008c3c00 ti_sysbios_family_c66_tci66xx_CpIntc_getEventId__F
    008c3c80 ti_sysbios_family_c66_tci66xx_CpIntc_mapSysIntToHostInt__E
    008c3c80 ti_sysbios_family_c66_tci66xx_CpIntc_mapSysIntToHostInt__F
    008c3d00 ti_sysbios_gates_GateAll_Object__create__S
    008c3d80 ti_sysbios_gates_GateHwi_Object__create__S
    008c3e00 ti_sysbios_gates_GateMutexPri_Object__create__S
    008c3e80 ti_sysbios_gates_GateMutex_Object__create__S
    008c3f00 ti_sysbios_gates_GateSwi_Object__create__S
    008c3f80 ti_sysbios_gates_GateSwi_leave__E
    008c4000 ti_sysbios_hal_Hwi_checkStack
    008c4080 ti_sysbios_heaps_HeapMem_Object__create__S
    008c4100 ti_sysbios_knl_Clock_Module_startup__E
    008c4100 ti_sysbios_knl_Clock_Module_startup__F
    008c4180 ti_sysbios_knl_Clock_Object__create__S
    008c4200 ti_sysbios_knl_Clock_doTick__I
    008c4280 ti_sysbios_knl_Clock_getTicks__E
    008c4300 ti_sysbios_knl_Idle_loop__E
    008c4380 ti_sysbios_knl_Queue_Object__create__S
    008c4400 ti_sysbios_knl_Semaphore_Object__create__S
    008c4480 ti_sysbios_knl_Semaphore_pendTimeout__I
    008c4500 ti_sysbios_knl_Swi_startup__E
    008c4580 ti_sysbios_knl_Task_restore__E
    008c4600 ti_sysbios_timers_timer64_Timer_getCount__E
    008c4600 ti_sysbios_timers_timer64_Timer_getExpiredCounts__E
    008c4680 ti_sysbios_timers_timer64_Timer_getPeriod__E
    008c4700 ti_sysbios_xdcruntime_GateThreadSupport_Object__create__S
    008c4780 remove
    008c4780 unlink
    008c4800 xdc_runtime_Core_assignLabel__I
    008c4880 xdc_runtime_Core_assignParams__I
    008c4900 xdc_runtime_System_atexit__E
    008c4900 xdc_runtime_System_atexit__F
    008c4980 xdc_runtime_System_rtsExit__I
    008c4a00 xdc_runtime_Text_printVisFxn__I
    008c4a80 xdc_runtime_Text_xprintf__I
    008c4b00 GateMP_Params_init
    008c4b60 HeapMemMP_Params_init
    008c4bc0 __c6xabi_abort_msg
    008c4c20 __c6xabi_frcmpyd_div
    008c4c80 __c6xabi_llshru
    008c4ce0 _subcull
    008c4d40 isGblConfigRequired
    008c4d54 getGlobalAddr
    008c4d78 determineProcId
    008c4da0 memccpy
    008c4e00 srand
    008c4e60 ti_sdo_ipc_Notify_SetupProxy_sharedMemReq__E
    008c4e60 ti_sdo_ipc_family_c647x_NotifySetup_sharedMemReq__E
    008c4ec0 ti_sdo_ipc_gates_GateHWSem_leave__E
    008c4f20 ti_sdo_ipc_gates_GatePeterson_Instance_finalize__F
    008c4f80 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_sharedMemReq__E
    008c4f80 ti_sdo_ipc_gates_GatePeterson_sharedMemReq__E
    008c4fe0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_setNotifyHandle__E
    008c5040 ti_sdo_ipc_MessageQ_SetupTransportProxy_sharedMemReq__E
    008c5040 ti_sdo_ipc_transports_TransportShmSetup_sharedMemReq__E
    008c50a0 ti_sysbios_BIOS_exitFunc__I
    008c5100 ti_sysbios_BIOS_registerRTSLock__I
    008c5160 ti_sysbios_family_c64p_EventCombiner_Module_startup__E
    008c5160 ti_sysbios_family_c64p_EventCombiner_Module_startup__F
    008c51c0 ti_sysbios_family_c64p_EventCombiner_dispatchPlug__E
    008c51c0 ti_sysbios_family_c64p_EventCombiner_dispatchPlug__F
    008c5220 ti_sysbios_family_c64p_EventCombiner_unused__E
    008c5220 ti_sysbios_family_c64p_EventCombiner_unused__F
    008c5280 ti_sysbios_family_c66_tci66xx_CpIntc_unused__E
    008c5280 ti_sysbios_family_c66_tci66xx_CpIntc_unused__F
    008c52e0 ti_sysbios_gates_GateAll_enter__E
    008c5340 ti_sysbios_gates_GateMutex_Instance_init__F
    008c53a0 ti_sysbios_hal_Hwi_initStack
    008c5400 ti_sysbios_knl_Swi_Module_startup__E
    008c5400 ti_sysbios_knl_Swi_Module_startup__F
    008c5460 ti_sysbios_knl_Task_allBlockedFunction__I
    008c54c0 ti_sysbios_knl_Task_enter__I
    008c5520 writemsg
    008c5578 C$$IO$$
    008c5580 xdc_runtime_Memory_calloc__E
    008c5580 xdc_runtime_Memory_calloc__F
    008c55e0 xdc_runtime_Memory_valloc__E
    008c55e0 xdc_runtime_Memory_valloc__F
    008c5640 xdc_runtime_SysStd_abort__E
    008c5640 xdc_runtime_SysStd_abort__F
    008c5640 xdc_runtime_System_SupportProxy_abort__E
    008c56a0 xdc_runtime_System_aprintf_va__E
    008c56a0 xdc_runtime_System_aprintf_va__F
    008c56a0 xdc_runtime_System_avprintf__E
    008c56a0 xdc_runtime_System_avprintf__F
    008c5700 xdc_runtime_System_printf_va__E
    008c5700 xdc_runtime_System_printf_va__F
    008c5700 xdc_runtime_System_vprintf__E
    008c5700 xdc_runtime_System_vprintf__F
    008c5760 xdc_runtime_Text_cordText__E
    008c5760 xdc_runtime_Text_cordText__F
    008c57c0 __c6xabi_isinf
    008c5840 _args_main
    008c5880 ti_sysbios_family_c62_TaskSupport_buildTaskStack
    008c58c0 ti_sysbios_family_xxx_Hwi_switchToIsrStack
    008c5900 edma3ParamCpy
    008c5940 free
    008c5980 log10
    008c5a00 ti_sdo_ipc_GateMP_Object__delete__S
    008c5a40 ti_sdo_ipc_ListMP_Object__delete__S
    008c5a80 ti_sdo_ipc_family_c647x_Interrupt_intClear__E
    008c5a80 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intClear__E
    008c5ac0 ti_sdo_ipc_family_c647x_Interrupt_intSend__E
    008c5ac0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intSend__E
    008c5b00 ti_sdo_ipc_gates_GateHWSem_Handle__label__S
    008c5b40 ti_sdo_ipc_gates_GateHWSem_Object__delete__S
    008c5b80 ti_sdo_ipc_gates_GateMPSupportNull_Handle__label__S
    008c5bc0 ti_sdo_ipc_gates_GateMPSupportNull_Object__delete__S
    008c5c00 ti_sdo_ipc_gates_GatePeterson_Handle__label__S
    008c5c40 ti_sdo_ipc_gates_GatePeterson_Object__delete__S
    008c5c80 ti_sdo_ipc_heaps_HeapMemMP_Handle__label__S
    008c5cc0 ti_sdo_ipc_heaps_HeapMemMP_Object__delete__S
    008c5d00 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Handle__label__S
    008c5d40 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__delete__S
    008c5d80 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_disable__E
    008c5dc0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_enable__E
    008c5e00 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Handle__label__S
    008c5e40 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__delete__S
    008c5e80 ti_sdo_ipc_nsremote_NameServerRemoteNotify_sharedMemReq__E
    008c5e80 ti_sdo_utils_NameServer_SetupProxy_sharedMemReq__E
    008c5ec0 ti_sdo_ipc_transports_TransportShm_Handle__label__S
    008c5f00 ti_sdo_ipc_transports_TransportShm_Object__delete__S
    008c5f40 ti_sdo_utils_List_Object__destruct__S
    008c5f80 ti_sdo_utils_NameServer_Module__startupDone__F
    008c5f80 ti_sdo_utils_NameServer_Module__startupDone__S
    008c5fc0 ti_sdo_utils_NameServer_Object__get__S
    008c6000 ti_sysbios_BIOS_startFunc__I
    008c6040 ti_sysbios_BIOS_start__E
    008c6080 ti_sysbios_family_c64p_EventCombiner_disableEvent__E
    008c6080 ti_sysbios_family_c64p_EventCombiner_disableEvent__F
    008c60c0 ti_sysbios_family_c64p_EventCombiner_enableEvent__E
    008c60c0 ti_sysbios_family_c64p_EventCombiner_enableEvent__F
    008c6100 ti_sysbios_family_c64p_Hwi_Module__startupDone__F
    008c6100 ti_sysbios_family_c64p_Hwi_Module__startupDone__S
    008c6140 ti_sysbios_family_c64p_Hwi_Object__delete__S
    008c6180 ti_sysbios_family_c64p_Hwi_disableInterrupt__E
    008c6180 ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E
    008c6180 ti_sysbios_hal_Hwi_disableInterrupt__E
    008c61c0 ti_sysbios_family_c64p_Hwi_enableInterrupt__E
    008c61c0 ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E
    008c61c0 ti_sysbios_hal_Hwi_enableInterrupt__E
    008c6200 ti_sysbios_family_c66_tci66xx_CpIntc_dispatchPlug__E
    008c6200 ti_sysbios_family_c66_tci66xx_CpIntc_dispatchPlug__F
    008c6240 ti_sysbios_family_c66_tci66xx_CpIntc_enableAllHostInts__E
    008c6240 ti_sysbios_family_c66_tci66xx_CpIntc_enableAllHostInts__F
    008c6280 ti_sysbios_gates_GateAll_Handle__label__S
    008c62c0 ti_sysbios_gates_GateAll_Object__delete__S
    008c6300 ti_sysbios_gates_GateHwi_Handle__label__S
    008c6340 ti_sysbios_gates_GateHwi_Object__delete__S
    008c6380 ti_sysbios_gates_GateMutexPri_Handle__label__S
    008c63c0 ti_sysbios_gates_GateMutexPri_Instance_finalize__F
    008c6400 ti_sysbios_gates_GateMutexPri_Instance_init__F
    008c6440 ti_sysbios_gates_GateMutexPri_Object__delete__S
    008c6480 ti_sysbios_gates_GateMutexPri_Object__destruct__S
    008c64c0 ti_sysbios_gates_GateMutex_Handle__label__S
    008c6500 ti_sysbios_gates_GateMutex_Instance_finalize__F
    008c6540 ti_sysbios_gates_GateMutex_Object__delete__S
    008c6580 ti_sysbios_gates_GateMutex_leave__E
    008c65c0 ti_sysbios_gates_GateSwi_Handle__label__S
    008c6600 ti_sysbios_gates_GateSwi_Object__delete__S
    008c6640 ti_sysbios_hal_Timer_Module__startupDone__F
    008c6640 ti_sysbios_hal_Timer_Module__startupDone__S
    008c6680 ti_sysbios_heaps_HeapMem_Handle__label__S
    008c66c0 ti_sysbios_heaps_HeapMem_Object__delete__S
    008c6700 ti_sysbios_heaps_HeapMem_Object__get__S
    008c6740 ti_sysbios_knl_Clock_Object__destruct__S
    008c6780 ti_sysbios_knl_Queue_Object__destruct__S
    008c67c0 ti_sysbios_knl_Semaphore_Instance_finalize__F
    008c6800 ti_sysbios_knl_Semaphore_Object__delete__S
    008c6840 ti_sysbios_knl_Semaphore_Object__destruct__S
    008c6880 ti_sysbios_knl_Swi_Object__destruct__S
    008c68c0 ti_sysbios_knl_Swi_Object__get__S
    008c6900 ti_sysbios_knl_Swi_inc__E
    008c6940 ti_sysbios_knl_Task_Object__get__S
    008c6980 ti_sysbios_timers_timer64_Timer_Module__startupDone__F
    008c6980 ti_sysbios_timers_timer64_Timer_Module__startupDone__S
    008c69c0 ti_sysbios_xdcruntime_GateThreadSupport_Instance_finalize__F
    008c6a00 ti_sysbios_xdcruntime_GateThreadSupport_Instance_init__F
    008c6a40 ti_sysbios_xdcruntime_GateThreadSupport_Object__delete__S
    008c6a80 ti_sysbios_xdcruntime_GateThreadSupport_enter__E
    008c6a80 ti_sysbios_xdcruntime_GateThreadSupport_enter__F
    008c6ac0 ti_sysbios_xdcruntime_GateThreadSupport_leave__E
    008c6ac0 ti_sysbios_xdcruntime_GateThreadSupport_leave__F
    008c6b00 time
    008c6b40 xdc_runtime_Error_check__E
    008c6b40 xdc_runtime_Error_check__F
    008c6b80 xdc_runtime_Error_init__E
    008c6b80 xdc_runtime_Error_init__F
    008c6bc0 xdc_runtime_GateNull_Handle__label__S
    008c6c00 xdc_runtime_GateNull_Object__create__S
    008c6c40 xdc_runtime_GateNull_Object__delete__S
    008c6c80 xdc_runtime_Gate_leaveSystem__E
    008c6c80 xdc_runtime_Gate_leaveSystem__F
    008c6cc0 xdc_runtime_Memory_free__E
    008c6cc0 xdc_runtime_Memory_free__F
    008c6d00 xdc_runtime_Registry_findById__E
    008c6d00 xdc_runtime_Registry_findById__F
    008c6d40 xdc_runtime_System_abort__E
    008c6d40 xdc_runtime_System_abort__F
    008c6d80 xdc_runtime_System_aprintf__E
    008c6dc0 xdc_runtime_System_printf__E
    008c6e00 xdc_runtime_Text_ropeText__E
    008c6e00 xdc_runtime_Text_ropeText__F
    008c6e40 xdc_runtime_knl_GateThread_Handle__label__S
    008c6e80 xdc_runtime_knl_GateThread_Instance_finalize__F
    008c6ec0 xdc_runtime_knl_GateThread_Instance_init__F
    008c6f00 xdc_runtime_knl_GateThread_Object__delete__S
    008c6f40 CSL_GPIO_open
    008c6f60 MultiProc_getNumProcessors
    008c6f80 MultiProc_self
    008c6fa0 __c6xabi_errno_addr
    008c6fc0 __c6xabi_negll
    008c6fe0 __cxa_atexit
    008c7000 __cxa_ia64_exit
    008c7020 __c6xabi_pop_rts
    008c7020 __pop_rts
    008c7040 __c6xabi_push_rts
    008c7040 __push_rts
    008c7060 __xdc__init
    008c7080 _nop
    008c70e0 _register_lock
    008c7100 _register_unlock
    008c7120 ti_sysbios_family_c62_TaskSupport_glue
    008c7140 ti_sysbios_family_xxx_Hwi_switchToTaskStack
    008c7160 C$$EXIT
    008c7160 abort
    008c7180 atexit
    008c71a0 CSL_tscEnable
    008c71a8 CSL_tscRead
    008c71c0 __TI_decompress_none
    008c71e0 __TI_decompress_rle24
    008c7200 edma3MemZero
    008c7220 lisrEdma3CCErrHandler0
    008c7240 lisrEdma3ComplHandler0
    008c7260 lisrEdma3TC0ErrHandler0
    008c7280 lisrEdma3TC1ErrHandler0
    008c72a0 lisrEdma3TC2ErrHandler0
    008c72c0 lisrEdma3TC3ErrHandler0
    008c72e0 lisrEdma3TC4ErrHandler0
    008c7300 lisrEdma3TC5ErrHandler0
    008c7320 lisrEdma3TC6ErrHandler0
    008c7340 lisrEdma3TC7ErrHandler0
    008c7380 putc
    008c73a0 putchar
    008c73c0 ti_sdo_ipc_GateMP_Params__init__S
    008c73e0 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Object__create__S
    008c7400 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Object__delete__S
    008c7420 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Params__init__S
    008c7440 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Proxy__abstract__S
    008c7460 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_Proxy__delegate__S
    008c7480 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Object__create__S
    008c74a0 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Object__delete__S
    008c74c0 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Params__init__S
    008c74e0 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Proxy__abstract__S
    008c7500 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_Proxy__delegate__S
    008c7520 ti_sdo_ipc_GateMP_RemoteSystemProxy_Object__create__S
    008c7540 ti_sdo_ipc_GateMP_RemoteSystemProxy_Object__delete__S
    008c7560 ti_sdo_ipc_GateMP_RemoteSystemProxy_Params__init__S
    008c7580 ti_sdo_ipc_GateMP_RemoteSystemProxy_Proxy__abstract__S
    008c75a0 ti_sdo_ipc_GateMP_RemoteSystemProxy_Proxy__delegate__S
    008c75c0 ti_sdo_ipc_GateMP_getSharedAddr__E
    008c75c0 ti_sdo_ipc_GateMP_getSharedAddr__F
    008c75e0 ti_sdo_ipc_ListMP_Params__init__S
    008c7600 ti_sdo_ipc_MessageQ_Object__get__S
    008c7620 ti_sdo_ipc_Notify_Module_GateProxy_enter__E
    008c7640 ti_sdo_ipc_Notify_Module_GateProxy_leave__E
    008c7660 ti_sdo_ipc_family_c647x_Interrupt_intDisable__E
    008c7660 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intDisable__E
    008c7680 ti_sdo_ipc_family_c647x_Interrupt_intEnable__E
    008c7680 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_InterruptProxy_intEnable__E
    008c76a0 ti_sdo_ipc_Notify_SetupProxy_numIntLines__E
    008c76a0 ti_sdo_ipc_family_c647x_NotifySetup_numIntLines__E
    008c76c0 ti_sdo_ipc_gates_GateHWSem_Params__init__S
    008c76e0 ti_sdo_ipc_GateMP_RemoteSystemProxy_getReservedMask__E
    008c76e0 ti_sdo_ipc_gates_GateHWSem_getReservedMask__E
    008c7700 ti_sdo_ipc_GateMP_RemoteSystemProxy_query__E
    008c7700 ti_sdo_ipc_gates_GateHWSem_query__E
    008c7700 ti_sdo_ipc_gates_GateHWSem_query__F
    008c7720 ti_sdo_ipc_GateMP_RemoteSystemProxy_sharedMemReq__E
    008c7720 ti_sdo_ipc_gates_GateHWSem_sharedMemReq__E
    008c7740 ti_sdo_ipc_gates_GateMPSupportNull_Instance_init__F
    008c7760 ti_sdo_ipc_gates_GateMPSupportNull_Params__init__S
    008c7780 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_getReservedMask__E
    008c7780 ti_sdo_ipc_gates_GateMPSupportNull_getReservedMask__E
    008c77a0 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_query__E
    008c77a0 ti_sdo_ipc_gates_GateMPSupportNull_query__E
    008c77a0 ti_sdo_ipc_gates_GateMPSupportNull_query__F
    008c77c0 ti_sdo_ipc_GateMP_RemoteCustom2Proxy_sharedMemReq__E
    008c77c0 ti_sdo_ipc_gates_GateMPSupportNull_sharedMemReq__E
    008c77e0 ti_sdo_ipc_gates_GatePeterson_Params__init__S
    008c7800 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_getReservedMask__E
    008c7800 ti_sdo_ipc_gates_GatePeterson_getReservedMask__E
    008c7820 ti_sdo_ipc_GateMP_RemoteCustom1Proxy_query__E
    008c7820 ti_sdo_ipc_gates_GatePeterson_query__E
    008c7820 ti_sdo_ipc_gates_GatePeterson_query__F
    008c7840 ti_sdo_ipc_heaps_HeapMemMP_Params__init__S
    008c7860 ti_sdo_ipc_heaps_HeapMemMP_isBlocking__E
    008c7860 ti_sdo_ipc_heaps_HeapMemMP_isBlocking__F
    008c7880 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Params__init__S
    008c78a0 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__first__S
    008c78c0 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__next__S
    008c78e0 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Params__init__S
    008c7900 ti_sdo_ipc_nsremote_NameServerRemoteNotify_cbFxn__I
    008c7920 ti_sdo_ipc_MessageQ_SetupTransportProxy_isRegistered__E
    008c7920 ti_sdo_ipc_transports_TransportShmSetup_isRegistered__E
    008c7940 ti_sdo_ipc_transports_TransportShm_Params__init__S
    008c7960 ti_sdo_ipc_transports_TransportShm_control__E
    008c7980 ti_sdo_ipc_transports_TransportShm_getStatus__E
    008c79a0 ti_sdo_ipc_transports_TransportShm_notifyFxn__I
    008c79c0 ti_sdo_ipc_transports_TransportShm_setErrFxn__E
    008c79c0 ti_sdo_ipc_transports_TransportShm_setErrFxn__F
    008c79e0 ti_sdo_utils_List_Instance_init__F
    008c7a00 ti_sdo_utils_List_Object__get__S
    008c7a20 ti_sdo_utils_MultiProc_getClusterId__E
    008c7a20 ti_sdo_utils_MultiProc_getClusterId__F
    008c7a40 ti_sdo_utils_NameServer_Object__first__S
    008c7a60 ti_sdo_utils_NameServer_Object__next__S
    008c7a80 ti_sysbios_BIOS_RtsGateProxy_enter__E
    008c7aa0 ti_sysbios_BIOS_RtsGateProxy_leave__E
    008c7ac0 ti_sysbios_BIOS_getThreadType__E
    008c7ae0 ti_sysbios_BIOS_setThreadType__E
    008c7b00 ti_sysbios_family_c62_TaskSupport_Module__startupDone__S
    008c7b20 ti_sysbios_family_c62_TaskSupport_checkStack__E
    008c7b20 ti_sysbios_knl_Task_SupportProxy_checkStack__E
    008c7b40 ti_sysbios_family_c64p_Hwi_Params__init__S
    008c7b60 ti_sysbios_family_c64p_Hwi_clearInterrupt__E
    008c7b60 ti_sysbios_hal_Hwi_HwiProxy_clearInterrupt__E
    008c7b60 ti_sysbios_hal_Hwi_clearInterrupt__E
    008c7b80 ti_sysbios_family_c64p_Hwi_getHandle__E
    008c7ba0 ti_sysbios_family_c64p_Hwi_startup__E
    008c7ba0 ti_sysbios_hal_Hwi_HwiProxy_startup__E
    008c7ba0 ti_sysbios_hal_Hwi_startup__E
    008c7bc0 ti_sysbios_family_c64p_Hwi_switchFromBootStack__E
    008c7bc0 ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E
    008c7bc0 ti_sysbios_hal_Hwi_switchFromBootStack__E
    008c7be0 ti_sysbios_family_c64p_Hwi_unPluggedInterrupt__I
    008c7c00 ti_sysbios_family_c64p_tci6488_TimerSupport_enable__E
    008c7c00 ti_sysbios_timers_timer64_Timer_TimerSupportProxy_enable__E
    008c7c20 ti_sysbios_family_c66_Cache_inv__E
    008c7c20 ti_sysbios_hal_Cache_CacheProxy_inv__E
    008c7c20 ti_sysbios_hal_Cache_inv__E
    008c7c40 ti_sysbios_family_c66_Cache_wbInv__E
    008c7c40 ti_sysbios_hal_Cache_CacheProxy_wbInv__E
    008c7c40 ti_sysbios_hal_Cache_wbInv__E
    008c7c60 ti_sysbios_family_c66_Cache_wb__E
    008c7c60 ti_sysbios_hal_Cache_CacheProxy_wb__E
    008c7c60 ti_sysbios_hal_Cache_wb__E
    008c7c80 ti_sysbios_family_c66_tci66xx_CpIntc_disableHostInt__E
    008c7c80 ti_sysbios_family_c66_tci66xx_CpIntc_disableHostInt__F
    008c7ca0 ti_sysbios_family_c66_tci66xx_CpIntc_enableHostInt__E
    008c7ca0 ti_sysbios_family_c66_tci66xx_CpIntc_enableHostInt__F
    008c7cc0 ti_sysbios_gates_GateAll_Instance_init__F
    008c7ce0 ti_sysbios_gates_GateAll_query__E
    008c7ce0 ti_sysbios_gates_GateAll_query__F
    008c7d00 ti_sysbios_gates_GateHwi_Instance_init__F
    008c7d20 ti_sysbios_gates_GateHwi_enter__E
    008c7d40 ti_sysbios_gates_GateHwi_leave__E
    008c7d60 ti_sysbios_gates_GateHwi_query__E
    008c7d60 ti_sysbios_gates_GateHwi_query__F
    008c7d60 xdc_runtime_Main_Module_GateProxy_query__E
    008c7d60 xdc_runtime_System_Module_GateProxy_query__E
    008c7d80 ti_sysbios_gates_GateMutexPri_query__E
    008c7d80 ti_sysbios_gates_GateMutexPri_query__F
    008c7d80 ti_sysbios_xdcruntime_GateProcessSupport_query__F
    008c7d80 ti_sysbios_xdcruntime_GateThreadSupport_query__E
    008c7d80 ti_sysbios_xdcruntime_GateThreadSupport_query__F
    008c7d80 xdc_runtime_knl_GateThread_Proxy_query__E
    008c7d80 xdc_runtime_knl_GateThread_query__E
    008c7d80 xdc_runtime_knl_GateThread_query__F
    008c7da0 ti_sysbios_BIOS_RtsGateProxy_query__E
    008c7da0 ti_sysbios_gates_GateMutex_query__E
    008c7da0 ti_sysbios_gates_GateMutex_query__F
    008c7da0 ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E
    008c7dc0 ti_sysbios_gates_GateSwi_Instance_init__F
    008c7de0 ti_sdo_ipc_Notify_Module_GateProxy_query__E
    008c7de0 ti_sysbios_gates_GateSwi_query__E
    008c7de0 ti_sysbios_gates_GateSwi_query__F
    008c7e00 ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S
    008c7e20 ti_sysbios_hal_Hwi_Module_startup__E
    008c7e20 ti_sysbios_hal_Hwi_Module_startup__F
    008c7e40 ti_sysbios_hal_Timer_Module_startup__E
    008c7e40 ti_sysbios_hal_Timer_Module_startup__F
    008c7e60 ti_sysbios_hal_Timer_TimerProxy_Module__startupDone__S
    008c7e80 ti_sysbios_hal_Timer_TimerProxy_getExpiredCounts__E
    008c7ea0 ti_sysbios_hal_Timer_TimerProxy_getPeriod__E
    008c7ec0 ti_sysbios_hal_Timer_TimerProxy_setNextTick__E
    008c7ee0 ti_sysbios_heaps_HeapBuf_Object__get__S
    008c7f00 ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E
    008c7f20 ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E
    008c7f40 ti_sysbios_heaps_HeapMem_isBlocking__E
    008c7f60 ti_sysbios_knl_Clock_Params__init__S
    008c7f80 ti_sysbios_knl_Queue_Instance_init__F
    008c7fa0 ti_sysbios_knl_Queue_Object__get__S
    008c7fc0 ti_sysbios_knl_Queue_empty__E
    008c7fe0 ti_sysbios_knl_Semaphore_Params__init__S
    008c8000 ti_sysbios_knl_Swi_Params__init__S
    008c8020 ti_sysbios_knl_Swi_disable__E
    008c8040 ti_sysbios_knl_Swi_getTrigger__E
    008c8060 ti_sysbios_knl_Task_Object__first__S
    008c8080 ti_sysbios_knl_Task_Object__next__S
    008c80a0 ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S
    008c80c0 ti_sysbios_knl_Task_disable__E
    008c80e0 ti_sysbios_knl_Task_enable__E
    008c8100 ti_sysbios_knl_Task_getPri__E
    008c8120 ti_sysbios_knl_Task_self__E
    008c8140 ti_sysbios_timers_timer64_Timer_setNextTick__E
    008c8160 xdc_runtime_GateNull_enter__E
    008c8160 xdc_runtime_GateNull_enter__F
    008c8180 xdc_runtime_GateNull_leave__E
    008c8180 xdc_runtime_GateNull_leave__F
    008c81a0 xdc_runtime_GateNull_query__E
    008c81a0 xdc_runtime_GateNull_query__F
    008c81c0 xdc_runtime_Gate_enterSystem__E
    008c81c0 xdc_runtime_Gate_enterSystem__F
    008c8220 xdc_runtime_Memory_HeapProxy_alloc__E
    008c8240 xdc_runtime_Memory_HeapProxy_free__E
    008c8260 xdc_runtime_Memory_getMaxDefaultTypeAlign__E
    008c8260 xdc_runtime_Memory_getMaxDefaultTypeAlign__F
    008c8280 xdc_runtime_Startup_Module__startupDone__S
    008c82a0 xdc_runtime_Startup_exec__I
    008c82c0 xdc_runtime_Startup_reset__I
    008c82e0 xdc_runtime_Startup_rtsDone__E
    008c82e0 xdc_runtime_Startup_rtsDone__F
    008c8300 xdc_runtime_SysStd_exit__E
    008c8300 xdc_runtime_SysStd_exit__F
    008c8300 xdc_runtime_System_SupportProxy_exit__E
    008c8320 xdc_runtime_SysStd_putch__E
    008c8320 xdc_runtime_SysStd_putch__F
    008c8320 xdc_runtime_System_SupportProxy_putch__E
    008c8340 xdc_runtime_SysStd_ready__E
    008c8340 xdc_runtime_SysStd_ready__F
    008c8340 xdc_runtime_System_SupportProxy_ready__E
    008c8360 xdc_runtime_System_Module_GateProxy_enter__E
    008c8380 xdc_runtime_System_Module_GateProxy_leave__E
    008c83a0 xdc_runtime_System_Module_startup__E
    008c83a0 xdc_runtime_System_Module_startup__F
    008c83c0 xdc_runtime_System_exit__E
    008c83c0 xdc_runtime_System_exit__F
    008c83e0 xdc_runtime_System_lastFxn__I
    008c8400 xdc_runtime_System_sprintf_va__E
    008c8400 xdc_runtime_System_sprintf_va__F
    008c8400 xdc_runtime_System_vsprintf__E
    008c8400 xdc_runtime_System_vsprintf__F
    008c8420 xdc_runtime_Text_visitRope__I
    008c8440 xdc_runtime_knl_GateThread_Module__startupDone__S
    008c8460 xdc_runtime_knl_GateThread_Proxy_Object__create__S
    008c8480 xdc_runtime_knl_GateThread_Proxy_Object__delete__S
    008c84a0 xdc_runtime_knl_GateThread_Proxy_enter__E
    008c84c0 xdc_runtime_knl_GateThread_Proxy_leave__E
    008c84e0 xdc_runtime_knl_GateThread_enter__E
    008c84e0 xdc_runtime_knl_GateThread_enter__F
    008c8500 xdc_runtime_knl_GateThread_leave__E
    008c8500 xdc_runtime_knl_GateThread_leave__F
    008c8520 defInstInitConfig
    008c94e0 sampleInstInitConfig
    008ca4a0 edma3GblCfgParams
    008cad28 sampleEdma3GblCfgParams
    008cb5b0 ti_sdo_ipc_GateMP_Module_State_0_remoteCustom1Gates__A
    008cbdb0 ti_sdo_ipc_GateMP_Module__root__V
    008cbdb8 ti_sdo_ipc_GateMP_Module__state__V
    008cbe00 ti_sdo_ipc_Ipc_Module__state__V
    008cbe0c ti_sdo_ipc_ListMP_Module__root__V
    008cbe14 ti_sdo_ipc_ListMP_Module__state__V
    008cbe18 ti_sdo_ipc_MessageQ_Module__root__V
    008cbe20 ti_sdo_ipc_MessageQ_Module__state__V
    008cbe3c ti_sdo_ipc_Notify_Module__root__V
    008cbe44 ti_sdo_ipc_Notify_Module__state__V
    008cbe4c ti_sdo_ipc_SharedRegion_Module__state__V
    008cbe50 ti_sdo_ipc_family_c647x_Interrupt_Module__state__V
    008cbe58 ti_sdo_ipc_gates_GateHWSem_Module__root__V
    008cbe60 ti_sdo_ipc_gates_GateMPSupportNull_Module__root__V
    008cbe68 ti_sdo_ipc_gates_GatePeterson_Module__root__V
    008cbe70 ti_sdo_ipc_heaps_HeapBufMP_Module__root__V
    008cbe78 ti_sdo_ipc_heaps_HeapBufMP_Module__state__V
    008cbe7c ti_sdo_ipc_heaps_HeapMemMP_Module__root__V
    008cbe84 ti_sdo_ipc_heaps_HeapMemMP_Module__state__V
    008cbe88 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__root__V
    008cbe90 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__root__V
    008cbe98 ti_sdo_ipc_transports_TransportShm_Module__root__V
    008cbea0 ti_sdo_ipc_transports_TransportShmSetup_Module__state__V
    008cbea4 ti_sdo_utils_List_Module__root__V
    008cbeac ti_sdo_utils_MultiProc_Module__state__V
    008cbeb0 ti_sdo_utils_NameServer_Module__root__V
    008cbeb8 ti_sdo_utils_NameServer_Module__state__V
    008cbec0 ti_sdo_utils_NameServerRemoteNull_Module__root__V
    008cbec8 ti_sysbios_BIOS_Module__state__V
    008cbee4 ti_sysbios_family_c64p_EventCombiner_Module__state__V
    008cc2e4 ti_sysbios_family_c64p_Exception_Module__state__V
    008cc310 ti_sysbios_family_c64p_Hwi_Module__root__V
    008cc318 ti_sysbios_family_c64p_Hwi_Module__state__V
    008cc380 ti_sysbios_family_c66_tci66xx_CpIntc_Module__state__V
    008cc390 ti_sysbios_gates_GateAll_Module__root__V
    008cc398 ti_sysbios_gates_GateHwi_Module__root__V
    008cc3a0 ti_sysbios_gates_GateMutex_Module__root__V
    008cc3a8 ti_sysbios_gates_GateMutexPri_Module__root__V
    008cc3b0 ti_sysbios_gates_GateSwi_Module__root__V
    008cc3b8 ti_sysbios_hal_Hwi_Module__root__V
    008cc3c0 ti_sysbios_hal_Timer_Module__root__V
    008cc3c8 ti_sysbios_heaps_HeapBuf_Module__root__V
    008cc3d0 ti_sysbios_heaps_HeapBuf_Module__state__V
    008cc3d4 ti_sysbios_heaps_HeapMem_Module__root__V
    008cc3dc ti_sysbios_knl_Clock_Module__root__V
    008cc3e4 ti_sysbios_knl_Clock_Module__state__V
    008cc410 ti_sysbios_knl_Queue_Module__root__V
    008cc418 ti_sysbios_knl_Semaphore_Module__root__V
    008cc420 ti_sysbios_knl_Swi_Module__root__V
    008cc428 ti_sysbios_knl_Swi_Module__state__V
    008cc444 ti_sysbios_knl_Task_Module__root__V
    008cc44c ti_sysbios_knl_Task_Module__state__V
    008cc480 ti_sysbios_syncs_SyncSem_Module__root__V
    008cc488 ti_sysbios_timers_timer64_Timer_Module__root__V
    008cc490 ti_sysbios_timers_timer64_Timer_Module__state__V
    008cc4a4 ti_sysbios_xdcruntime_GateThreadSupport_Module__root__V
    008cc4ac xdc_runtime_Error_Module__state__V
    008cc4b0 xdc_runtime_GateNull_Module__root__V
    008cc4b8 xdc_runtime_Memory_Module__state__V
    008cc4bc xdc_runtime_Registry_Module__state__V
    008cc4c4 xdc_runtime_Startup_Module__state__V
    008cc4cc xdc_runtime_System_Module__state__V
    008cc4d8 xdc_runtime_Text_Module__state__V
    008cc4e0 xdc_runtime_knl_GateThread_Module__root__V
    008cc4e8 __xdc__init__addr
    008cc4ec _ft_end
    008cc4f0 ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_dispatchTab__A
    008ccb70 _ftable
    008ccd50 ti_sdo_utils_NameServer_Object__table__V
    008cce68 ti_sysbios_timers_timer64_Timer_Module_State_0_device__A
    008ccfc8 ti_sdo_ipc_SharedRegion_Module_State_0_regions__A
    008cd058 ti_sdo_ipc_GateMP_Module_State_0_remoteSystemGates__A
    008cd0d8 ti_sysbios_knl_Swi_Module_State_0_readyQ__A
    008cd158 ti_sysbios_knl_Task_Module_State_0_readyQ__A
    008cd250 ti_sysbios_family_c64p_Hwi_Object__table__V
    008cd2c8 ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_hostIntToSysInt__A
    008cd330 ccXferCompInt
    008cd390 tcErrorInt
    008cd3f0 ti_sysbios_timers_timer64_Timer_Object__table__V
    008cd440 TSK_idle
    008cd440 ti_sysbios_knl_Task_Object__table__V
    008cd484 __errno
    008cd484 errno
    008cd488 ti_sysbios_gates_GateMutex_Object__table__V
    008cd4c8 ti_sysbios_timers_timer64_Timer_Module_State_0_gctrl__A
    008cd508 ti_sysbios_timers_timer64_Timer_Module_State_0_handles__A
    008cd548 ti_sysbios_timers_timer64_Timer_Module_State_0_intFreqs__A
    008cd588 ti_sdo_ipc_Ipc_Module_State_0_procEntry__A
    008cd5c8 ccXferHostInt
    008cd5f8 edma3ErrHostInt
    008cd628 ti_sysbios_knl_Swi_Object__table__V
    008cd658 _lock
    008cd65c _unlock
    008cd688 ptrEdma3TcIsrHandler
    008cd6a8 ti_sdo_ipc_MessageQ_Module_State_0_heaps__A
    008cd6c8 xdc_runtime_System_Module_State_0_atexitHandlers__A
    008cd6e8 ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_initSIER__A
    008cd738 ti_sdo_ipc_MessageQ_Module_State_0_transports__A
    008cd750 ti_sdo_ipc_family_c647x_Interrupt_Module_State_0_fxnTable__A
    008cd768 ti_sysbios_gates_GateMutexPri_Object__table__V
    008cd780 ti_sysbios_knl_Semaphore_Object__table__V
    008cd798 ti_sysbios_hal_Hwi_Object__table__V
    008cd7b8 ti_sysbios_heaps_HeapMem_Object__table__V
    008cd7d0 gblCfgReqdArray
    008cd7e0 ti_sysbios_gates_GateAll_Object__table__V
    008cd7f0 ccErrorInt
    008cd800 edmaSemHandle
    008cd810 numEdma3Tc
    008cd81c _cleanup_ptr
    008cd820 _dtors_ptr
    008cd824 __TI_enable_exit_profile_output
    008cd828 ti_sdo_ipc_Notify_Module_State_0_notifyHandles__A
    008cd838 ti_sdo_ipc_transports_TransportShmSetup_Module_State_0_handles__A
    008cd848 ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_controller__A
    008cd858 ti_sysbios_gates_GateSwi_Object__table__V
    008cd868 ti_sysbios_hal_Timer_Object__table__V
    008cd870 ti_sdo_ipc_GateMP_Module_State_0_remoteCustom2Gates__A
    008cd878 ti_sdo_ipc_Notify_Module_State_0_notifyHandles_0__A
    008cd880 ti_sdo_ipc_Notify_Module_State_0_notifyHandles_1__A
    008cd888 ti_sdo_ipc_Notify_Module_State_0_notifyHandles_2__A
    008cd890 ti_sysbios_gates_GateHwi_Object__table__V
    008cd898 xdc_runtime_GateNull_Object__table__V
    008cd8a0 xdc_runtime_Text_charTab__A
    008d02d0 ti_sysbios_family_c66_Cache_marvalues__C
    008d06d0 xdc_runtime_Text_nodeTab__A
    008d0854 ti_sdo_ipc_GateMP_A_invalidClose__C
    008d0858 _ctypes_
    008d0a56 ti_sdo_ipc_GateMP_Module__id__C
    008d0a58 ti_sysbios_family_c66_tci66xx_CpIntc_sysIntToHostInt__A
    008d0de8 xdc_runtime_Startup_sfxnTab__A
    008d0eae ti_sdo_ipc_GateMP_Module__loggerDefined__C
    008d0eb0 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__FXNS__C
    008d0ee8 ti_sdo_ipc_GateMP_Object__PARAMS__C
    008d0f1c ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__PARAMS__C
    008d0f50 ti_sdo_ipc_heaps_HeapMemMP_Object__PARAMS__C
    008d0f80 ti_sysbios_family_c64p_Hwi_Object__PARAMS__C
    008d0fdc ti_sdo_ipc_ListMP_Object__PARAMS__C
    008d1008 ti_sdo_ipc_gates_GateHWSem_Module__FXNS__C
    008d1034 ti_sdo_ipc_gates_GateMPSupportNull_Module__FXNS__C
    008d1060 ti_sdo_ipc_gates_GatePeterson_Module__FXNS__C
    008d108c ti_sdo_ipc_heaps_HeapMemMP_Module__FXNS__C
    008d10b4 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__FXNS__C
    008d10dc ti_sdo_ipc_transports_TransportShm_Module__FXNS__C
    008d1104 ti_sdo_ipc_transports_TransportShm_Object__PARAMS__C
    008d112c ti_sysbios_heaps_HeapMem_Module__FXNS__C
    008d1154 ti_sysbios_knl_Swi_Object__PARAMS__C
    008d117c ti_sdo_ipc_gates_GateHWSem_Object__PARAMS__C
    008d11a0 ti_sdo_ipc_gates_GateMPSupportNull_Object__PARAMS__C
    008d11c4 ti_sdo_ipc_gates_GatePeterson_Object__PARAMS__C
    008d11e8 ti_sysbios_gates_GateAll_Module__FXNS__C
    008d120c ti_sysbios_gates_GateHwi_Module__FXNS__C
    008d1230 ti_sysbios_gates_GateMutexPri_Module__FXNS__C
    008d1254 ti_sysbios_gates_GateMutex_Module__FXNS__C
    008d1278 ti_sysbios_gates_GateSwi_Module__FXNS__C
    008d129c ti_sysbios_knl_Clock_Object__PARAMS__C
    008d12c0 ti_sysbios_knl_Semaphore_Object__PARAMS__C
    008d12e4 xdc_runtime_GateNull_Module__FXNS__C
    008d1308 xdc_runtime_Startup_sfxnRts__A
    008d132c xdc_runtime_knl_GateThread_Module__FXNS__C
    008d13b4 ti_sdo_ipc_GateMP_Object__DESC__C
    008d13d4 ti_sdo_ipc_ListMP_Object__DESC__C
    008d13f4 ti_sdo_ipc_Notify_Object__DESC__C
    008d1414 ti_sdo_ipc_gates_GateHWSem_Object__DESC__C
    008d1434 ti_sdo_ipc_gates_GateMPSupportNull_Object__DESC__C
    008d1454 ti_sdo_ipc_gates_GatePeterson_Object__DESC__C
    008d1474 ti_sdo_ipc_heaps_HeapMemMP_Object__DESC__C
    008d1494 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__DESC__C
    008d14b4 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__DESC__C
    008d14d4 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Object__PARAMS__C
    008d14f4 ti_sdo_ipc_transports_TransportShm_Object__DESC__C
    008d1514 ti_sdo_utils_List_Object__DESC__C
    008d1534 ti_sysbios_family_c64p_Hwi_Object__DESC__C
    008d1554 ti_sysbios_gates_GateAll_Object__DESC__C
    008d1574 ti_sysbios_gates_GateHwi_Object__DESC__C
    008d1594 ti_sysbios_gates_GateMutexPri_Object__DESC__C
    008d15b4 ti_sysbios_gates_GateMutex_Object__DESC__C
    008d15d4 ti_sysbios_gates_GateSwi_Object__DESC__C
    008d15f4 ti_sysbios_heaps_HeapMem_Object__DESC__C
    008d1614 ti_sysbios_heaps_HeapMem_Object__PARAMS__C
    008d1634 ti_sysbios_knl_Clock_Object__DESC__C
    008d1654 ti_sysbios_knl_Queue_Object__DESC__C
    008d1674 ti_sysbios_knl_Semaphore_Object__DESC__C
    008d1694 ti_sysbios_knl_Swi_Object__DESC__C
    008d16b4 ti_sysbios_xdcruntime_GateThreadSupport_Object__DESC__C
    008d16d4 xdc_runtime_GateNull_Object__DESC__C
    008d16f4 xdc_runtime_knl_GateThread_Object__DESC__C
    008d1714 ti_sdo_ipc_GateMP_A_invalidDelete__C
    008d1718 ti_sysbios_family_c66_tci66xx_CpIntc_eventId__A
    008d1732 ti_sdo_ipc_Ipc_Module__id__C
    008d1734 ti_sdo_ipc_GateMP_E_gateUnavailable__C
    008d1738 ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_0__A
    008d1752 ti_sdo_ipc_Ipc_generateSlaveDataForHost__C
    008d1754 ti_sdo_ipc_GateMP_E_localGate__C
    008d1758 ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_1__A
    008d1772 ti_sdo_ipc_ListMP_Module__id__C
    008d1774 ti_sdo_ipc_GateMP_LM_create__C
    008d1778 ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_2__A
    008d1792 ti_sdo_ipc_MessageQ_Module__id__C
    008d1794 ti_sdo_ipc_GateMP_LM_delete__C
    008d1798 ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_3__A
    008d17b2 ti_sdo_ipc_MessageQ_Module__loggerDefined__C
    008d17b4 ti_sdo_ipc_Notify_Object__PARAMS__C
    008d17cc ti_sdo_utils_List_Object__PARAMS__C
    008d17e4 ti_sysbios_gates_GateAll_Object__PARAMS__C
    008d17fc ti_sysbios_gates_GateHwi_Object__PARAMS__C
    008d1814 ti_sysbios_gates_GateMutexPri_Object__PARAMS__C
    008d182c ti_sysbios_gates_GateMutex_Object__PARAMS__C
    008d1844 ti_sysbios_gates_GateSwi_Object__PARAMS__C
    008d185c ti_sysbios_knl_Queue_Object__PARAMS__C
    008d1874 ti_sdo_ipc_GateMP_LM_enter__C
    008d1878 ti_sysbios_knl_Task_hooks__A
    008d1890 ti_sysbios_xdcruntime_GateThreadSupport_Object__PARAMS__C
    008d18a8 xdc_runtime_GateNull_Object__PARAMS__C
    008d18c0 xdc_runtime_knl_GateThread_Object__PARAMS__C
    008d18ea ti_sdo_ipc_Notify_Module__id__C
    008d18ec ti_sdo_ipc_GateMP_LM_leave__C
    008d1902 ti_sdo_ipc_Notify_numLines__C
    008d1904 ti_sdo_ipc_GateMP_LM_open__C
    008d1908 ti_sysbios_family_c64p_EventCombiner_EVTMASK__C
    008d1918 ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId__A
    008d1928 ti_sysbios_family_c66_Cache_initSize__C
    008d1934 ti_sdo_ipc_GateMP_Module__diagsEnabled__C
    008d1938 xdc_runtime_Startup_firstFxns__A
    008d194c ti_sysbios_knl_Idle_funcList__C
    008d1954 ti_sysbios_knl_Task_hooks__C
    008d195c xdc_runtime_Startup_firstFxns__C
    008d1964 xdc_runtime_Startup_lastFxns__C
    008d196c ti_sdo_ipc_GateMP_Module__diagsIncluded__C
    008d1970 ti_sdo_ipc_family_c647x_MultiProcSetup_procMap__A
    008d1976 ti_sdo_ipc_Notify_reservedEvents__C
    008d1978 ti_sdo_ipc_GateMP_Module__diagsMask__C
    008d197c ti_sdo_ipc_GateMP_Module__loggerFxn2__C
    008d1980 ti_sdo_ipc_GateMP_Module__loggerFxn4__C
    008d1984 ti_sdo_ipc_GateMP_Module__loggerObj__C
    008d1988 ti_sdo_ipc_Ipc_A_addrNotCacheAligned__C
    008d198c ti_sdo_ipc_Ipc_A_addrNotInSharedRegion__C
    008d1990 ti_sdo_ipc_Ipc_A_internal__C
    008d1994 ti_sdo_ipc_Ipc_A_invArgument__C
    008d1998 ti_sdo_ipc_Ipc_A_invParam__C
    008d199c ti_sdo_ipc_Ipc_A_nullArgument__C
    008d19a0 ti_sdo_ipc_Ipc_A_nullPointer__C
    008d19a4 ti_sdo_ipc_Ipc_E_internal__C
    008d19a8 ti_sdo_ipc_Ipc_E_nameFailed__C
    008d19ac ti_sdo_ipc_Ipc_E_versionMismatch__C
    008d19b0 ti_sdo_ipc_Ipc_Module__diagsEnabled__C
    008d19b4 ti_sdo_ipc_Ipc_Module__diagsIncluded__C
    008d19b8 ti_sdo_ipc_Ipc_Module__diagsMask__C
    008d19bc ti_sdo_ipc_Ipc_numUserFxns__C
    008d19c0 ti_sdo_ipc_Ipc_procSync__C
    008d19c4 ti_sdo_ipc_Ipc_userFxns__C
    008d19c8 ti_sdo_ipc_ListMP_Module__diagsEnabled__C
    008d19cc ti_sdo_ipc_ListMP_Module__diagsIncluded__C
    008d19d0 ti_sdo_ipc_ListMP_Module__diagsMask__C
    008d19d4 ti_sdo_ipc_MessageQ_A_invalidMsg__C
    008d19d8 ti_sdo_ipc_MessageQ_A_invalidObj__C
    008d19dc ti_sdo_ipc_MessageQ_A_invalidQueueId__C
    008d19e0 ti_sdo_ipc_MessageQ_A_procIdInvalid__C
    008d19e4 ti_sdo_ipc_MessageQ_A_unregisteredTransport__C
    008d19e8 ti_sdo_ipc_MessageQ_Instance_State_highList__O
    008d19ec ti_sdo_ipc_MessageQ_Instance_State_normalList__O
    008d19f0 ti_sdo_ipc_MessageQ_LM_putLocal__C
    008d19f4 ti_sdo_ipc_MessageQ_Module__diagsEnabled__C
    008d19f8 ti_sdo_ipc_MessageQ_Module__diagsIncluded__C
    008d19fc ti_sdo_ipc_MessageQ_Module__diagsMask__C
    008d1a00 ti_sdo_ipc_MessageQ_Module__loggerFxn4__C
    008d1a04 ti_sdo_ipc_MessageQ_Module__loggerObj__C
    008d1a08 ti_sdo_ipc_MessageQ_Object__count__C
    008d1a0c ti_sdo_ipc_Notify_A_alreadyRegistered__C
    008d1a10 ti_sdo_ipc_Notify_A_internal__C
    008d1a14 ti_sdo_ipc_Notify_A_invArgument__C
    008d1a18 ti_sdo_ipc_Notify_A_notRegistered__C
    008d1a1c ti_sdo_ipc_Notify_A_reservedEvent__C
    008d1a20 ti_sdo_ipc_Notify_Module__diagsEnabled__C
    008d1a24 ti_sdo_ipc_Notify_Module__diagsIncluded__C
    008d1a28 ti_sdo_ipc_Notify_Module__diagsMask__C
    008d1a2c ti_sdo_ipc_Notify_Module__gateObj__C
    008d1a30 ti_sdo_ipc_Notify_Object__heap__C
    008d1a34 ti_sdo_ipc_Notify_numEvents__C
    008d1a38 ti_sdo_ipc_Notify_sendEventPollCount__C
    008d1a3c ti_sdo_ipc_SharedRegion_A_addrOutOfRange__C
    008d1a40 ti_sdo_ipc_SharedRegion_A_idTooLarge__C
    008d1a44 ti_sdo_ipc_SharedRegion_A_noHeap__C
    008d1a48 ti_sdo_ipc_SharedRegion_A_region0Invalid__C
    008d1a4c ti_sdo_ipc_SharedRegion_A_regionInvalid__C
    008d1a50 ti_sdo_ipc_SharedRegion_A_reserveTooMuch__C
    008d1a54 ti_sdo_ipc_SharedRegion_INVALIDSRPTR__C
    008d1a58 ti_sdo_ipc_SharedRegion_Module__diagsEnabled__C
    008d1a5c ti_sdo_ipc_SharedRegion_Module__diagsIncluded__C
    008d1a60 ti_sdo_ipc_SharedRegion_Module__diagsMask__C
    008d1a64 ti_sdo_ipc_SharedRegion_cacheLineSize__C
    008d1a68 ti_sdo_ipc_SharedRegion_numOffsetBits__C
    008d1a6c ti_sdo_ipc_SharedRegion_offsetMask__C
    008d1a70 ti_sdo_ipc_family_c647x_Interrupt_INTERDSPINT__C
    008d1a74 ti_sdo_ipc_family_c647x_Interrupt_IPCAR0__C
    008d1a78 ti_sdo_ipc_family_c647x_Interrupt_IPCGR0__C
    008d1a7c ti_sdo_ipc_family_c647x_Interrupt_KICK0__C
    008d1a80 ti_sdo_ipc_family_c647x_Interrupt_KICK1__C
    008d1a84 ti_sdo_ipc_family_c647x_MultiProcSetup_A_invalidProcessor__C
    008d1a88 ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsEnabled__C
    008d1a8c ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsIncluded__C
    008d1a90 ti_sdo_ipc_family_c647x_MultiProcSetup_Module__diagsMask__C
    008d1a94 ti_sdo_ipc_family_c647x_MultiProcSetup_procMap__C
    008d1a98 ti_sdo_ipc_family_c647x_NotifySetup_dspIntVectId__C
    008d1a9c ti_sdo_ipc_gates_GateHWSem_A_invSemNum__C
    008d1aa0 ti_sdo_ipc_gates_GateHWSem_Module__diagsEnabled__C
    008d1aa4 ti_sdo_ipc_gates_GateHWSem_Module__diagsIncluded__C
    008d1aa8 ti_sdo_ipc_gates_GateHWSem_Module__diagsMask__C
    008d1aac ti_sdo_ipc_gates_GateHWSem_baseAddr__C
    008d1ab0 ti_sdo_ipc_gates_GateHWSem_numSems__C
    008d1ab4 ti_sdo_ipc_gates_GateHWSem_reservedMaskArr__C
    008d1ab8 ti_sdo_ipc_gates_GateHWSem_reservedMaskArr__A
    008d1abc ti_sdo_ipc_gates_GateMPSupportNull_A_invalidAction__C
    008d1ac0 ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsEnabled__C
    008d1ac4 ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsIncluded__C
    008d1ac8 ti_sdo_ipc_gates_GateMPSupportNull_Module__diagsMask__C
    008d1acc ti_sdo_ipc_gates_GateMPSupportNull_action__C
    008d1ad0 ti_sdo_ipc_gates_GatePeterson_E_gateRemotelyOpened__C
    008d1ad4 ti_sdo_ipc_gates_GatePeterson_Module__diagsEnabled__C
    008d1ad8 ti_sdo_ipc_gates_GatePeterson_Module__diagsIncluded__C
    008d1adc ti_sdo_ipc_gates_GatePeterson_Module__diagsMask__C
    008d1ae0 ti_sdo_ipc_gates_GatePeterson_numInstances__C
    008d1ae4 ti_sdo_ipc_heaps_HeapMemMP_A_align__C
    008d1ae8 ti_sdo_ipc_heaps_HeapMemMP_A_heapSize__C
    008d1aec ti_sdo_ipc_heaps_HeapMemMP_A_invalidFree__C
    008d1af0 ti_sdo_ipc_heaps_HeapMemMP_A_zeroBlock__C
    008d1af4 ti_sdo_ipc_heaps_HeapMemMP_E_memory__C
    008d1af8 ti_sdo_ipc_heaps_HeapMemMP_Module__diagsEnabled__C
    008d1afc ti_sdo_ipc_heaps_HeapMemMP_Module__diagsIncluded__C
    008d1b00 ti_sdo_ipc_heaps_HeapMemMP_Module__diagsMask__C
    008d1b04 ti_sdo_ipc_interfaces_IGateMPSupport_Interface__BASE__C
    008d1b08 ti_sdo_ipc_interfaces_IMessageQTransport_Interface__BASE__C
    008d1b0c ti_sdo_ipc_interfaces_INotifyDriver_Interface__BASE__C
    008d1b10 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsEnabled__C
    008d1b14 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsIncluded__C
    008d1b18 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__diagsMask__C
    008d1b1c ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Object__heap__C
    008d1b20 ti_sdo_ipc_nsremote_NameServerRemoteNotify_A_invalidValueLen__C
    008d1b24 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_semMultiBlock__O
    008d1b28 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_semRemoteWait__O
    008d1b2c ti_sdo_ipc_nsremote_NameServerRemoteNotify_Instance_State_swiObj__O
    008d1b30 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsEnabled__C
    008d1b34 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsIncluded__C
    008d1b38 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__diagsMask__C
    008d1b3c ti_sdo_ipc_nsremote_NameServerRemoteNotify_notifyEventId__C
    008d1b40 ti_sdo_ipc_nsremote_NameServerRemoteNotify_timeout__C
    008d1b44 ti_sdo_ipc_transports_TransportShmSetup_priority__C
    008d1b48 ti_sdo_ipc_transports_TransportShm_Instance_State_swiObj__O
    008d1b4c ti_sdo_ipc_transports_TransportShm_Module__diagsEnabled__C
    008d1b50 ti_sdo_ipc_transports_TransportShm_Module__diagsIncluded__C
    008d1b54 ti_sdo_ipc_transports_TransportShm_Module__diagsMask__C
    008d1b58 ti_sdo_utils_INameServerRemote_Interface__BASE__C
    008d1b5c ti_sdo_utils_MultiProc_A_invalidMultiProcId__C
    008d1b60 ti_sdo_utils_MultiProc_Module__diagsEnabled__C
    008d1b64 ti_sdo_utils_MultiProc_Module__diagsIncluded__C
    008d1b68 ti_sdo_utils_MultiProc_Module__diagsMask__C
    008d1b6c ti_sdo_utils_NameServer_A_invArgument__C
    008d1b70 ti_sdo_utils_NameServer_A_invalidLen__C
    008d1b74 ti_sdo_utils_NameServer_E_entryExists__C
    008d1b78 ti_sdo_utils_NameServer_E_maxReached__C
    008d1b7c ti_sdo_utils_NameServer_Instance_State_freeList__O
    008d1b80 ti_sdo_utils_NameServer_Instance_State_nameList__O
    008d1b84 ti_sdo_utils_NameServer_Module__diagsEnabled__C
    008d1b88 ti_sdo_utils_NameServer_Module__diagsIncluded__C
    008d1b8c ti_sdo_utils_NameServer_Module__diagsMask__C
    008d1b90 ti_sdo_utils_NameServer_Object__count__C
    008d1b94 ti_sysbios_BIOS_Module__diagsEnabled__C
    008d1b98 ti_sysbios_BIOS_Module__diagsIncluded__C
    008d1b9c ti_sysbios_BIOS_Module__diagsMask__C
    008d1ba0 ti_sysbios_BIOS_installedErrorHook__C
    008d1ba4 ti_sysbios_family_c64p_EventCombiner_E_unpluggedEvent__C
    008d1ba8 ti_sysbios_family_c64p_Exception_E_exceptionMin__C
    008d1bac ti_sysbios_family_c64p_Exception_exceptionHook__C
    008d1bb0 ti_sysbios_family_c64p_Exception_externalHook__C
    008d1bb4 ti_sysbios_family_c64p_Exception_internalHook__C
    008d1bb8 ti_sysbios_family_c64p_Exception_nmiHook__C
    008d1bbc ti_sysbios_family_c64p_Hwi_E_alreadyDefined__C
    008d1bc0 ti_sysbios_family_c64p_Hwi_E_handleNotFound__C
    008d1bc4 ti_sysbios_family_c64p_Hwi_LD_end__C
    008d1bc8 ti_sysbios_family_c64p_Hwi_LM_begin__C
    008d1bcc ti_sysbios_family_c64p_Hwi_Module__diagsEnabled__C
    008d1bd0 ti_sysbios_family_c64p_Hwi_Module__diagsIncluded__C
    008d1bd4 ti_sysbios_family_c64p_Hwi_Module__diagsMask__C
    008d1bd8 ti_sysbios_family_c64p_Hwi_Module__loggerFxn1__C
    008d1bdc ti_sysbios_family_c64p_Hwi_Module__loggerFxn8__C
    008d1be0 ti_sysbios_family_c64p_Hwi_Module__loggerObj__C
    008d1be4 ti_sysbios_family_c66_Cache_atomicBlockSize__C
    008d1be8 ti_sysbios_family_c66_tci66xx_CpIntc_E_unpluggedSysInt__C
    008d1bec ti_sysbios_family_c66_tci66xx_CpIntc_eventId__C
    008d1bf0 ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId__C
    008d1bf4 ti_sysbios_family_c66_tci66xx_CpIntc_numEvents__C
    008d1bf8 ti_sysbios_family_c66_tci66xx_CpIntc_numStatusRegs__C
    008d1bfc ti_sysbios_family_c66_tci66xx_CpIntc_numSysInts__C
    008d1c00 ti_sysbios_family_c66_tci66xx_CpIntc_sysIntToHostInt__C
    008d1c04 ti_sysbios_gates_GateMutexPri_A_badContext__C
    008d1c08 ti_sysbios_gates_GateMutexPri_Instance_State_pendQ__O
    008d1c0c ti_sysbios_gates_GateMutexPri_Module__diagsEnabled__C
    008d1c10 ti_sysbios_gates_GateMutexPri_Module__diagsIncluded__C
    008d1c14 ti_sysbios_gates_GateMutexPri_Module__diagsMask__C
    008d1c18 ti_sysbios_gates_GateMutex_A_badContext__C
    008d1c1c ti_sysbios_gates_GateMutex_Instance_State_sem__O
    008d1c20 ti_sysbios_gates_GateMutex_Module__diagsEnabled__C
    008d1c24 ti_sysbios_gates_GateMutex_Module__diagsIncluded__C
    008d1c28 ti_sysbios_gates_GateMutex_Module__diagsMask__C
    008d1c2c ti_sysbios_gates_GateSwi_A_badContext__C
    008d1c30 ti_sysbios_gates_GateSwi_Module__diagsEnabled__C
    008d1c34 ti_sysbios_gates_GateSwi_Module__diagsIncluded__C
    008d1c38 ti_sysbios_gates_GateSwi_Module__diagsMask__C
    008d1c3c ti_sysbios_hal_Hwi_E_stackOverflow__C
    008d1c40 ti_sysbios_heaps_HeapBuf_Instance_State_freeList__O
    008d1c44 ti_sysbios_heaps_HeapBuf_Object__count__C
    008d1c48 ti_sysbios_heaps_HeapBuf_numConstructedHeaps__C
    008d1c4c ti_sysbios_heaps_HeapMem_A_align__C
    008d1c50 ti_sysbios_heaps_HeapMem_A_heapSize__C
    008d1c54 ti_sysbios_heaps_HeapMem_A_invalidFree__C
    008d1c58 ti_sysbios_heaps_HeapMem_A_zeroBlock__C
    008d1c5c ti_sysbios_heaps_HeapMem_E_memory__C
    008d1c60 ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C
    008d1c64 ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C
    008d1c68 ti_sysbios_heaps_HeapMem_Module__diagsMask__C
    008d1c6c ti_sysbios_heaps_HeapMem_Module__gateObj__C
    008d1c70 ti_sysbios_heaps_HeapMem_Object__count__C
    008d1c74 ti_sysbios_heaps_HeapMem_reqAlignMask__C
    008d1c78 ti_sysbios_heaps_HeapMem_reqAlign__C
    008d1c7c ti_sysbios_knl_Clock_A_badThreadType__C
    008d1c80 ti_sysbios_knl_Clock_LM_begin__C
    008d1c84 ti_sysbios_knl_Clock_LM_tick__C
    008d1c88 ti_sysbios_knl_Clock_LW_delayed__C
    008d1c8c ti_sysbios_knl_Clock_Module_State_clockQ__O
    008d1c90 ti_sysbios_knl_Clock_Module__diagsEnabled__C
    008d1c94 ti_sysbios_knl_Clock_Module__diagsIncluded__C
    008d1c98 ti_sysbios_knl_Clock_Module__diagsMask__C
    008d1c9c ti_sysbios_knl_Clock_Module__loggerFxn1__C
    008d1ca0 ti_sysbios_knl_Clock_Module__loggerFxn2__C
    008d1ca4 ti_sysbios_knl_Clock_Module__loggerObj__C
    008d1ca8 ti_sysbios_knl_Clock_tickMode__C
    008d1cac ti_sysbios_knl_Clock_tickSource__C
    008d1cb0 ti_sysbios_knl_Idle_funcList__A
    008d1cb4 ti_sysbios_knl_Semaphore_A_badContext__C
    008d1cb8 ti_sysbios_knl_Semaphore_A_noEvents__C
    008d1cbc ti_sysbios_knl_Semaphore_A_overflow__C
    008d1cc0 ti_sysbios_knl_Semaphore_Instance_State_pendQ__O
    008d1cc4 ti_sysbios_knl_Semaphore_LM_pend__C
    008d1cc8 ti_sysbios_knl_Semaphore_LM_post__C
    008d1ccc ti_sysbios_knl_Semaphore_Module__diagsEnabled__C
    008d1cd0 ti_sysbios_knl_Semaphore_Module__diagsIncluded__C
    008d1cd4 ti_sysbios_knl_Semaphore_Module__diagsMask__C
    008d1cd8 ti_sysbios_knl_Semaphore_Module__loggerFxn2__C
    008d1cdc ti_sysbios_knl_Semaphore_Module__loggerFxn4__C
    008d1ce0 ti_sysbios_knl_Semaphore_Module__loggerObj__C
    008d1ce4 ti_sysbios_knl_Swi_A_badPriority__C
    008d1ce8 ti_sysbios_knl_Swi_LD_end__C
    008d1cec ti_sysbios_knl_Swi_LM_begin__C
    008d1cf0 ti_sysbios_knl_Swi_LM_post__C
    008d1cf4 ti_sysbios_knl_Swi_Module__diagsEnabled__C
    008d1cf8 ti_sysbios_knl_Swi_Module__diagsIncluded__C
    008d1cfc ti_sysbios_knl_Swi_Module__diagsMask__C
    008d1d00 ti_sysbios_knl_Swi_Module__loggerFxn1__C
    008d1d04 ti_sysbios_knl_Swi_Module__loggerFxn4__C
    008d1d08 ti_sysbios_knl_Swi_Module__loggerObj__C
    008d1d0c ti_sysbios_knl_Swi_Object__count__C
    008d1d10 ti_sysbios_knl_Task_A_badPriority__C
    008d1d14 ti_sysbios_knl_Task_E_spOutOfBounds__C
    008d1d18 ti_sysbios_knl_Task_E_stackOverflow__C
    008d1d1c ti_sysbios_knl_Task_LD_block__C
    008d1d20 ti_sysbios_knl_Task_LD_exit__C
    008d1d24 ti_sysbios_knl_Task_LD_ready__C
    008d1d28 ti_sysbios_knl_Task_LM_setPri__C
    008d1d2c ti_sysbios_knl_Task_LM_switch__C
    008d1d30 ti_sysbios_knl_Task_LM_yield__C
    008d1d34 ti_sysbios_knl_Task_Module_State_inactiveQ__O
    008d1d38 ti_sysbios_knl_Task_Module_State_terminatedQ__O
    008d1d3c ti_sysbios_knl_Task_Module__diagsEnabled__C
    008d1d40 ti_sysbios_knl_Task_Module__diagsIncluded__C
    008d1d44 ti_sysbios_knl_Task_Module__diagsMask__C
    008d1d48 ti_sysbios_knl_Task_Module__loggerFxn2__C
    008d1d4c ti_sysbios_knl_Task_Module__loggerFxn4__C
    008d1d50 ti_sysbios_knl_Task_Module__loggerObj__C
    008d1d54 ti_sysbios_knl_Task_Object__count__C
    008d1d58 ti_sysbios_knl_Task_allBlockedFunc__C
    008d1d5c ti_sysbios_knl_Task_numConstructedTasks__C
    008d1d60 ti_sysbios_knl_Task_numPriorities__C
    008d1d64 ti_sysbios_timers_timer64_Timer_A_notAvailable__C
    008d1d68 ti_sysbios_timers_timer64_Timer_E_cannotSupport__C
    008d1d6c ti_sysbios_timers_timer64_Timer_Module__diagsEnabled__C
    008d1d70 ti_sysbios_timers_timer64_Timer_Module__diagsIncluded__C
    008d1d74 ti_sysbios_timers_timer64_Timer_Module__diagsMask__C
    008d1d78 ti_sysbios_timers_timer64_Timer_anyMask__C
    008d1d7c ti_sysbios_timers_timer64_Timer_freqDivisor__C
    008d1d80 ti_sysbios_timers_timer64_Timer_numLocalTimers__C
    008d1d84 ti_sysbios_timers_timer64_Timer_numTimerDevices__C
    008d1d88 ti_sysbios_xdcruntime_GateThreadSupport_Instance_State_gate__O
    008d1d8c xdc_runtime_Assert_E_assertFailed__C
    008d1d90 xdc_runtime_Core_A_initializedParams__C
    008d1d94 xdc_runtime_Core_Module__diagsEnabled__C
    008d1d98 xdc_runtime_Core_Module__diagsIncluded__C
    008d1d9c xdc_runtime_Core_Module__diagsMask__C
    008d1da0 xdc_runtime_Error_E_generic__C
    008d1da4 xdc_runtime_Error_E_memory__C
    008d1da8 xdc_runtime_Error_Module__diagsEnabled__C
    008d1dac xdc_runtime_Error_Module__diagsIncluded__C
    008d1db0 xdc_runtime_Error_Module__diagsMask__C
    008d1db4 xdc_runtime_Error_Module__loggerFxn8__C
    008d1db8 xdc_runtime_Error_Module__loggerObj__C
    008d1dbc xdc_runtime_Error_policy__C
    008d1dc0 xdc_runtime_Error_raiseHook__C
    008d1dc4 xdc_runtime_IGateProvider_Interface__BASE__C
    008d1dc8 xdc_runtime_IHeap_Interface__BASE__C
    008d1dcc xdc_runtime_IModule_Interface__BASE__C
    008d1dd0 xdc_runtime_Log_L_error__C
    008d1dd4 xdc_runtime_Main_Module__diagsEnabled__C
    008d1dd8 xdc_runtime_Main_Module__diagsIncluded__C
    008d1ddc xdc_runtime_Main_Module__diagsMask__C
    008d1de0 xdc_runtime_Main_Module__loggerFxn4__C
    008d1de4 xdc_runtime_Main_Module__loggerObj__C
    008d1de8 xdc_runtime_Memory_defaultHeapInstance__C
    008d1dec xdc_runtime_Startup_execImpl__C
    008d1df0 xdc_runtime_Startup_lastFxns__A
    008d1df4 xdc_runtime_Startup_maxPasses__C
    008d1df8 xdc_runtime_Startup_sfxnRts__C
    008d1dfc xdc_runtime_Startup_sfxnTab__C
    008d1e00 xdc_runtime_System_Module__gateObj__C
    008d1e04 xdc_runtime_System_extendFxn__C
    008d1e08 xdc_runtime_System_maxAtexitHandlers__C
    008d1e0c xdc_runtime_Text_charTab__C
    008d1e10 xdc_runtime_Text_nameEmpty__C
    008d1e14 xdc_runtime_Text_nameStatic__C
    008d1e18 xdc_runtime_Text_nameUnknown__C
    008d1e1c xdc_runtime_Text_nodeTab__C
    008d1e20 xdc_runtime_Text_visitRopeFxn__C
    008d1e24 ti_sdo_ipc_SharedRegion_Module__id__C
    008d1e26 ti_sdo_ipc_SharedRegion_numEntries__C
    008d1e28 ti_sdo_ipc_SharedRegion_translate__C
    008d1e2a ti_sdo_ipc_family_c647x_Interrupt_enableKick__C
    008d1e2c ti_sdo_ipc_family_c647x_MultiProcSetup_Module__id__C
    008d1e2e ti_sdo_ipc_gates_GateHWSem_Module__id__C
    008d1e30 ti_sdo_ipc_gates_GateMPSupportNull_Module__id__C
    008d1e32 ti_sdo_ipc_gates_GatePeterson_Module__id__C
    008d1e34 ti_sdo_ipc_heaps_HeapMemMP_Module__id__C
    008d1e36 ti_sdo_ipc_notifyDrivers_NotifyDriverShm_Module__id__C
    008d1e38 ti_sdo_ipc_nsremote_NameServerRemoteNotify_Module__id__C
    008d1e3a ti_sdo_ipc_transports_TransportShm_Module__id__C
    008d1e3c ti_sdo_ipc_transports_TransportShm_notifyEventId__C
    008d1e3e ti_sdo_utils_MultiProc_Module__id__C
    008d1e40 ti_sdo_utils_MultiProc_numProcessors__C
    008d1e42 ti_sdo_utils_MultiProc_numProcsInCluster__C
    008d1e44 ti_sdo_utils_NameServer_Module__id__C
    008d1e46 ti_sysbios_BIOS_Module__id__C
    008d1e48 ti_sysbios_family_c64p_EventCombiner_Module__id__C
    008d1e4a ti_sysbios_family_c64p_Exception_Module__id__C
    008d1e4c ti_sysbios_family_c64p_Hwi_Module__id__C
    008d1e4e ti_sysbios_family_c64p_Hwi_Module__loggerDefined__C
    008d1e50 ti_sysbios_family_c66_tci66xx_CpIntc_Module__id__C
    008d1e52 ti_sysbios_gates_GateMutexPri_Module__id__C
    008d1e54 ti_sysbios_gates_GateMutex_Module__id__C
    008d1e56 ti_sysbios_gates_GateSwi_Module__id__C
    008d1e58 ti_sysbios_hal_Hwi_Module__id__C
    008d1e5a ti_sysbios_heaps_HeapMem_Module__id__C
    008d1e5c ti_sysbios_knl_Clock_Module__id__C
    008d1e5e ti_sysbios_knl_Clock_Module__loggerDefined__C
    008d1e60 ti_sysbios_knl_Semaphore_Module__id__C
    008d1e62 ti_sysbios_knl_Semaphore_Module__loggerDefined__C
    008d1e64 ti_sysbios_knl_Swi_Module__id__C
    008d1e66 ti_sysbios_knl_Swi_Module__loggerDefined__C
    008d1e68 ti_sysbios_knl_Task_Module__id__C
    008d1e6a ti_sysbios_knl_Task_Module__loggerDefined__C
    008d1e6c ti_sysbios_knl_Task_deleteTerminatedTasks__C
    008d1e6e ti_sysbios_knl_Task_initStackFlag__C
    008d1e70 ti_sysbios_timers_timer64_Timer_Module__id__C
    008d1e72 ti_sysbios_timers_timer64_Timer_startupNeeded__C
    008d1e74 xdc_runtime_Core_Module__id__C
    008d1e76 xdc_runtime_Error_Module__loggerDefined__C
    008d1e78 xdc_runtime_Error_maxDepth__C
    008d1e7a xdc_runtime_Main_Module__id__C
    008d1e7c xdc_runtime_Main_Module__loggerDefined__C
    008d1e7e xdc_runtime_Memory_Module__id__C
    008d1e80 xdc_runtime_Text_charCnt__C
    008d1e82 xdc_runtime_Text_isLoaded__C
    008d1e84 xdc_runtime_Text_registryModsLastId__C
    008d1e86 xdc_runtime_Text_unnamedModsLastId__C
    008d1e88 _stack
    008d2e88 __CIOBUF_
    008d2e88 __TI_STACK_END
    008d3000 ti_sysbios_family_c64p_Hwi0
    008d3020 ti_sysbios_family_c64p_Hwi1
    008d3040 ti_sysbios_family_c64p_Hwi2
    008d3060 ti_sysbios_family_c64p_Hwi3
    008d3080 ti_sysbios_family_c64p_Hwi4
    008d30a0 ti_sysbios_family_c64p_Hwi5
    008d30c0 ti_sysbios_family_c64p_Hwi6
    008d30e0 ti_sysbios_family_c64p_Hwi7
    008d3100 ti_sysbios_family_c64p_Hwi8
    008d3120 ti_sysbios_family_c64p_Hwi9
    008d3140 ti_sysbios_family_c64p_Hwi10
    008d3160 ti_sysbios_family_c64p_Hwi11
    008d3180 ti_sysbios_family_c64p_Hwi12
    008d31a0 ti_sysbios_family_c64p_Hwi13
    008d31c0 ti_sysbios_family_c64p_Hwi14
    008d31e0 ti_sysbios_family_c64p_Hwi15
    008d3200 __TI_STATIC_BASE
    008d3200 abs_corr_ll
    008d3208 CORR_ON
    008d320c idx_tap
    008d3210 idx_samp
    008d3218 yPow_ll
    008d3220 xPow_ll
    008d3228 nextProcId
    008d322c status
    008d3230 i
    008d3250 dsp_num
    008d3254 region_id
    008d3260 Ipc_sr0MemorySetup
    008d3264 hGpio_handle
    008d3268 RANGING
    008d326c peak_value
    008d3270 buf_idx_value
    008d3274 impulse_power_int
    008d3278 ranging_pulses_sent
    008d327c total_set_ranging_pulses_sent
    008d3280 interval
    008d3284 sent_time
    008d3288 found_time
    008d328c PULSING
    008d3290 PULSE_ON
    008d3294 PULSE_ON_PERIOD
    008d3298 PULSE_OFF_PERIOD
    008d329c PULSE_COUNT
    008d32a0 samples_left
    008d32a4 pulse_idx
    008d32a8 loop_pulse_idx
    008d32ac delay_idx
    008d32b0 start_pulse_idx
    008d32b4 finish_pulse_idx
    008d32b8 start_pulse_interval_idx
    008d32bc PERF_CORR
    008d32c0 CORR_BACKOFF_SAMP
    008d32c4 CORR_BACKOFF_INT
    008d32c8 corr_idx
    008d32cc load_corr_idx
    008d32d0 shift_idx
    008d32d4 max_shift
    008d32d8 max_abs_corr
    008d32dc PERF_UPDATE
    008d32e0 tx_high
    008d32e4 start_update_interval_idx
    008d32e8 N_taps
    008d32ec N_samps
    008d32f0 ICS_OVERRIDE
    008d32f4 FIRST_FRAME
    008d32fc AC_GAIN
    008d3300 Gain_Tests
    008d3304 TxPow
    008d3308 Delta_sent_time
    008d330c POWER_PERIOD
    008d3310 Sent
    008d3314 AC_ADAPTION
    008d3318 GainNorm
    008d331c AdaptItt
    008d3320 Gain
    008d3324 AC_monitor
    008d3328 APU_elements
    008d332c CurrentAPU
    008d3330 Iso
    008d3334 MinIso
    008d3338 EscapeAdaption
    008d333c low_Current_Gain
    008d3340 low_Current_Index
    008d3344 AC_Loop_Itt
    008d3348 Start
    008d334c FINAL_MSG_SENT
    008d3350 RcvLogCnt
    008d3354 RcvTimeCnt
    008d3358 SendTimeCnt
    008d335c SendLogCnt
    008d3360 resMgrInstance
    008d3364 userInitConfig
    008d3368 ptrRMIArray
    008d336c ptrInitCfgArray
    008d3370 hwiInterrupt
    008d338c edma3NumPaRAMSets
    008d3394 buffer_status
    008d33a0 irqRaised1
    008d33a2 irqRaised2
    008d33a4 transferCallback
    008d33b4 EDMA3_MAX_RM_INSTANCES
    008d33b8 notifySemHandle
    008d33bc numEdma3Instances
    008d5914 __TI_Handler_Table_Base
    008d5920 __TI_Handler_Table_Limit
    008d5950 __TI_CINIT_Base
    008d5998 __TI_CINIT_Limit
    0c000000 CPRI_RxWP_ch0
    0c000100 CPRI_RxRP_ch0
    0c000200 CPRI_TxWP_ch0
    0c000300 CPRI_TxRP_ch0
    0c000400 CPRI_RxWP_ch1
    0c000500 CPRI_RxRP_ch1
    0c000600 CPRI_TxWP_ch1
    0c000700 CPRI_TxRP_ch1
    0c001000 x_ll_shared
    80000000 CPRI_ANT0_RxBuffer
    8012c000 CPRI_ANT0_TxBuffer
    ffffffff __TI_pprof_out_hndl
    ffffffff __TI_prof_data_size
    ffffffff __TI_prof_data_start
    ffffffff __binit__
    ffffffff __c_args__
    ffffffff binit
    UNDEFED __TI_INITARRAY_Base
    UNDEFED __TI_INITARRAY_Limit

    [1573 symbols]
  • I think the .map is too long, as I don't think they are posting.

    Is it useful to send just the first part?