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.

TMS320C6657: bootload I2C passive mode

Part Number: TMS320C6657


Hello,

I'm working with a custom board with 2 C6657 DSP. I would like DSP1 to boot DSP2 via I2C. I configure DSP2's boot strapped pins in I2C passive mode.

I then follow the instructions from sprugy5c.pdf, page 33 " Loading Image Into a Slave Device" and run a progrm on DSP1 that does the following:

1- send 6 data bytes:

length = 6 bytes

checksum = 0 (disabled)

mode = 41 (I2C slave)

2 send the boot table, which is the DSP2 program converted with the hex conversion utiliy.

Unfortunately the DSP2 program doesn't seem to run. 

Are the steps I'm following correct? Am I missing any?

Is there an example of booting with I2C in passive mode?

Regards,

Emilie

  • Hello Shankari,

    Thank you for your suggestion but I need to use I2C as it's the only way for my first DSP to communicate with my second DSP. I'm using core 0 on both DSP so far. Is the bootloader code accessable somewhere so I can see what it's expected to receive in I2C passive mode?

    Regards,

    Emilie

  • Emilie,

    Question:

     Is the bootloader code accessable somewhere so I can see what it's expected to receive in I2C passive mode?

    Answer:

    1. You mean the  ( RBL )ROM bootloader code? If yes, access here: - https://software-dl.ti.com/sdoemb/sdoemb_public_sw/rbl/1_0_C6657/index_FDS.html

    2. If no, you will find Secondary bootloader sample programs, as a part of the software package - "PROCESSOR-SDK-RTOS-C665x 06_03_00_106"
    http://software-dl.ti.com/processor-sdk-rtos/esd/C665x/latest/index_FDS.html

    Path of Bootloader source after you install the above package:- C:\ti\pdk_c665x_2_0_16\packages\ti\boot\examples

    ---

    IPC examples are available to communicate between the cores within the processor device. For example, IPC (the image processing demo ) will communicate between the two dsp cores of C6657 device.

    ---

    But here, your requirement is to communicate between two C6657 devices. 

    There is no sample source or doc for you to point out the scenario, you described.

    Most likely, you may have to develop on own.

    Regards

    Shankari G

  • Hello Shankari,

    Thank you for the RBL source code, that is the one I need to look at to understand what the bootloader is expecting to receive from the I2C master when booting in I2C passive mode. I'll have a look at it and come back to you if I have more questions.

    Regards,

    Emilie

  • Hello Shankari,

    The file C:\BootROM_c6657_PG1.0\C665x_bootROM_src\main\i2cmain in the source code of the RBL is incomplete. The end of the file happens abruptly in the middle of the function "boot_i2c_eeprom_read_block" (see below for reference) and the function I need to look at "bootMainI2C" is missing. Can you please provide me with the complete i2cmain.c file, thank you.

    BOOL  boot_i2c_eeprom_read_block (I2C_EEPROM_TYPE     eeprom_type,
                                      UINT32              byte_addr,
                                      UINT32             *p_size,
                                      UINT32             *addr_inc,
                                      UINT16             *p_packet_bytes,
                                      BOOT_PARAMS_I2C_T*  p_boot_params)
    {
        UINT16 length;
        UINT16 checksum;
        UINT16 prom_i2c_id;
    
        I2C_RC (*i2c_get_data)(I2C_EEPROM_TYPE, UINT32, UINT32, UINT16 *, UINT16, UINT16);
    
    
    
    
    
    
        /* Initialize the returned size and address increment to 0. On successful
        * read of the I2C these will be updated */
        *p_size   = 0;
        *addr_inc = 0;
    
        /* Setup the function to used to get data based on boot mode */
        if (p_boot_params->boot_mode == BOOT_MODE_I2C_PASSIVE)  {
          i2c_get_data = i2c_passive_receive;
        } else  {
          i2c_get_data = i2c_eeprom_read;
          i2cUpdateStatus (I2C_STATUS_READ_BLOCK_INIT, p_boot_params, byte_addr);
        }
    
        
        /* Read the section header */
        prom_i2c_id = (UINT16) ((byte_addr >> 16) & 0xffff);
    
        if(i2c_get_data (eeprom_type, 
                         byte_addr, 
                         BOOT_I2C_SECTION_HEADER_SIZE, 
                         p_packet_bytes,
                         prom_i2c_id,
                         p_boot_params->address_delay)
           != I2C_OK)
        {
            i2cUpdateStatus (I2C_STATUS_HEADER_READ_FAIL, p_boot_params, byte_addr);
            return(FALSE);        
        }
    
        
        length = p_packet_bytes[BOOT_I2C_HEADER_OFFSET_LENGTH];
        
        /* Verify the length filed is in the secified range */
        if((length >  BOOT_I2C_SECTION_HEADER_SIZE) &&
           (length <= (BOOTCONFIG_I2C_BOOT_TABLE_SIZE_UINT16 << 1))  &&
           ((length & 1) == 0))
        {
    
            /* Read the data section */
            if(i2c_get_data (eeprom_type, 
                             byte_addr + BOOT_I2C_SECTION_HEADER_SIZE,
                             (UINT32)(length - BOOT_I2C_SECTION_HEADER_SIZE), 
                             &p_packet_bytes[BOOT_I2C_HEADER_OFFSET_DATA],
                             prom_i2c_id, p_boot_params->address_delay)
               != I2C_OK)
            {
                i2cUpdateStatus (I2C_STATUS_DATA_READ_FAIL, p_boot_params, byte_addr);
                return(FALSE);        
            }
    
            
            /* Verify the checksum if necessary */
            checksum = p_packet_bytes[BOOT_I2C_HEADER_OFFSET_CHECKSUM];
            if(checksum != 0)
            {
                checksum = bootmiscOnesComplementChksum(p_packet_bytes, length>>1);    
            }
            
            if((checksum == 0xFFFF) || (checksum == 0))
            {
                *p_size = *addr_inc = length;
                i2cUpdateStatus (I2C_STATUS_BLOCK_READ, p_boot_params, length);
    
                /* Write the block header if in master write mode */
                if (p_boot_params->boot_mode == BOOT_MODE_I2C_MASTER_WRITE)  {
                  if (i2c_no_address_write (BOOT_I2C_SECTION_HEADER_SIZE, p_packet_bytes, p_boot_params->multi_i2c_id) != I2C_OK)  {
                    i2cUpdateStatus (I2C_STATUS_MASTER_WRITE_HEADER_FAIL, p_boot_params, byte_addr);
    
                  }  else  {
    
                    i2cUpdateStatus (I2C_STATUS_MASTER_WRITE_BLOCK_DONE, p_boot_params, BOOT_I2C_SECTION_HEADER_SIZE);
    
                    /* Write the remainder of the block */
                    bootStats.main.numI2cWrites++;
                    if (i2c_no_address_write ((UINT16)(length - BOOT_I2C_SECTION_HEADER_SIZE), &p_packet_bytes[BOOT_I2C_HEADER_OFFSET_DATA], p_boot_params->multi_i2c_id) != I2C_OK)  {
                      i2cUpdateStatus (I2C_STATUS_MASTER_WRITE_BLOCK_FAIL, p_boot_params, byte_addr);
    
                    } else {
                      i2cUpdateStatus (I2C_STATUS_MASTER_WRITE_BLOCK_DONE, p_boot_params, (UINT16)(length - BOOT_I2C_SECTION_HEADER_SIZE));
                    }
                  }
                }
    
    
    
    
    
    
    
    
    
    
    
    
    
    

    Best regards,

    Emilie

  • Emilie,

    Yes, Your observation is right!.

    The file C:\BootROM_c6657_PG1.0\C665x_bootROM_src\main\i2cmain in the source code of the RBL is incomplete.

    --

    I will try to get the complete RBL source code. I have forwarded this query to internal team.

    It may take some time.

    Thanks for your patience.

    Regards

    Shankari G

  • Emilie,

    In the same link, there is an option to download the linux - bin file

    https://software-dl.ti.com/sdoemb/sdoemb_public_sw/rbl/1_0_C6657/index_FDS.html

    Please download and check whether the source code given there is complete or not. 

    BootROM_c6657_PG1.0.bin

    Regards

    Shankari G

  • Emilie,

    Therer is also one more option.

    The RBL code for C6678 seems to be complete. Atleast, you can refer to the i2cmain.c file. 

    As C6657 and C6678 are the same series of C66x, the difference might not be much.

    --

    Download the RBL of C6678 from here: https://software-dl.ti.com/sdoemb/sdoemb_public_sw/rbl/1_0_C6678/index_FDS.html

    Regards

    Shankari G

  • Hi, 

    Unfortunately i2cmain.c is incomplete in BootROM_c6657_PG1.0.bin as well.

    I installed the RBL source code for C6678 and the i2cmain.c seems complete. I'll study it and will come back to you if I have more questions.

    Thanks for your help.

    Emilie

  • Sure Emilie.

    I guess, RBL source code of C6678 will give some good insights.

    Regards

    Shankari G

  • Hello Shankari,

    The data I'm sending to DSP2 via I2C seems to be received. However DSP2 never jumps into the code once the boot table has been fully sent. I can see in CCS, DSP2 is in a loop at address 0x20B11B52, which appears to be, looking at the dissaembly, the function chipDelay32.

    I'm guessing the RBL is still waiting for data on the I2C. Will it be possible to have a map file of the I2C functions of the RBL which will make debugging much easier?

    Also, can you confirm the format for the boot table in I2c passive/slave mode? Is it the same as for the EEPROM in I2C master mode or is it just a bin file made from the source code with the hex utility? Do you have any simple boot table example?

    Regards,

    Emilie

  • Emilie,

    Page no: 31, 32, 33 

    The format of the boot table can be found in the bootloader user guide : DSP Bootloader for KeyStone Architecture User's Guide (Rev. C) (ti.com)

    ------

    And also, at a first glance, I could see the I2c specific options for slave mode in \tiboot.h

    /*
    * I2C Specific Options
    * Bit 01-00: BT:
    * 00 - Boot Parameter Mode
    * 01 - Boot Table Mode
    * 10 - Boot Config mode
    * 11 - Slave receive boot config
    * Bit 04-02: EETYPE: EEPROM type
    * Other bits: Reserved
    */

    ---

    Please do check whether any DIP switch settings done in your custom board for I2C boot etc...

    ---

    Extract from the user guide:  DSP Bootloader for KeyStone Architecture User's Guide (Rev. C) (ti.com)

    3.7.3 RBL Hand-Over Process

    In scenarios in which the I2C is set to master mode, the RBL will change the program counter to the c_int00 address and start to execute the image when the RBL completes reading the entire boot image from the EEPROM. In slave mode scenarios, the master will be sending the blocks that are then read by the slave, and once the slave device encounters the end of image, it changes the program counter to the c_int00 address and starts the execution of the boot image.

    3.7.2.3 Loading a Boot Parameter Table

    In this boot mode, the RBL provides the option to load only a boot parameter table. This option is useful if the user wants to load a new boot parameter table for booting in a different boot mode. The user will be setting the I2C to master mode.

    3.7.2.4 Loading Image Into a Slave Device

    The RBL also provides the option to set the I2C to slave mode and connect to a master device, which can then send the image to the boot device. The default slave address is set to the value specified in the boot configuration in the DEVSTAT register plus slave address. Also, the I2C bus on the master must run the bus at a speed that does not exceed the speed that the boot code is able to handle (100 kHz, minimum). A small delay is required between the blocks. The I2C master also needs to send six data bytes to the slave device before sending the boot table. The header format should be in the following format: TTxx xx yy yy zz zz (for Receive I2C address value in the device configuration of 0x0) Where: TT= the slave address (part of the I2C command word not included in the data block) for the DSP in slave I2C boot mode. See the data manual for the slave address. xx xx = length yy yy = checksum zz zz = boot option

    ------------------

    Question: Do you have any simple boot table example?

    yes, few Direct ROM BOOT examples are here: 

      https://www.ti.com/lit/an/spracn2/spracn2.pdf

    Page no:  2 

    The two examples described below are for SPI boot on C6678 and NAND boot on C6657. Each of the examples have a ReadMe.txt or document that walks users through the processing of creating these boot images.

    • C6678 EVM SPI boot example

    • C6657 EVM SPI boot example with DDR initialization

    • C6657 EVM NAND boot example

     4666.C6657_directROM_Boot_example.zip

    Regards

    Shankari G

  • Thank you for your answer.

    I have my DSP configured for slave receive boot config, I can see it in DEVSTAT as well.

    My I2C master ie DSP1 sends 6 bytes header file and then the boot table as describe in the doc.

    I'll look at the direct example you sent me that might give me some clues on why DSP2 is not jumping to the code.

    Will it be possible to have a map file of the I2C functions of the RBL which will make debugging much easier? I will then be able to set some break points and see where it's stuck.

    Regards,

    Emilie

  • Emilie,

    Question

    [Emilie said "Will it be possible to have a map file of the I2C functions of the RBL which will make debugging much easier? I will then be able to set some break points and see where it's stuck."]

    Creating a map file is an option while building the RBL code.

    7.4.15 Create a Map File

    (--map_file Option)

    The syntax for the --map_file option is:

    --map_file= filename

    map file— An output file, created by the linker, that shows the memory configuration, section composition, section allocation, symbol definitions and the addresses at which the symbols were defined for your program.

    --

    Follow the user guide of https://www.ti.com/lit/ug/spru186w/spru186w.pdf

    Page no :182

    https://www.ti.com/lit/ug/spru187u/spru187u.pdf

    --

    Sample I2c map file which was generated for PDK example, I2C_BasicExample_C6657_Evm_c66xTestProject.map.

    Similarly, you have to generate for your RBL code. 

     

    ******************************************************************************
                   TMS320C6x Linker PC v8.3.5                      
    ******************************************************************************
    >> Linked Thu Sep  1 15:13:46 2022
    
    OUTPUT FILE NAME:   <I2C_BasicExample_C6657_Evm_c66xTestProject.out>
    ENTRY POINT SYMBOL: "_c_int00"  address: 008480a0
    
    
    MEMORY CONFIGURATION
    
             name            origin    length      used     unused   attr    fill
    ----------------------  --------  ---------  --------  --------  ----  --------
      L2SRAM                00800000   00100000  00057fc2  000a803e  RW X
      MSMCSRAM              0c000000   00100000  00000000  00100000  RW X
      DDR3                  80000000   20000000  04000000  1c000000  RWIX
    
    
    SEGMENT ALLOCATION MAP
    
    run origin  load origin   length   init length attrs members
    ----------  ----------- ---------- ----------- ----- -------
    00800000    00800000    00032000   00000000    rw-
      00800000    00800000    00032000   00000000    rw- systemHeap
    00832000    00832000    0001ec56   0001ec56    r-x
      00832000    00832000    0001b380   0001b380    r-x .text
      0084d380    0084d380    000038d6   000038d6    r-- .const
    00850c58    00850c58    000028a8   00000000    rw-
      00850c58    00850c58    00000028   00000000    rw- .fardata.1
      00850c80    00850c80    00002854   00000000    rw- .far.1
      008534d8    008534d8    00000028   00000000    rw- .fardata.2
    00853500    00853500    000036d0   00000000    rw-
      00853500    00853500    00000ce4   00000000    rw- .far.2
      008541e8    008541e8    00000018   00000000    rw- .fardata.3
      00854200    00854200    00000030   00000000    rw- .far.3
      00854230    00854230    00000050   00000000    rw- .fardata.4
      00854280    00854280    00000030   00000000    rw- .far.4
      008542b0    008542b0    00000050   00000000    rw- .fardata.5
      00854300    00854300    00000030   00000000    rw- .far.5
      00854330    00854330    0000177c   00000000    rw- .fardata.6
      00855ab0    00855ab0    00001000   00000000    rw- .stack
      00856ab0    00856ab0    00000120   00000000    rw- .cio
    00856bd0    00856bd0    00000024   00000024    r--
      00856bd0    00856bd0    00000024   00000024    r-- .switch.1
    00856c00    00856c00    00000264   00000264    r-x
      00856c00    00856c00    00000200   00000200    r-x .vecs
      00856e00    00856e00    00000064   00000064    r-- .switch.2
    00856e64    00856e64    00000040   00000000    rw-
      00856e64    00856e64    0000000c   00000000    rw- .bss
      00856e70    00856e70    00000034   00000000    rw- .neardata
    00856ea8    00856ea8    00001138   00001138    r--
      00856ea8    00856ea8    00001138   00001138    r-- .cinit
    80000000    80000000    04000000   00000000    rw-
      80000000    80000000    04000000   00000000    rw- .fardata:benchmarking
    
    
    SECTION ALLOCATION MAP
    
     output                                  attributes/
    section   page    origin      length       input sections
    --------  ----  ----------  ----------   ----------------
    .stack     0    00855ab0    00001000     UNINITIALIZED
                      00855ab0    00000008     boot.ae66 : boot.oe66 (.stack)
                      00855ab8    00000ff8     --HOLE--
    
    .vecs      0    00856c00    00000200     
                      00856c00    00000200     i2c_test_pe66.oe66 (.vecs)
    
    .bss       0    00856e64    0000000c     UNINITIALIZED
                      00856e64    00000004     (.common:CurrentTaskHookSetId)
                      00856e68    00000004     (.common:MaxTaskHookSetId)
                      00856e6c    00000004     (.common:pElemLog)
    
    .neardata 
    *          0    00856e70    00000034     UNINITIALIZED
                      00856e70    00000018     ti.osal.ae66 : Utils_tirtos.oe66 (.neardata)
                      00856e88    0000000c     ti.utils.profiling.ae66 : profilingHooksC66.oe66 (.neardata)
                      00856e94    00000008     ti.uia.runtime.ae66 : QueueDescriptor.oe66 (.neardata)
                      00856e9c    00000004     ti.drv.i2c.profiling.ae66 : I2C_drv.oe66 (.neardata)
                      00856ea0    00000004     ti.drv.uart.ae66 : UART_drv.oe66 (.neardata)
    
    .rodata    0    00856ea4    00000000     UNINITIALIZED
    
    .cinit     0    00856ea8    00001138     
                      00856ea8    00000f7f     (.cinit..fardata.6.load) [load image, compression = rle]
                      00857e27    00000032     (.cinit..fardata.5.load) [load image, compression = rle]
                      00857e59    0000002d     (.cinit..fardata.4.load) [load image, compression = rle]
                      00857e86    00000025     (.cinit..fardata:benchmarking.load) [load image, compression = rle]
                      00857eab    00000024     (.cinit..fardata.1.load) [load image, compression = rle]
                      00857ecf    00000023     (.cinit..fardata.2.load) [load image, compression = rle]
                      00857ef2    00000014     (.cinit..fardata.3.load) [load image, compression = rle]
                      00857f06    0000000d     (.cinit.systemHeap.load) [load image, compression = rle]
                      00857f13    0000000c     (.cinit..neardata.load) [load image, compression = rle]
                      00857f1f    0000000b     (.cinit..far.1.load) [load image, compression = rle]
                      00857f2a    0000000b     (.cinit..far.2.load) [load image, compression = rle]
                      00857f35    00000009     (.cinit..bss.load) [load image, compression = rle]
                      00857f3e    00000009     (.cinit..far.3.load) [load image, compression = rle]
                      00857f47    00000009     (.cinit..far.4.load) [load image, compression = rle]
                      00857f50    00000009     (.cinit..far.5.load) [load image, compression = rle]
                      00857f59    00000003     --HOLE-- [fill = 0]
                      00857f5c    00000008     (__TI_handler_table)
                      00857f64    00000004     --HOLE-- [fill = 0]
                      00857f68    00000078     (__TI_cinit_table)
    
    .init_array 
    *          0    00800000    00000000     UNINITIALIZED
    
    systemHeap 
    *          0    00800000    00032000     UNINITIALIZED
                      00800000    00032000     i2c_test_pe66.oe66 (systemHeap)
    
    .far.1     0    00850c80    00002854     UNINITIALIZED
                      00850c80    00001800     i2c_test_pe66.oe66 (.far:taskStackSection)
                      00852480    00000b40     ti.osal.ae66 : SemaphoreP_tirtos.oe66 (.far:gOsalSemPTiRtosPool$0)
                      00852fc0    00000500                  : HwiP_tirtos.oe66 (.far:gOsalHwiPTiRtosPool$0)
                      008534c0    00000008     (.common:parmbuf)
                      008534c8    00000004     (.common:ti_sysbios_knl_Task_Instance_State_0_hookEnv__A)
                      008534cc    00000004     --HOLE--
                      008534d0    00000004     (.common:ti_sysbios_knl_Task_Instance_State_1_hookEnv__A)
    
    .far.2     0    00853500    00000ce4     UNINITIALIZED
                      00853500    00000400     (.common:ti_uia_loggers_LoggerStopMode_Instance_State_1_packetArray__A)
                      00853900    00000400     (.common:ti_uia_loggers_LoggerStopMode_Instance_State_2_packetArray__A)
                      00853d00    00000200     (.common:ti_uia_loggers_LoggerStopMode_Instance_State_0_packetArray__A)
                      00853f00    00000158     (.common:UartObjects)
                      00854058    00000140     (.common:__TI_tmpnams)
                      00854198    0000004c     (.common:I2cObjects)
    
    .far.3     0    00854200    00000030     UNINITIALIZED
                      00854200    00000030     (.common:ti_uia_loggers_LoggerStopMode_Instance_State_0_hdr__A)
    
    .far.4     0    00854280    00000030     UNINITIALIZED
                      00854280    00000030     (.common:ti_uia_loggers_LoggerStopMode_Instance_State_1_hdr__A)
    
    .far.5     0    00854300    00000030     UNINITIALIZED
                      00854300    00000030     (.common:ti_uia_loggers_LoggerStopMode_Instance_State_2_hdr__A)
    
    .cio       0    00856ab0    00000120     UNINITIALIZED
                      00856ab0    00000120     rts6600_elf.lib : trgmsg.c.obj (.cio)
    
    .fardata:benchmarking 
    *          0    80000000    04000000     UNINITIALIZED
                      80000000    04000000     ti.utils.profiling.ae66 : profilingHooksC66.oe66 (.fardata:benchmarking)
    
    xdc.meta   0    00800000    00000128     COPY SECTION
                      00800000    00000128     i2c_test_pe66.oe66 (xdc.meta)
    
    .text      0    00832000    0001b380     
                      00832000    00001fe0     rts6600_elf.lib : _printfi.c.obj (.text:__TI_printfi)
                      00833fe0    000008a0     ti.targets.rts6000.ae66 : System.oe66 (.text:xdc_runtime_System_doPrint__I)
                      00834880    00000780     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c64p_Exception_handler__I)
                      00835000    00000780                  : BIOS.obj (.text:ti_sysbios_knl_Semaphore_pend__E)
                      00835780    00000700     ti.drv.uart.ae66 : UART_v0.oe66 (.text:UART_v0_hwiIntFxn$0)
                      00835e80    00000700     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_Module_startup__E)
                      00836580    00000660     main_test.obj (.text)
                      00836be0    00000640     rts6600_elf.lib : _printfi.c.obj (.text:_pconv_a)
                      00837220    00000620     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_allocUnprotected__E)
                      00837840    00000600     rts6600_elf.lib : divd.c.obj (.text:__c6xabi_divd)
                      00837e40    000005e0     ti.drv.uart.ae66 : UART_stdio.oe66 (.text:UART_printf)
                      00838420    000005c0     ti.drv.i2c.profiling.ae66 : I2C_v0.oe66 (.text:I2C_primeTransfer_v0$0)
                      008389e0    000005c0     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_freeUnprotected__E)
                      00838fa0    000004e0                  : BIOS.obj (.text:ti_sysbios_knl_Task_sleep__E)
                      00839480    000004a0     ti.board.ae66 : board_pll.oe66 (.text:init_pll)
                      00839920    00000480     ti.drv.i2c.profiling.ae66 : I2C_v0.oe66 (.text:I2C_open_v0$0)
                      00839da0    00000460     ti.drv.uart.ae66 : UART_v0.oe66 (.text:UART_open_v0$0)
                      0083a200    00000440     ti.drv.i2c.profiling.ae66 : I2C_v0.oe66 (.text:I2C_v0_hwiFxnSlave$0)
                      0083a640    00000440     rts6600_elf.lib : _printfi.c.obj (.text:_pconv_g)
                      0083aa80    00000400     ti.drv.uart.ae66 : UART_v0.oe66 (.text:UART_write2_v0$0)
                      0083ae80    000003e0                      : UART_v0.oe66 (.text:UART_read2_v0$0)
                      0083b260    000003a0     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c66_Cache_startup__I)
                      0083b600    00000360                  : BIOS.obj (.text:ti_sysbios_knl_Semaphore_post__E)
                      0083b960    00000360     i2c_test_pe66.oe66 (.text:xdc_runtime_System_printfExtend__I)
                      0083bcc0    00000340     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_Module_startup__E)
                      0083c000    00000320     ti.drv.i2c.profiling.ae66 : I2C_v0.oe66 (.text:I2C_v0_hwiFxnMaster$0)
                      0083c320    00000320     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_deviceConfig__I)
                      0083c640    00000300                  : BIOS.obj (.text:ti_sysbios_knl_Swi_runLoop__I)
                      0083c940    000002e0                  : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_Instance_init__E)
                      0083cc20    000002e0     i2c_test_pe66.oe66 (.text:ti_uia_loggers_LoggerStopMode_writeMemoryRange__E)
                      0083cf00    000002c0     rts6600_elf.lib : _printfi.c.obj (.text:fcvt)
                      0083d1c0    000002c0     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_knl_Clock_workFunc__E)
                      0083d480    000002a0     ti.board.ae66 : evmC6657_ddr.oe66 (.text:Board_DDR3Init)
                      0083d720    000002a0     rts6600_elf.lib : _printfi.c.obj (.text:_pconv_e)
                      0083d9c0    000002a0     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_reconfig__E)
                      0083dc60    000002a0                  : BIOS.obj (.text:ti_sysbios_knl_Task_postInit__I)
                      0083df00    00000260                  : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_dispatchCore__I)
                      0083e160    00000260                  : BIOS.obj (.text:ti_sysbios_knl_Task_exit__E)
                      0083e3c0    00000260                  : BIOS.obj (.text:ti_sysbios_utils_Load_updateLoads__E)
                      0083e620    00000260     ti.targets.rts6000.ae66 : Startup.oe66 (.text:xdc_runtime_Startup_startMods__I)
                      0083e880    00000240     ti.osal.ae66 : HwiP_tirtos.oe66 (.text:HwiP_create)
                      0083eac0    00000240     rts6600_elf.lib : imath64.c.obj (.text:__c6xabi_divull)
                      0083ed00    00000240     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c64p_EventCombiner_dispatch__E)
                      0083ef40    00000240                  : BIOS.obj (.text:ti_sysbios_family_c64p_Exception_internalHandler__I)
                      0083f180    00000240     ti.targets.rts6000.ae66 : Core-mem.oe66 (.text:xdc_runtime_Core_createObject__I)
                      0083f3c0    00000220     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_knl_Swi_run__I)
                      0083f5e0    00000220                  : BIOS.obj (.text:ti_sysbios_knl_Task_schedule__I)
                      0083f800    00000220                  : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_setPeriodMicroSecs__E)
                      0083fa20    00000220     ti.targets.rts6000.ae66 : Error.oe66 (.text:xdc_runtime_Error_policyDefault__E)
                      0083fc40    00000200     ti.drv.i2c.profiling.ae66 : I2C_v0.oe66 (.text:I2C_transfer_v0$0)
                      0083fe40    00000200     ti.osal.ae66 : SemaphoreP_tirtos.oe66 (.text:SemaphoreP_create)
                      00840040    00000200     ti.drv.uart.ae66 : UART_v0.oe66 (.text:UART_readPolling_v0$0)
                      00840240    00000200     sysbios.ae66 : c64p_Hwi_disp_always.obj (.text:_ti_sysbios_family_c64p_Hwi_dispatchAlways)
                      00840440    00000200                  : BIOS.obj (.text:ti_sysbios_knl_Task_startCore__E)
                      00840640    000001e0     ti.drv.uart.ae66 : UART_stdio.oe66 (.text:UART_convertVal$0)
                      00840820    000001e0     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c64p_EventCombiner_dispatchPlug__E)
                      00840a00    000001e0                  : BIOS.obj (.text:ti_sysbios_gates_GateMutex_enter__E)
                      00840be0    000001e0                  : BIOS.obj (.text:ti_sysbios_utils_Load_idleFxn__E)
                      00840dc0    000001e0     ti.targets.rts6000.ae66 : Text.oe66 (.text:xdc_runtime_Text_putSite__E)
                      00840fa0    000001c0     rts6600_elf.lib : imath40.c.obj (.text:__c6xabi_divul)
                      00841160    000001c0                     : _printfi.c.obj (.text:_ltostr)
                      00841320    000001c0                     : fputc.c.obj (.text:fputc)
                      008414e0    000001c0                     : ldexp.c.obj (.text:ldexp)
                      008416a0    000001c0                     : setvbuf.c.obj (.text:setvbuf)
                      00841860    000001c0     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_dispatch__E)
                      00841a20    000001c0                  : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_getFreq__E)
                      00841be0    000001c0                  : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_start__E)
                      00841da0    000001c0     i2c_test_pe66.oe66 (.text:ti_uia_loggers_LoggerStopMode_writeFinish)
                      00841f60    000001a0     rts6600_elf.lib : hostrename.c.obj (.text:HOSTrename)
                      00842100    000001a0                     : frexp.c.obj (.text:frexp)
                      008422a0    000001a0     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c66_Cache_block__I)
                      00842440    000001a0                  : BIOS.obj (.text:ti_sysbios_family_c66_Cache_getL2InitSize__I)
                      008425e0    000001a0                  : BIOS.obj (.text:ti_sysbios_heaps_HeapBuf_Module_startup__E)
                      00842780    000001a0     ti.targets.rts6000.ae66 : Core-smem.oe66 (.text:xdc_runtime_Core_constructObject__I)
                      00842920    00000180     ti.board.ae66 : board_clock.oe66 (.text:Board_moduleClockInit)
                      00842aa0    00000180     ti.osal.ae66 : RegisterIntr_tirtos.oe66 (.text:Osal_RegisterInterrupt)
                      00842c20    00000180     boot.ae66 : autoinit.oe66 (.text:__TI_auto_init:_auto_init_elf)
                      00842da0    00000180     sysbios.ae66 : c64p_Exception_asm.obj (.text)
                      00842f20    00000180                  : BIOS.obj (.text:ti_sysbios_family_c64p_EventCombiner_disableEvent__E)
                      008430a0    00000180                  : BIOS.obj (.text:ti_sysbios_family_c64p_EventCombiner_enableEvent__E)
                      00843220    00000180     ti.utils.profiling.ae66 : profilingHooksC66.oe66 (.text:ti_utils_entry)
                      008433a0    00000160     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_knl_Swi_post__E)
                      00843500    00000160     ti.targets.rts6000.ae66 : Text.oe66 (.text:xdc_runtime_Text_putMod__E)
                      00843660    00000140     ti.board.ae66 : evmC6657.oe66 (.text:Board_init)
                      008437a0    00000140     ti.osal.ae66 : EventCombinerP_tirtos.oe66 (.text:EventCombinerP_SingleRegisterInt)
                      008438e0    00000140     I2C_soc.obj (.text)
                      00843a20    00000140     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_Module_startup__E)
                      00843b60    00000140                  : BIOS.obj (.text:ti_sysbios_knl_Semaphore_Instance_init__E)
                      00843ca0    00000140                  : BIOS.obj (.text:ti_sysbios_knl_Task_Module_startup__E)
                      00843de0    00000140                  : BIOS.obj (.text:ti_sysbios_knl_Task_blockI__E)
                      00843f20    00000140     ti.uia.loggers.ae66 : LoggerStopMode.oe66 (.text:ti_uia_loggers_LoggerStopMode_initQueueDescriptor__E)
                      00844060    00000140     i2c_test_pe66.oe66 (.text:ti_uia_loggers_LoggerStopMode_write8__E)
                      008441a0    00000140     ti.targets.rts6000.ae66 : Core-mem.oe66 (.text:xdc_runtime_Core_deleteObject__I)
                      008442e0    00000140                             : Text.oe66 (.text:xdc_runtime_Text_putLab__E)
                      00844420    00000120     ti.drv.i2c.profiling.ae66 : I2C_v0.oe66 (.text:I2C_v0_hwiFxn$0)
                      00844540    00000120     rts6600_elf.lib : _printfi.c.obj (.text:_pconv_f)
                      00844660    00000120                     : getdevice.c.obj (.text:getdevice)
                      00844780    00000120     i2c_test_pe66.oe66 (.text:ti_sysbios_BIOS_rtsUnlock__I)
                      008448a0    00000120     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_Instance_init__E)
                      008449c0    00000120                  : BIOS.obj (.text:ti_sysbios_knl_Swi_restoreHwi__E)
                      00844ae0    00000100     ti.board.ae66 : board_utils.oe66 (.text:BOARD_delay)
                      00844be0    00000100     ti.drv.i2c.profiling.ae66 : I2C_v0.oe66 (.text:I2C_close_v0$0)
                      00844ce0    00000100     ti.drv.uart.ae66 : UART_v0.oe66 (.text:UART_read_v0$0)
                      00844de0    00000100                      : UART_v0.oe66 (.text:UART_writePolling_v0$0)
                      00844ee0    00000100                      : UART_v0.oe66 (.text:UART_write_v0$0)
                      00844fe0    00000100     rts6600_elf.lib : fclose.c.obj (.text:__TI_closefile)
                      008450e0    00000100                     : copy_decompress_rle.c.obj (.text:__TI_decompress_rle_core)
                      008451e0    00000100                     : _printfi.c.obj (.text:_mcpy)
                      008452e0    00000100                     : atoi.c.obj (.text:atoi)
                      008453e0    00000100                     : cpy_tbl.c.obj (.text:copy_in)
                      008454e0    00000100                     : fflush.c.obj (.text:fflush)
                      008455e0    00000100                     : fseek.c.obj (.text:fseek)
                      008456e0    00000100     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_Instance_finalize__E)
                      008457e0    00000100                  : BIOS.obj (.text:ti_sysbios_knl_Swi_schedule__I)
                      008458e0    00000100                  : BIOS.obj (.text:ti_sysbios_knl_Task_unblockI__E)
                      008459e0    00000100                  : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_initDevice__I)
                      00845ae0    00000100     ti.uia.loggers.ae66 : LoggerStopMode.oe66 (.text:ti_uia_loggers_LoggerStopMode_Module_startup__E)
                      00845be0    00000100     i2c_test_pe66.oe66 (.text:ti_uia_loggers_LoggerStopMode_write4__E)
                      00845ce0    00000100     ti.uia.runtime.ae66 : QueueDescriptor.oe66 (.text:ti_uia_runtime_QueueDescriptor_addToList__E)
                      00845de0    00000100     ti.targets.rts6000.ae66 : Error.oe66 (.text:xdc_runtime_Error_print__E)
                      00845ee0    00000100                             : Memory.oe66 (.text:xdc_runtime_Memory_alloc__E)
                      00845fe0    00000100                             : Startup.oe66 (.text:xdc_runtime_Startup_exec__E)
                      008460e0    000000e0     rts6600_elf.lib : hostlseek.c.obj (.text:HOSTlseek)
                      008461c0    000000e0                     : hostopen.c.obj (.text:HOSTopen)
                      008462a0    000000e0                     : hostwrite.c.obj (.text:HOSTwrite)
                      00846380    000000e0     ti.drv.i2c.profiling.ae66 : I2C_v0.oe66 (.text:I2C_v0_complete_curr_transfer$0)
                      00846460    000000e0     ti.drv.uart.ae66 : UART_v0.oe66 (.text:UART_close_v0$0)
                      00846540    000000e0                      : UART_v0.oe66 (.text:UART_readCancelNoCB$0)
                      00846620    000000e0     rts6600_elf.lib : _ltoa.c.obj (.text:__TI_ltoa)
                      00846700    000000e0                     : _io_perm.c.obj (.text:__TI_wrt_ok)
                      008467e0    000000e0                     : close.c.obj (.text:close)
                      008468c0    000000e0                     : exit.c.obj (.text:exit)
                      008469a0    000000e0                     : memset.c.obj (.text:memset)
                      00846a80    000000e0     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_alloc__E)
                      00846b60    000000e0                  : BIOS.obj (.text:ti_sysbios_knl_Swi_startup__E)
                      00846c40    000000e0                  : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_startup__E)
                      00846d20    000000e0     i2c_test_pe66.oe66 (.text:ti_uia_loggers_LoggerStopMode_write2__E)
                      00846e00    000000e0     ti.targets.rts6000.ae66 : Text.oe66 (.text:xdc_runtime_Text_visitRope2__I)
                      00846ee0    000000c0     rts6600_elf.lib : hostread.c.obj (.text:HOSTread)
                      00846fa0    000000c0                     : hostunlink.c.obj (.text:HOSTunlink)
                      00847060    000000c0     ti.drv.i2c.profiling.ae66 : I2C_drv.oe66 (.text:I2C_init)
                      00847120    000000c0     ti.osal.ae66 : Utils_tirtos.oe66 (.text:Osal_delay)
                      008471e0    000000c0     ti.drv.uart.ae66 : UART_v0.oe66 (.text:UART_charPut$0)
                      008472a0    000000c0                      : UART_stdio.oe66 (.text:UART_stdioInit)
                      00847360    000000c0                      : UART_v0.oe66 (.text:UART_writeCancelNoCB$0)
                      00847420    000000c0     rts6600_elf.lib : fflush.c.obj (.text:__TI_doflush)
                      008474e0    000000c0                     : divu.asm.obj (.text:__divu)
                      008475a0    000000c0     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_getStats__E)
                      00847660    000000c0                  : BIOS.obj (.text:ti_sysbios_knl_Clock_logTick__E)
                      00847720    000000c0                  : BIOS.obj (.text:ti_sysbios_knl_Task_allBlockedFunction__I)
                      008477e0    000000c0     ti.uia.loggers.ae66 : LoggerStopMode.oe66 (.text:ti_uia_loggers_LoggerStopMode_flush__E)
                      008478a0    000000c0     i2c_test_pe66.oe66 (.text:ti_uia_loggers_LoggerStopMode_write1__E)
                      00847960    000000c0     rts6600_elf.lib : tls.c.obj (.text:tls:init:__TI_tls_init)
                      00847a20    000000c0     ti.targets.rts6000.ae66 : Assert.oe66 (.text:xdc_runtime_Assert_raise__I)
                      00847ae0    000000c0                             : Error.oe66 (.text:xdc_runtime_Error_setX__E)
                      00847ba0    000000a0     rts6600_elf.lib : hostclose.c.obj (.text:HOSTclose)
                      00847c40    000000a0     ti.osal.ae66 : HwiP_tirtos.oe66 (.text:HwiP_delete)
                      00847ce0    000000a0                  : RegisterIntr_tirtos.oe66 (.text:Osal_DeleteInterrupt)
                      00847d80    000000a0                  : SemaphoreP_tirtos.oe66 (.text:SemaphoreP_delete)
                      00847e20    000000a0     ti.drv.uart.ae66 : UART_drv.oe66 (.text:UART_init)
                      00847ec0    000000a0                      : UART_v0.oe66 (.text:UART_v0_callback)
                      00847f60    000000a0     rts6600_elf.lib : fopen.c.obj (.text:__TI_cleanup)
                      00848000    000000a0                     : remu.asm.obj (.text:__remu)
                      008480a0    000000a0     boot.ae66 : boot.oe66 (.text:_c_int00)
                      00848140    000000a0     rts6600_elf.lib : _printfi.c.obj (.text:_ecpy)
                      008481e0    000000a0     sysbios.ae66 : c64p_Hwi_asm.obj (.text:_ti_sysbios_family_c64p_Hwi_plug__E)
                      00848280    000000a0     rts6600_elf.lib : getdevice.c.obj (.text:finddevice)
                      00848320    000000a0                     : memcpy64.asm.obj (.text:memcpy)
                      008483c0    000000a0     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c64p_Exception_Module_startup__E)
                      00848460    000000a0     i2c_test_pe66.oe66 (.text:ti_sysbios_family_c64p_Hwi_construct)
                      00848500    000000a0     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_dispatchC__I)
                      008485a0    000000a0                  : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_getStackInfo__E)
                      00848640    000000a0                  : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_mapSysIntToHostInt__E)
                      008486e0    000000a0                  : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_stop__E)
                      00848780    000000a0     i2c_test_pe66.oe66 (.text:ti_uia_loggers_LoggerStopMode_write0__E)
                      00848820    000000a0     i2c_test_pe66.oe66 (.text:ti_uia_loggers_LoggerStopMode_writeStart)
                      008488c0    000000a0     ti.targets.rts6000.ae66 : Core-params.oe66 (.text:xdc_runtime_Core_assignParams__I)
                      00848960    000000a0                             : System.oe66 (.text:xdc_runtime_System_formatNum__I)
                      00848a00    000000a0                             : System.oe66 (.text:xdc_runtime_System_putchar__I)
                      00848aa0    000000a0                             : Text.oe66 (.text:xdc_runtime_Text_printVisFxn__I)
                      00848b40    000000a0                             : Text.oe66 (.text:xdc_runtime_Text_xprintf__I)
                      00848be0    00000080     ti.osal.ae66 : EventCombinerP_tirtos.oe66 (.text:EventCombinerP_GroupRegisterInt)
                      00848c60    00000080                  : EventCombinerP_tirtos.oe66 (.text:EventCombinerP_getHwi)
                      00848ce0    00000080                  : EventCombinerP_tirtos.oe66 (.text:EventCombinerP_getIntNum)
                      00848d60    00000080     ti.drv.i2c.profiling.ae66 : I2C_drv.oe66 (.text:I2C_open)
                      00848de0    00000080                               : I2C_drv.oe66 (.text:I2C_transfer)
                      00848e60    00000080     ti.osal.ae66 : MuxIntcP_tirtos.oe66 (.text:MuxIntcP_create)
                      00848ee0    00000080     ti.csl.ae66 : uart.oe66 (.text:UART_charPut_v0)
                      00848f60    00000080                 : uart.oe66 (.text:UART_fIFOConfig_v0)
                      00848fe0    00000080     rts6600_elf.lib : trgmsg.c.obj (.text:__TI_readmsg)
                      00849060    00000080                     : llshift.c.obj (.text:__c6xabi_llshl)
                      008490e0    00000080     sysbios.ae66 : c62_TaskSupport_asm.obj (.text:_ti_sysbios_family_c62_TaskSupport_swap__E)
                      00849160    00000080     ti.utils.profiling.ae66 : profilingHooksC66.oe66 (.text:empty_fn)
                      008491e0    00000080     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c66_Cache_invL1pAll__E)
                      00849260    00000080                  : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_getEventId__E)
                      008492e0    00000080                  : BIOS.obj (.text:ti_sysbios_hal_Hwi_checkStack)
                      00849360    00000080                  : BIOS.obj (.text:ti_sysbios_hal_Hwi_initStack)
                      008493e0    00000080                  : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_init__I)
                      00849460    00000080                  : BIOS.obj (.text:ti_sysbios_knl_Idle_run__E)
                      008494e0    00000080                  : BIOS.obj (.text:ti_sysbios_knl_Semaphore_pendTimeout__I)
                      00849560    00000080     i2c_test_pe66.oe66 (.text:ti_sysbios_rts_MemAlloc_alloc)
                      008495e0    00000080     rts6600_elf.lib : unlink.c.obj (.text:unlink)
                      00849660    00000080     ti.targets.rts6000.ae66 : Core-label.oe66 (.text:xdc_runtime_Core_assignLabel__I)
                      008496e0    00000080                             : SysStd.oe66 (.text:xdc_runtime_SysStd_abort__E)
                      00849760    00000080                             : System.oe66 (.text:xdc_runtime_System_atexit__E)
                      008497e0    00000080                             : System.oe66 (.text:xdc_runtime_System_avprintf__E)
                      00849860    00000080                             : System.oe66 (.text:xdc_runtime_System_processAtExit__E)
                      008498e0    00000080                             : System.oe66 (.text:xdc_runtime_System_vprintf__E)
                      00849960    00000060     ti.board.ae66 : board_pll.oe66 (.text:Board_PLLInit)
                      008499c0    00000060     ti.drv.i2c.profiling.ae66 : I2C_drv.oe66 (.text:I2C_Params_init)
                      00849a20    00000060                               : I2C_drv.oe66 (.text:I2C_close)
                      00849a80    00000060                               : I2C_drv.oe66 (.text:I2C_transactionInit)
                      00849ae0    00000060                               : I2C_v0.oe66 (.text:I2C_transfer_Callback_v0$0)
                      00849b40    00000060     ti.osal.ae66 : RegisterIntr_tirtos.oe66 (.text:Osal_ClearInterrupt)
                      00849ba0    00000060                  : Utils_tirtos.oe66 (.text:Osal_getHwAttrs)
                      00849c00    00000060                  : Utils_tirtos.oe66 (.text:Osal_getThreadType)
                      00849c60    00000060                  : SemaphoreP_tirtos.oe66 (.text:SemaphoreP_Params_init)
                      00849cc0    00000060                  : SemaphoreP_tirtos.oe66 (.text:SemaphoreP_pend)
                      00849d20    00000060     ti.csl.ae66 : uart.oe66 (.text:UART_divisorLatchWrite_v0)
                      00849d80    00000060                 : uart.oe66 (.text:UART_divisorValCompute_v0)
                      00849de0    00000060                 : uart.oe66 (.text:UART_fifoWait_v0)
                      00849e40    00000060                 : uart.oe66 (.text:UART_lineCharacConfig_v0)
                      00849ea0    00000060     ti.drv.uart.ae66 : UART_v0.oe66 (.text:UART_readCancel_v0$0)
                      00849f00    00000060                      : UART_v0.oe66 (.text:UART_writeCancel_v0$0)
                      00849f60    00000060     rts6600_elf.lib : frcmpyd_div.c.obj (.text:__TI_frcmpyd_div)
                      00849fc0    00000060                     : trgmsg.c.obj (.text:__TI_writemsg)
                      0084a020    00000060                     : llshift.c.obj (.text:__c6xabi_llshru)
                      0084a080    00000060                     : imath64.c.obj (.text:_subcull)
                      0084a0e0    00000060     sysbios.ae66 : c64p_Hwi_asm_switch.obj (.text:_ti_sysbios_family_c64p_Hwi_switchAndDispatch__I)
                      0084a140    00000060                  : c64p_Hwi_asm_switch.obj (.text:_ti_sysbios_family_xxx_Hwi_switchAndRunFunc)
                      0084a1a0    00000060     rts6600_elf.lib : lseek.c.obj (.text:lseek)
                      0084a200    00000060                     : memccpy.c.obj (.text:memccpy)
                      0084a260    00000060     ti.utils.profiling.ae66 : profilingHooksC66.oe66 (.text:mySwitch)
                      0084a2c0    00000060     rts6600_elf.lib : sprintf.c.obj (.text:sprintf)
                      0084a320    00000060     i2c_test_pe66.oe66 (.text:ti_sysbios_BIOS_atExitFunc__I)
                      0084a380    00000060     i2c_test_pe66.oe66 (.text:ti_sysbios_BIOS_errorRaiseHook__I)
                      0084a3e0    00000060     i2c_test_pe66.oe66 (.text:ti_sysbios_BIOS_rtsLock__I)
                      0084a440    00000060     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c62_TaskSupport_start__E)
                      0084a4a0    00000060                  : BIOS.obj (.text:ti_sysbios_family_c64p_EventCombiner_unused__E)
                      0084a500    00000060                  : BIOS.obj (.text:ti_sysbios_family_c66_Cache_Module_startup__E)
                      0084a560    00000060                  : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_unused__E)
                      0084a5c0    00000060     i2c_test_pe66.oe66 (.text:ti_sysbios_gates_GateHwi_Object__create__S)
                      0084a620    00000060     i2c_test_pe66.oe66 (.text:ti_sysbios_gates_GateMutex_Object__create__S)
                      0084a680    00000060     i2c_test_pe66.oe66 (.text:ti_sysbios_heaps_HeapMem_Object__create__S)
                      0084a6e0    00000060     i2c_test_pe66.oe66 (.text:ti_sysbios_heaps_HeapMem_Object__get__S)
                      0084a740    00000060     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_free__E)
                      0084a7a0    00000060                  : BIOS.obj (.text:ti_sysbios_knl_Clock_Module_startup__E)
                      0084a800    00000060     i2c_test_pe66.oe66 (.text:ti_sysbios_knl_Clock_doTick__I)
                      0084a860    00000060     i2c_test_pe66.oe66 (.text:ti_sysbios_knl_Queue_construct)
                      0084a8c0    00000060     i2c_test_pe66.oe66 (.text:ti_sysbios_knl_Semaphore_construct)
                      0084a920    00000060     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_knl_Swi_Module_startup__E)
                      0084a980    00000060     i2c_test_pe66.oe66 (.text:ti_sysbios_knl_Task_Object__get__S)
                      0084a9e0    00000060     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_knl_Task_enter__I)
                      0084aa40    00000060     i2c_test_pe66.oe66 (.text:ti_uia_loggers_LoggerStopMode_Object__create__S)
                      0084aaa0    00000060     i2c_test_pe66.oe66 (.text:ti_uia_loggers_LoggerStopMode_Object__get__S)
                      0084ab00    00000060     ti.uia.loggers.ae66 : LoggerStopMode.oe66 (.text:ti_uia_loggers_LoggerStopMode_initBuffer__I)
                      0084ab60    00000060                         : LoggerStopMode.oe66 (.text:ti_uia_loggers_LoggerStopMode_reset__E)
                      0084abc0    00000060     ti.utils.profiling.ae66 : profilingHooksC66.oe66 (.text:ti_utils_exit)
                      0084ac20    00000060     ti.drv.uart.ae66 : UART_stdio.oe66 (.text:uart_console_putc$0)
                      0084ac80    00000060     rts6600_elf.lib : write.c.obj (.text:write)
                      0084ace0    00000060     ti.targets.rts6000.ae66 : Memory.oe66 (.text:xdc_runtime_Memory_valloc__E)
                      0084ad40    00000060                             : Text.oe66 (.text:xdc_runtime_Text_cordText__E)
                      0084ada0    00000040     ti.csl.ae66 : i2c.oe66 (.text:I2CMasterInitExpClk)
                      0084ade0    00000040     ti.drv.i2c.profiling.ae66 : I2C_v0.oe66 (.text:I2C_init_v0$0)
                      0084ae20    00000040                               : I2C_v0.oe66 (.text:I2C_v0_control$0)
                      0084ae60    00000040     ti.osal.ae66 : Utils_tirtos.oe66 (.text:Osal_DebugP_assert)
                      0084aea0    00000040                  : RegisterIntr_tirtos.oe66 (.text:Osal_DisableInterrupt)
                      0084aee0    00000040                  : RegisterIntr_tirtos.oe66 (.text:Osal_EnableInterrupt)
                      0084af20    00000040                  : RegisterIntr_tirtos.oe66 (.text:Osal_RegisterInterrupt_initParams)
                      0084af60    00000040                  : SemaphoreP_tirtos.oe66 (.text:SemaphoreP_post)
                      0084afa0    00000040     ti.csl.ae66 : uart.oe66 (.text:UART_breakCtl_v0)
                      0084afe0    00000040                 : uart.oe66 (.text:UART_charGetNonBlocking2_v0)
                      0084b020    00000040                 : uart.oe66 (.text:UART_intDisable_v0)
                      0084b060    00000040                 : uart.oe66 (.text:UART_intEnable_v0)
                      0084b0a0    00000040                 : uart.oe66 (.text:UART_intIdentityGet_v0)
                      0084b0e0    00000040                 : uart.oe66 (.text:UART_loopbackModeControl_v0)
                      0084b120    00000040     ti.drv.uart.ae66 : UART_drv.oe66 (.text:UART_open)
                      0084b160    00000040     ti.csl.ae66 : uart.oe66 (.text:UART_readLineStatus_v0)
                      0084b1a0    00000040     rts6600_elf.lib : isinf.c.obj (.text:__c6xabi_isinf)
                      0084b1e0    00000040                     : _printfi.c.obj (.text:__c6xabi_isnan)
                      0084b220    00000040                     : strasg.asm.obj (.text:__strasgi_64plus)
                      0084b260    00000040                     : args_main.c.obj (.text:_args_main)
                      0084b2a0    00000040                     : sprintf.c.obj (.text:_outs)
                      0084b2e0    00000040     sysbios.ae66 : c62_TaskSupport_asm.obj (.text:_ti_sysbios_family_c62_TaskSupport_buildTaskStack)
                      0084b320    00000040     i2c_test_pe66.oe66 (.text:free)
                      0084b360    00000040     i2c_test_pe66.oe66 (.text:ti_sysbios_BIOS_exitFunc__I)
                      0084b3a0    00000040     i2c_test_pe66.oe66 (.text:ti_sysbios_BIOS_registerRTSLock__I)
                      0084b3e0    00000040     i2c_test_pe66.oe66 (.text:ti_sysbios_BIOS_removeRTSLock__I)
                      0084b420    00000040     i2c_test_pe66.oe66 (.text:ti_sysbios_BIOS_startFunc__I)
                      0084b460    00000040     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c64p_EventCombiner_Module_startup__E)
                      0084b4a0    00000040     i2c_test_pe66.oe66 (.text:ti_sysbios_family_c64p_Hwi_Module__startupDone__F)
                      0084b4e0    00000040     i2c_test_pe66.oe66 (.text:ti_sysbios_family_c64p_Hwi_Params__init__S)
                      0084b520    00000040     i2c_test_pe66.oe66 (.text:ti_sysbios_family_c64p_Hwi_destruct)
                      0084b560    00000040     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_disableInterrupt__E)
                      0084b5a0    00000040                  : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_enableInterrupt__E)
                      0084b5e0    00000040                  : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_getEventId__E)
                      0084b620    00000040                  : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_dispatchPlug__E)
                      0084b660    00000040     i2c_test_pe66.oe66 (.text:ti_sysbios_gates_GateHwi_Handle__label__S)
                      0084b6a0    00000040     i2c_test_pe66.oe66 (.text:ti_sysbios_gates_GateHwi_Object__delete__S)
                      0084b6e0    00000040     i2c_test_pe66.oe66 (.text:ti_sysbios_gates_GateMutex_Handle__label__S)
                      0084b720    00000040     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_gates_GateMutex_Instance_init__E)
                      0084b760    00000040     i2c_test_pe66.oe66 (.text:ti_sysbios_gates_GateMutex_Object__delete__S)
                      0084b7a0    00000040     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_gates_GateMutex_leave__E)
                      0084b7e0    00000040     i2c_test_pe66.oe66 (.text:ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E)
                      0084b820    00000040     i2c_test_pe66.oe66 (.text:ti_sysbios_heaps_HeapBuf_Object__get__S)
                      0084b860    00000040     i2c_test_pe66.oe66 (.text:ti_sysbios_heaps_HeapMem_Handle__label__S)
                      0084b8a0    00000040     i2c_test_pe66.oe66 (.text:ti_sysbios_heaps_HeapMem_Object__delete__S)
                      0084b8e0    00000040     i2c_test_pe66.oe66 (.text:ti_sysbios_knl_Clock_Module_State_clockQ)
                      0084b920    00000040     i2c_test_pe66.oe66 (.text:ti_sysbios_knl_Queue_Object__get__S)
                      0084b960    00000040     i2c_test_pe66.oe66 (.text:ti_sysbios_knl_Queue_destruct)
                      0084b9a0    00000040     i2c_test_pe66.oe66 (.text:ti_sysbios_knl_Semaphore_Params__init__S)
                      0084b9e0    00000040     i2c_test_pe66.oe66 (.text:ti_sysbios_knl_Semaphore_destruct)
                      0084ba20    00000040     i2c_test_pe66.oe66 (.text:ti_sysbios_knl_Swi_Object__get__S)
                      0084ba60    00000040     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_knl_Task_sleepTimeout__I)
                      0084baa0    00000040     i2c_test_pe66.oe66 (.text:ti_sysbios_timers_timer64_Timer_Module__startupDone__F)
                      0084bae0    00000040     i2c_test_pe66.oe66 (.text:ti_uia_loggers_LoggerStopMode_Handle__label__S)
                      0084bb20    00000040     ti.uia.loggers.ae66 : LoggerStopMode.oe66 (.text:ti_uia_loggers_LoggerStopMode_Instance_init__E)
                      0084bb60    00000040     i2c_test_pe66.oe66 (.text:ti_uia_loggers_LoggerStopMode_Object__delete__S)
                      0084bba0    00000040     ti.uia.loggers.ae66 : LoggerStopMode.oe66 (.text:ti_uia_loggers_LoggerStopMode_disable__E)
                      0084bbe0    00000040                         : LoggerStopMode.oe66 (.text:ti_uia_loggers_LoggerStopMode_enable__E)
                      0084bc20    00000040     i2c_test_pe66.oe66 (.text:ti_uia_loggers_LoggerStopMode_fillInTimestamp)
                      0084bc60    00000040     rts6600_elf.lib : wcslen.c.obj (.text:wcslen)
                      0084bca0    00000040     ti.targets.rts6000.ae66 : Error.oe66 (.text:xdc_runtime_Error_check__E)
                      0084bce0    00000040                             : Error.oe66 (.text:xdc_runtime_Error_init__E)
                      0084bd20    00000040     i2c_test_pe66.oe66 (.text:xdc_runtime_IHeap_alloc)
                      0084bd60    00000040     i2c_test_pe66.oe66 (.text:xdc_runtime_IHeap_free)
                      0084bda0    00000040     ti.targets.rts6000.ae66 : Registry.oe66 (.text:xdc_runtime_Registry_findById__E)
                      0084bde0    00000040     i2c_test_pe66.oe66 (.text:xdc_runtime_Startup_exec__I)
                      0084be20    00000040     ti.targets.rts6000.ae66 : System.oe66 (.text:xdc_runtime_System_abort__E)
                      0084be60    00000040     i2c_test_pe66.oe66 (.text:xdc_runtime_System_aprintf__E)
                      0084bea0    00000040     ti.targets.rts6000.ae66 : System.oe66 (.text:xdc_runtime_System_exit__E)
                      0084bee0    00000040     i2c_test_pe66.oe66 (.text:xdc_runtime_System_printf__E)
                      0084bf20    00000040     i2c_test_pe66.oe66 (.text:xdc_runtime_Text_visitRope__I)
                      0084bf60    00000040     ti.board.ae66 : evmC6657_ddr.oe66 (.text:xmc_add_emif_cfg_region$0)
                      0084bfa0    00000020                   : evmC6657_clock.oe66 (.text:Board_getNumPSCconfigs)
                      0084bfc0    00000020                   : evmC6657_pll.oe66 (.text:Board_getNumPllcConfigs)
                      0084bfe0    00000020                   : evmC6657_pinmux.oe66 (.text:Board_pinmuxConfig)
                      0084c000    00000020                   : board_lld_init.oe66 (.text:Board_uartStdioInit)
                      0084c020    00000020                   : board_utils.oe66 (.text:CSL_chipWriteTSCL$0)
                      0084c040    00000020     ti.osal.ae66 : EventCombinerP_tirtos.oe66 (.text:EventCombinerP_disableEvent)
                      0084c060    00000020                  : EventCombinerP_tirtos.oe66 (.text:EventCombinerP_dispatchPlug)
                      0084c080    00000020                  : EventCombinerP_tirtos.oe66 (.text:EventCombinerP_enableEvent)
                      0084c0a0    00000020                  : HwiP_tirtos.oe66 (.text:HwiP_Params_init)
                      0084c0c0    00000020                  : HwiP_tirtos.oe66 (.text:HwiP_clearInterrupt)
                      0084c0e0    00000020                  : HwiP_tirtos.oe66 (.text:HwiP_disable)
                      0084c100    00000020                  : HwiP_tirtos.oe66 (.text:HwiP_disableInterrupt)
                      0084c120    00000020                  : HwiP_tirtos.oe66 (.text:HwiP_enableInterrupt)
                      0084c140    00000020                  : HwiP_tirtos.oe66 (.text:HwiP_restore)
                      0084c160    00000020     ti.csl.ae66 : i2c.oe66 (.text:I2CIntVectGet)
                      0084c180    00000020                 : i2c.oe66 (.text:I2CMasterBusBusy)
                      0084c1a0    00000020                 : i2c.oe66 (.text:I2CMasterControl)
                      0084c1c0    00000020                 : i2c.oe66 (.text:I2CMasterDataGet)
                      0084c1e0    00000020                 : i2c.oe66 (.text:I2CMasterDataPut)
                      0084c200    00000020                 : i2c.oe66 (.text:I2CMasterDisable)
                      0084c220    00000020                 : i2c.oe66 (.text:I2CMasterEnable)
                      0084c240    00000020                 : i2c.oe66 (.text:I2CMasterErr)
                      0084c260    00000020                 : i2c.oe66 (.text:I2CMasterIntClearEx)
                      0084c280    00000020                 : i2c.oe66 (.text:I2CMasterIntDisableEx)
                      0084c2a0    00000020                 : i2c.oe66 (.text:I2CMasterIntEnableEx)
                      0084c2c0    00000020                 : i2c.oe66 (.text:I2CMasterIntStatusEx)
                      0084c2e0    00000020                 : i2c.oe66 (.text:I2CMasterSlaveAddrSet)
                      0084c300    00000020                 : i2c.oe66 (.text:I2CMasterStart)
                      0084c320    00000020                 : i2c.oe66 (.text:I2CMasterStop)
                      0084c340    00000020                 : i2c.oe66 (.text:I2CModeControl)
                      0084c360    00000020                 : i2c.oe66 (.text:I2COwnAddressSet)
                      0084c380    00000020                 : i2c.oe66 (.text:I2CSetDataCount)
                      0084c3a0    00000020                 : i2c.oe66 (.text:I2CSlaveEnable)
                      0084c3c0    00000020     ti.osal.ae66 : MuxIntcP_tirtos.oe66 (.text:MuxIntcP_clearInEvent)
                      0084c3e0    00000020                  : MuxIntcP_tirtos.oe66 (.text:MuxIntcP_disableOutEvent)
                      0084c400    00000020                  : MuxIntcP_tirtos.oe66 (.text:MuxIntcP_enableOutEvent)
                      0084c420    00000020     ti.utils.profiling.ae66 : profilingHooksC66.oe66 (.text:TaskRegisterId)
                      0084c440    00000020     ti.drv.uart.ae66 : UART_drv.oe66 (.text:UART_Params_init)
                      0084c460    00000020                      : UART_v0.oe66 (.text:UART_control_v0$0)
                      0084c480    00000020     ti.csl.ae66 : uart.oe66 (.text:UART_divisorLatchDisable_v0)
                      0084c4a0    00000020                 : uart.oe66 (.text:UART_fIFOCharPut_v0)
                      0084c4c0    00000020                 : uart.oe66 (.text:UART_fifoEmpty_v0)
                      0084c4e0    00000020     ti.drv.uart.ae66 : UART_v0.oe66 (.text:UART_init_v0$0)
                      0084c500    00000020     ti.csl.ae66 : uart.oe66 (.text:UART_operatingModeSelect_v0)
                      0084c520    00000020                 : uart.oe66 (.text:UART_pwremuConfig_v0)
                      0084c540    00000020     ti.drv.uart.ae66 : UART_drv.oe66 (.text:UART_write)
                      0084c560    00000020                      : UART_drv.oe66 (.text:UART_writePolling)
                      0084c580    00000020     rts6600_elf.lib : errno.c.obj (.text:__c6xabi_errno_addr)
                      0084c5a0    00000020                     : push.asm.obj (.text:__pop_rts)
                      0084c5c0    00000020                     : push.asm.obj (.text:__push_rts)
                      0084c5e0    00000020                     : _lock.c.obj (.text:_nop)
                      0084c600    00000020                     : sprintf.c.obj (.text:_outc)
                      0084c620    00000020                     : _lock.c.obj (.text:_register_lock)
                      0084c640    00000020                     : _data_synch.c.obj (.text:_register_synch_api)
                      0084c660    00000020                     : _lock.c.obj (.text:_register_unlock)
                      0084c680    00000020                     : signbit.c.obj (.text:_signbit)
                      0084c6a0    00000020                     : startup.c.obj (.text:_system_post_cinit)
                      0084c6c0    00000020     sysbios.ae66 : c62_TaskSupport_asm.obj (.text:_ti_sysbios_family_c62_TaskSupport_glue)
                      0084c6e0    00000020     rts6600_elf.lib : exit.c.obj (.text:abort)
                      0084c700    00000020                     : copy_decompress_none.c.obj (.text:decompress:none:__TI_decompress_none)
                      0084c720    00000020                     : copy_decompress_rle.c.obj (.text:decompress:rle24:__TI_decompress_rle24)
                      0084c740    00000020     i2c_test_pe66.oe66 (.text:malloc)
                      0084c760    00000020     ti.board.ae66 : board_pll.oe66 (.text:pllc_delay$0)
                      0084c780    00000020     rts6600_elf.lib : fputc.c.obj (.text:putchar)
                      0084c7a0    00000020     i2c_test_pe66.oe66 (.text:ti_sysbios_BIOS_RtsGateProxy_enter__E)
                      0084c7c0    00000020     i2c_test_pe66.oe66 (.text:ti_sysbios_BIOS_RtsGateProxy_leave__E)
                      0084c7e0    00000020     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_BIOS_getCpuFreq__E)
                      0084c800    00000020                  : BIOS.obj (.text:ti_sysbios_BIOS_getThreadType__E)
                      0084c820    00000020                  : BIOS.obj (.text:ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E)
                      0084c840    00000020     i2c_test_pe66.oe66 (.text:ti_sysbios_BIOS_nullFunc__I)
                      0084c860    00000020     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_BIOS_setThreadType__E)
                      0084c880    00000020                  : BIOS.obj (.text:ti_sysbios_BIOS_start__E)
                      0084c8a0    00000020     i2c_test_pe66.oe66 (.text:ti_sysbios_family_c62_TaskSupport_Module__startupDone__S)
                      0084c8c0    00000020     i2c_test_pe66.oe66 (.text:ti_sysbios_family_c64p_Hwi_Module__startupDone__S)
                      0084c8e0    00000020     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_clearInterrupt__E)
                      0084c900    00000020                  : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_getFunc__E)
                      0084c920    00000020                  : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_getHandle__E)
                      0084c940    00000020                  : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_startup__E)
                      0084c960    00000020                  : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_switchFromBootStack__E)
                      0084c980    00000020                  : BIOS.obj (.text:ti_sysbios_family_c64p_Hwi_unPluggedInterrupt__I)
                      0084c9a0    00000020                  : BIOS.obj (.text:ti_sysbios_family_c64p_TimestampProvider_Module_startup__E)
                      0084c9c0    00000020                  : BIOS.obj (.text:ti_sysbios_family_c64p_TimestampProvider_get32__E)
                      0084c9e0    00000020                  : BIOS.obj (.text:ti_sysbios_family_c64p_tci6488_TimerSupport_enable__E)
                      0084ca00    00000020                  : BIOS.obj (.text:ti_sysbios_family_c66_Cache_RTSSynchInv__I)
                      0084ca20    00000020                  : BIOS.obj (.text:ti_sysbios_family_c66_Cache_RTSSynchWbInv__I)
                      0084ca40    00000020                  : BIOS.obj (.text:ti_sysbios_family_c66_Cache_RTSSynchWb__I)
                      0084ca60    00000020                  : BIOS.obj (.text:ti_sysbios_family_c66_Cache_wait__E)
                      0084ca80    00000020                  : BIOS.obj (.text:ti_sysbios_family_c66_Cache_wbInv__E)
                      0084caa0    00000020                  : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_clearSysInt__E)
                      0084cac0    00000020                  : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_disableHostInt__E)
                      0084cae0    00000020                  : BIOS.obj (.text:ti_sysbios_family_c66_tci66xx_CpIntc_enableHostInt__E)
                      0084cb00    00000020                  : BIOS.obj (.text:ti_sysbios_gates_GateHwi_Instance_init__E)
                      0084cb20    00000020                  : BIOS.obj (.text:ti_sysbios_gates_GateHwi_enter__E)
                      0084cb40    00000020                  : BIOS.obj (.text:ti_sysbios_gates_GateHwi_leave__E)
                      0084cb60    00000020                  : BIOS.obj (.text:ti_sysbios_gates_GateHwi_query__E)
                      0084cb80    00000020                  : BIOS.obj (.text:ti_sysbios_gates_GateMutex_Instance_finalize__E)
                      0084cba0    00000020                  : BIOS.obj (.text:ti_sysbios_gates_GateMutex_query__E)
                      0084cbc0    00000020     i2c_test_pe66.oe66 (.text:ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S)
                      0084cbe0    00000020     i2c_test_pe66.oe66 (.text:ti_sysbios_hal_Hwi_HwiProxy_clearInterrupt__E)
                      0084cc00    00000020     i2c_test_pe66.oe66 (.text:ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E)
                      0084cc20    00000020     i2c_test_pe66.oe66 (.text:ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E)
                      0084cc40    00000020     i2c_test_pe66.oe66 (.text:ti_sysbios_hal_Hwi_HwiProxy_startup__E)
                      0084cc60    00000020     i2c_test_pe66.oe66 (.text:ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E)
                      0084cc80    00000020     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_hal_Hwi_Module_startup__E)
                      0084cca0    00000020     i2c_test_pe66.oe66 (.text:ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E)
                      0084ccc0    00000020     i2c_test_pe66.oe66 (.text:ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E)
                      0084cce0    00000020     i2c_test_pe66.oe66 (.text:ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E)
                      0084cd00    00000020     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_heaps_HeapMem_isBlocking__E)
                      0084cd20    00000020     i2c_test_pe66.oe66 (.text:ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S)
                      0084cd40    00000020     i2c_test_pe66.oe66 (.text:ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E)
                      0084cd60    00000020     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_knl_Idle_loop__E)
                      0084cd80    00000020                  : BIOS.obj (.text:ti_sysbios_knl_Queue_Instance_init__E)
                      0084cda0    00000020                  : BIOS.obj (.text:ti_sysbios_knl_Queue_empty__E)
                      0084cdc0    00000020                  : BIOS.obj (.text:ti_sysbios_knl_Semaphore_Instance_finalize__E)
                      0084cde0    00000020                  : BIOS.obj (.text:ti_sysbios_knl_Swi_disable__E)
                      0084ce00    00000020     i2c_test_pe66.oe66 (.text:ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S)
                      0084ce20    00000020     i2c_test_pe66.oe66 (.text:ti_sysbios_knl_Task_SupportProxy_start__E)
                      0084ce40    00000020     i2c_test_pe66.oe66 (.text:ti_sysbios_knl_Task_SupportProxy_swap__E)
                      0084ce60    00000020     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_knl_Task_disable__E)
                      0084ce80    00000020                  : BIOS.obj (.text:ti_sysbios_knl_Task_startup__E)
                      0084cea0    00000020     i2c_test_pe66.oe66 (.text:ti_sysbios_timers_timer64_Timer_Module__startupDone__S)
                      0084cec0    00000020     i2c_test_pe66.oe66 (.text:ti_sysbios_timers_timer64_Timer_TimerSupportProxy_enable__E)
                      0084cee0    00000020     sysbios.ae66 : BIOS.obj (.text:ti_sysbios_timers_timer64_Timer_getMaxTicks__E)
                      0084cf00    00000020     i2c_test_pe66.oe66 (.text:ti_sysbios_utils_Load_update__E)
                      0084cf20    00000020     ti.uia.loggers.ae66 : LoggerStopMode.oe66 (.text:ti_uia_loggers_LoggerStopMode_getContents__E)
                      0084cf40    00000020     i2c_test_pe66.oe66 (.text:ti_uia_loggers_LoggerStopMode_getFilterLevel__E)
                      0084cf60    00000020     ti.uia.loggers.ae66 : LoggerStopMode.oe66 (.text:ti_uia_loggers_LoggerStopMode_getInstanceId__E)
                      0084cf80    00000020                         : LoggerStopMode.oe66 (.text:ti_uia_loggers_LoggerStopMode_getMaxLength__E)
                      0084cfa0    00000020                         : LoggerStopMode.oe66 (.text:ti_uia_loggers_LoggerStopMode_getPriority__E)
                      0084cfc0    00000020                         : LoggerStopMode.oe66 (.text:ti_uia_loggers_LoggerStopMode_getTransferType__E)
                      0084cfe0    00000020                         : LoggerStopMode.oe66 (.text:ti_uia_loggers_LoggerStopMode_isEmpty__E)
                      0084d000    00000020     i2c_test_pe66.oe66 (.text:ti_uia_loggers_LoggerStopMode_setFilterLevel__E)
                      0084d020    00000020     ti.uia.loggers.ae66 : LoggerStopMode.oe66 (.text:ti_uia_loggers_LoggerStopMode_setPriority__E)
                      0084d040    00000020     i2c_test_pe66.oe66 (.text:xdc_iargToPtr)
                      0084d060    00000020     ti.targets.rts6000.ae66 : Error.oe66 (.text:xdc_runtime_Error_getSite__E)
                      0084d080    00000020                             : Error.oe66 (.text:xdc_runtime_Error_raiseX__E)
                      0084d0a0    00000020                             : Gate.oe66 (.text:xdc_runtime_Gate_enterSystem__E)
                      0084d0c0    00000020                             : Gate.oe66 (.text:xdc_runtime_Gate_leaveSystem__E)
                      0084d0e0    00000020     i2c_test_pe66.oe66 (.text:xdc_runtime_Memory_HeapProxy_alloc__E)
                      0084d100    00000020     i2c_test_pe66.oe66 (.text:xdc_runtime_Memory_HeapProxy_free__E)
                      0084d120    00000020     ti.targets.rts6000.ae66 : Memory.oe66 (.text:xdc_runtime_Memory_calloc__E)
                      0084d140    00000020                             : Memory.oe66 (.text:xdc_runtime_Memory_free__E)
                      0084d160    00000020                             : Memory.oe66 (.text:xdc_runtime_Memory_getMaxDefaultTypeAlign__E)
                      0084d180    00000020     i2c_test_pe66.oe66 (.text:xdc_runtime_Startup_reset__I)
                      0084d1a0    00000020     ti.targets.rts6000.ae66 : Startup.oe66 (.text:xdc_runtime_Startup_rtsDone__E)
                      0084d1c0    00000020                             : SysStd.oe66 (.text:xdc_runtime_SysStd_exit__E)
                      0084d1e0    00000020                             : SysStd.oe66 (.text:xdc_runtime_SysStd_putch__E)
                      0084d200    00000020                             : SysStd.oe66 (.text:xdc_runtime_SysStd_ready__E)
                      0084d220    00000020     i2c_test_pe66.oe66 (.text:xdc_runtime_System_Module_GateProxy_enter__E)
                      0084d240    00000020     i2c_test_pe66.oe66 (.text:xdc_runtime_System_Module_GateProxy_leave__E)
                      0084d260    00000020     ti.targets.rts6000.ae66 : System.oe66 (.text:xdc_runtime_System_Module_startup__E)
                      0084d280    00000020     i2c_test_pe66.oe66 (.text:xdc_runtime_System_SupportProxy_abort__E)
                      0084d2a0    00000020     i2c_test_pe66.oe66 (.text:xdc_runtime_System_SupportProxy_exit__E)
                      0084d2c0    00000020     i2c_test_pe66.oe66 (.text:xdc_runtime_System_SupportProxy_putch__E)
                      0084d2e0    00000020     i2c_test_pe66.oe66 (.text:xdc_runtime_System_SupportProxy_ready__E)
                      0084d300    00000020     ti.targets.rts6000.ae66 : System.oe66 (.text:xdc_runtime_System_vsnprintf__E)
                      0084d320    00000020                             : Text.oe66 (.text:xdc_runtime_Text_ropeText__E)
                      0084d340    00000020     i2c_test_pe66.oe66 (.text:xdc_runtime_Timestamp_SupportProxy_get32__E)
                      0084d360    00000020     i2c_test_pe66.oe66 (.text:xdc_runtime_Timestamp_SupportProxy_getFreq__E)
    
    .const     0    0084d380    000038d6     
                      0084d380    000020e1     i2c_test_pe66.oe66 (.const:xdc_runtime_Text_charTab__A)
                      0084f461    00000001     i2c_test_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_localTimerBaseId__C)
                      0084f462    00000002     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_EventCombiner_Module__id__C)
                      0084f464    00000518     sysbios.ae66 : BIOS.obj (.const:.string)
                      0084f97c    00000004     ti.targets.rts6000.ae66 : Assert.oe66 (.const:.string)
                      0084f980    00000400     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c66_Cache_marvalues__C)
                      0084fd80    000001a0     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_sysIntToHostInt__A)
                      0084ff20    00000144     i2c_test_pe66.oe66 (.const:xdc_runtime_Text_nodeTab__A)
                      00850064    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_BIOS_installedErrorHook__C)
                      00850068    00000101     rts6600_elf.lib : ctype.c.obj (.const:.string:_ctypes_)
                      00850169    00000001     --HOLE-- [fill = 0]
                      0085016a    00000002     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_Exception_Module__id__C)
                      0085016c    000000b4     main_test.obj (.const:.string)
                      00850220    000000a8     i2c_test_pe66.oe66 (.const:.string)
                      008502c8    00000060     i2c_test_pe66.oe66 (.const:ti_uia_loggers_LoggerStopMode_Module__FXNS__C)
                      00850328    00000058     ti.targets.rts6000.ae66 : Error.oe66 (.const:.string)
                      00850380    00000050     ti.board.ae66 : evmC6657_clock.oe66 (.const:pscConfigs)
                      008503d0    00000040     ti.targets.rts6000.ae66 : Text.oe66 (.const:.string)
                      00850410    00000040     ti.drv.uart.ae66 : UART_drv.oe66 (.const:UART_defaultParams)
                      00850450    00000038     i2c_test_pe66.oe66 (.const:xdc_runtime_Startup_sfxnTab__A)
                      00850488    00000030     ti.drv.uart.ae66 : UART_v0.oe66 (.const:UART_FxnTable_v0)
                      008504b8    00000030     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Object__PARAMS__C)
                      008504e8    00000030     i2c_test_pe66.oe66 (.const:ti_uia_loggers_LoggerStopMode_Object__PARAMS__C)
                      00850518    0000002c     ti.targets.rts6000.ae66 : Startup.oe66 (.const:.string)
                      00850544    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_EventCombiner_A_invalidEventId__C)
                      00850548    00000028     main_test.obj (.const:$P$T0$1)
                      00850570    00000028     ti.drv.i2c.profiling.ae66 : I2C_drv.oe66 (.const:I2C_defaultTransaction)
                      00850598    00000028     i2c_test_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Module__FXNS__C)
                      008505c0    00000024     rts6600_elf.lib : _printfi.c.obj (.const:.string)
                      008505e4    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_EventCombiner_E_unpluggedEvent__C)
                      008505e8    00000024     ti.board.ae66 : evmC6657.oe66 (.const:Board_ext_clk)
                      0085060c    00000024     i2c_test_pe66.oe66 (.const:ti_sysbios_gates_GateHwi_Module__FXNS__C)
                      00850630    00000024     i2c_test_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Module__FXNS__C)
                      00850654    00000024     i2c_test_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Object__PARAMS__C)
                      00850678    00000024     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Object__PARAMS__C)
                      0085069c    00000020     ti.osal.ae66 : SemaphoreP_tirtos.oe66 (.const:.string)
                      008506bc    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_EventCombiner_Module__diagsEnabled__C)
                      008506c0    00000020     ti.board.ae66 : evmC6657_pll.oe66 (.const:keystonePllcRegs)
                      008506e0    00000020                   : evmC6657_pll.oe66 (.const:pllcConfigs)
                      00850700    00000020     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Object__DESC__C)
                      00850720    00000020     i2c_test_pe66.oe66 (.const:ti_sysbios_gates_GateHwi_Object__DESC__C)
                      00850740    00000020     i2c_test_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Object__DESC__C)
                      00850760    00000020     i2c_test_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Object__DESC__C)
                      00850780    00000020     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Queue_Object__DESC__C)
                      008507a0    00000020     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Object__DESC__C)
                      008507c0    00000020     i2c_test_pe66.oe66 (.const:ti_uia_loggers_LoggerStopMode_Object__DESC__C)
                      008507e0    0000001c     ti.osal.ae66 : HwiP_tirtos.oe66 (.const:.string)
                      008507fc    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_EventCombiner_Module__diagsIncluded__C)
                      00850800    0000001c     i2c_test_pe66.oe66 (.const:xdc_runtime_Startup_sfxnRts__A)
                      0085081c    00000018     ti.drv.uart.ae66 : UART_stdio.oe66 (.const:.string)
                      00850834    00000018     ti.targets.rts6000.ae66 : System.oe66 (.const:.string)
                      0085084c    00000018     i2c_test_pe66.oe66 (.const:ti_sysbios_gates_GateHwi_Object__PARAMS__C)
                      00850864    00000018     i2c_test_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Object__PARAMS__C)
                      0085087c    00000018     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Queue_Object__PARAMS__C)
                      00850894    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_EventCombiner_Module__diagsMask__C)
                      00850898    00000018     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Task_hooks__A)
                      008508b0    00000014     ti.drv.i2c.profiling.ae66 : I2C_v0.oe66 (.const:I2C_v0_FxnTable)
                      008508c4    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_Exception_E_exceptionMax__C)
                      008508c8    00000014     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_eventId__A)
                      008508dc    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_Exception_exceptionHook__C)
                      008508e0    00000014     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_0__A)
                      008508f4    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_Exception_externalHook__C)
                      008508f8    00000014     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_1__A)
                      0085090c    00000010     ti.drv.i2c.profiling.ae66 : I2C_v0.oe66 (.const:.string)
                      0085091c    00000010                               : I2C_drv.oe66 (.const:I2C_defaultParams)
                      0085092c    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_Exception_internalHook__C)
                      00850930    00000010     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_EventCombiner_EVTMASK__C)
                      00850940    0000000c     ti.drv.uart.ae66 : UART_v0.oe66 (.const:.string)
                      0085094c    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_Exception_nmiHook__C)
                      00850950    0000000a     ti.drv.uart.ae66 : UART_stdio.oe66 (.const:.string:$P$T1$2$0)
                      0085095a    00000002     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_Exception_useInternalBuffer__C)
                      0085095c    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_E_alreadyDefined__C)
                      00850960    00000008     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId__A)
                      00850968    00000008     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Idle_funcList__A)
                      00850970    00000008     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Idle_funcList__C)
                      00850978    00000008     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Task_hooks__C)
                      00850980    00000008     i2c_test_pe66.oe66 (.const:xdc_runtime_Startup_firstFxns__A)
                      00850988    00000008     i2c_test_pe66.oe66 (.const:xdc_runtime_Startup_firstFxns__C)
                      00850990    00000008     i2c_test_pe66.oe66 (.const:xdc_runtime_Startup_lastFxns__C)
                      00850998    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_E_handleNotFound__C)
                      0085099c    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_E_invalidIntNum__C)
                      008509a0    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_LD_end__C)
                      008509a4    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_LM_begin__C)
                      008509a8    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__diagsEnabled__C)
                      008509ac    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__diagsIncluded__C)
                      008509b0    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__diagsMask__C)
                      008509b4    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__loggerFxn1__C)
                      008509b8    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__loggerFxn8__C)
                      008509bc    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__loggerObj__C)
                      008509c0    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c66_Cache_E_invalidL1CacheSize__C)
                      008509c4    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c66_Cache_E_invalidL2CacheSize__C)
                      008509c8    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c66_Cache_atomicBlockSize__C)
                      008509cc    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_E_unpluggedSysInt__C)
                      008509d0    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_eventId__C)
                      008509d4    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId__C)
                      008509d8    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_numEvents__C)
                      008509dc    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_numStatusRegs__C)
                      008509e0    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_numSysInts__C)
                      008509e4    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_sysIntToHostInt__C)
                      008509e8    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_A_badContext__C)
                      008509ec    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Instance_State_sem__O)
                      008509f0    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Module__diagsEnabled__C)
                      008509f4    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Module__diagsIncluded__C)
                      008509f8    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Module__diagsMask__C)
                      008509fc    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_hal_Hwi_E_stackOverflow__C)
                      00850a00    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_heaps_HeapBuf_Instance_State_freeList__O)
                      00850a04    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_heaps_HeapBuf_Object__count__C)
                      00850a08    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_heaps_HeapBuf_numConstructedHeaps__C)
                      00850a0c    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_A_align__C)
                      00850a10    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_A_heapSize__C)
                      00850a14    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_A_invalidFree__C)
                      00850a18    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_A_zeroBlock__C)
                      00850a1c    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_E_memory__C)
                      00850a20    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C)
                      00850a24    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C)
                      00850a28    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Module__diagsMask__C)
                      00850a2c    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Module__gateObj__C)
                      00850a30    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Object__count__C)
                      00850a34    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Object__table__C)
                      00850a38    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_reqAlign__C)
                      00850a3c    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Clock_LM_begin__C)
                      00850a40    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Clock_LM_tick__C)
                      00850a44    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Clock_LW_delayed__C)
                      00850a48    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module_State_clockQ__O)
                      00850a4c    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__diagsEnabled__C)
                      00850a50    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__diagsIncluded__C)
                      00850a54    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__diagsMask__C)
                      00850a58    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__loggerFxn1__C)
                      00850a5c    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__loggerFxn2__C)
                      00850a60    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__loggerObj__C)
                      00850a64    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_A_badContext__C)
                      00850a68    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_A_noEvents__C)
                      00850a6c    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_A_overflow__C)
                      00850a70    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_A_pendTaskDisabled__C)
                      00850a74    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Instance_State_pendQ__O)
                      00850a78    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_LM_pend__C)
                      00850a7c    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_LM_post__C)
                      00850a80    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__diagsEnabled__C)
                      00850a84    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__diagsIncluded__C)
                      00850a88    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__diagsMask__C)
                      00850a8c    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__loggerFxn2__C)
                      00850a90    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__loggerFxn4__C)
                      00850a94    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__loggerObj__C)
                      00850a98    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Swi_LD_end__C)
                      00850a9c    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Swi_LM_begin__C)
                      00850aa0    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Swi_LM_post__C)
                      00850aa4    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__diagsEnabled__C)
                      00850aa8    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__diagsIncluded__C)
                      00850aac    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__diagsMask__C)
                      00850ab0    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__loggerFxn1__C)
                      00850ab4    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__loggerFxn4__C)
                      00850ab8    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__loggerObj__C)
                      00850abc    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Swi_Object__count__C)
                      00850ac0    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Swi_Object__table__C)
                      00850ac4    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Task_A_badTimeout__C)
                      00850ac8    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Task_A_sleepTaskDisabled__C)
                      00850acc    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Task_LD_block__C)
                      00850ad0    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Task_LD_exit__C)
                      00850ad4    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Task_LD_ready__C)
                      00850ad8    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Task_LM_sleep__C)
                      00850adc    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Task_LM_switch__C)
                      00850ae0    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Task_Module_State_inactiveQ__O)
                      00850ae4    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__diagsEnabled__C)
                      00850ae8    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__diagsIncluded__C)
                      00850aec    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__diagsMask__C)
                      00850af0    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__loggerFxn2__C)
                      00850af4    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__loggerFxn4__C)
                      00850af8    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__loggerObj__C)
                      00850afc    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Task_Object__count__C)
                      00850b00    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Task_Object__table__C)
                      00850b04    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Task_allBlockedFunc__C)
                      00850b08    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Task_numConstructedTasks__C)
                      00850b0c    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_A_notAvailable__C)
                      00850b10    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_E_cannotSupport__C)
                      00850b14    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_Module__diagsEnabled__C)
                      00850b18    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_Module__diagsIncluded__C)
                      00850b1c    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_Module__diagsMask__C)
                      00850b20    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_anyMaskHigh__C)
                      00850b24    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_anyMask__C)
                      00850b28    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_freqDivisor__C)
                      00850b2c    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_numLocalTimers__C)
                      00850b30    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_numTimerDevices__C)
                      00850b34    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_utils_Load_LS_cpuLoad__C)
                      00850b38    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_utils_Load_Module__diagsEnabled__C)
                      00850b3c    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_utils_Load_Module__diagsIncluded__C)
                      00850b40    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_utils_Load_Module__diagsMask__C)
                      00850b44    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_utils_Load_Module__loggerFxn1__C)
                      00850b48    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_utils_Load_Module__loggerObj__C)
                      00850b4c    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_utils_Load_postUpdate__C)
                      00850b50    00000004     i2c_test_pe66.oe66 (.const:ti_sysbios_utils_Load_windowInMs__C)
                      00850b54    00000004     i2c_test_pe66.oe66 (.const:ti_uia_loggers_LoggerStopMode_Module__diagsEnabled__C)
                      00850b58    00000004     i2c_test_pe66.oe66 (.const:ti_uia_loggers_LoggerStopMode_Module__diagsIncluded__C)
                      00850b5c    00000004     i2c_test_pe66.oe66 (.const:ti_uia_loggers_LoggerStopMode_Module__diagsMask__C)
                      00850b60    00000004     i2c_test_pe66.oe66 (.const:ti_uia_loggers_LoggerStopMode_Object__count__C)
                      00850b64    00000004     i2c_test_pe66.oe66 (.const:ti_uia_loggers_LoggerStopMode_Object__table__C)
                      00850b68    00000004     i2c_test_pe66.oe66 (.const:ti_uia_loggers_LoggerStopMode_numCores__C)
                      00850b6c    00000004     i2c_test_pe66.oe66 (.const:ti_uia_runtime_ILoggerSnapshot_Interface__BASE__C)
                      00850b70    00000004     i2c_test_pe66.oe66 (.const:ti_uia_runtime_IUIATransfer_Interface__BASE__C)
                      00850b74    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Assert_E_assertFailed__C)
                      00850b78    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Core_A_initializedParams__C)
                      00850b7c    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Core_Module__diagsEnabled__C)
                      00850b80    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Core_Module__diagsIncluded__C)
                      00850b84    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Core_Module__diagsMask__C)
                      00850b88    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Error_E_memory__C)
                      00850b8c    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Error_Module__diagsEnabled__C)
                      00850b90    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Error_Module__diagsIncluded__C)
                      00850b94    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Error_Module__diagsMask__C)
                      00850b98    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Error_Module__loggerFxn8__C)
                      00850b9c    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Error_Module__loggerObj__C)
                      00850ba0    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Error_policyFxn__C)
                      00850ba4    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Error_policy__C)
                      00850ba8    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Error_raiseHook__C)
                      00850bac    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_IFilterLogger_Interface__BASE__C)
                      00850bb0    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_IGateProvider_Interface__BASE__C)
                      00850bb4    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_IHeap_Interface__BASE__C)
                      00850bb8    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_ILogger_Interface__BASE__C)
                      00850bbc    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_IModule_Interface__BASE__C)
                      00850bc0    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Log_L_error__C)
                      00850bc4    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Main_Module__diagsEnabled__C)
                      00850bc8    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Main_Module__diagsIncluded__C)
                      00850bcc    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Main_Module__diagsMask__C)
                      00850bd0    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Memory_defaultHeapInstance__C)
                      00850bd4    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Startup_execImpl__C)
                      00850bd8    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Startup_maxPasses__C)
                      00850bdc    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Startup_sfxnRts__C)
                      00850be0    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Startup_sfxnTab__C)
                      00850be4    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Startup_startModsFxn__C)
                      00850be8    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_System_Module__gateObj__C)
                      00850bec    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_System_abortFxn__C)
                      00850bf0    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_System_exitFxn__C)
                      00850bf4    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_System_extendFxn__C)
                      00850bf8    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_System_maxAtexitHandlers__C)
                      00850bfc    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Text_charTab__C)
                      00850c00    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Text_nameEmpty__C)
                      00850c04    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Text_nameStatic__C)
                      00850c08    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Text_nameUnknown__C)
                      00850c0c    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Text_nodeTab__C)
                      00850c10    00000004     i2c_test_pe66.oe66 (.const:xdc_runtime_Text_visitRopeFxn__C)
                      00850c14    00000002     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__id__C)
                      00850c16    00000002     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c64p_Hwi_Module__loggerDefined__C)
                      00850c18    00000002     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c66_Cache_Module__id__C)
                      00850c1a    00000002     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c66_Cache_registerRTSSynch__C)
                      00850c1c    00000002     i2c_test_pe66.oe66 (.const:ti_sysbios_family_c66_tci66xx_CpIntc_Module__id__C)
                      00850c1e    00000002     i2c_test_pe66.oe66 (.const:ti_sysbios_gates_GateMutex_Module__id__C)
                      00850c20    00000002     i2c_test_pe66.oe66 (.const:ti_sysbios_hal_Hwi_Module__id__C)
                      00850c22    00000002     i2c_test_pe66.oe66 (.const:ti_sysbios_heaps_HeapMem_Module__id__C)
                      00850c24    00000002     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__id__C)
                      00850c26    00000002     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Clock_Module__loggerDefined__C)
                      00850c28    00000002     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__id__C)
                      00850c2a    00000002     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Semaphore_Module__loggerDefined__C)
                      00850c2c    00000002     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__id__C)
                      00850c2e    00000002     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Swi_Module__loggerDefined__C)
                      00850c30    00000002     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__id__C)
                      00850c32    00000002     i2c_test_pe66.oe66 (.const:ti_sysbios_knl_Task_Module__loggerDefined__C)
                      00850c34    00000002     i2c_test_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_Module__id__C)
                      00850c36    00000002     i2c_test_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_startupNeeded__C)
                      00850c38    00000002     i2c_test_pe66.oe66 (.const:ti_sysbios_timers_timer64_Timer_useTimer64pRegMap__C)
                      00850c3a    00000002     i2c_test_pe66.oe66 (.const:ti_sysbios_utils_Load_Module__id__C)
                      00850c3c    00000002     i2c_test_pe66.oe66 (.const:ti_sysbios_utils_Load_Module__loggerDefined__C)
                      00850c3e    00000002     i2c_test_pe66.oe66 (.const:ti_sysbios_utils_Load_updateInIdle__C)
                      00850c40    00000002     i2c_test_pe66.oe66 (.const:ti_uia_loggers_LoggerStopMode_Module__id__C)
                      00850c42    00000002     i2c_test_pe66.oe66 (.const:ti_uia_loggers_LoggerStopMode_isTimestampEnabled__C)
                      00850c44    00000002     i2c_test_pe66.oe66 (.const:xdc_runtime_Core_Module__id__C)
                      00850c46    00000002     i2c_test_pe66.oe66 (.const:xdc_runtime_Error_Module__loggerDefined__C)
                      00850c48    00000002     i2c_test_pe66.oe66 (.const:xdc_runtime_Error_maxDepth__C)
                      00850c4a    00000002     i2c_test_pe66.oe66 (.const:xdc_runtime_Main_Module__id__C)
                      00850c4c    00000002     i2c_test_pe66.oe66 (.const:xdc_runtime_Memory_Module__id__C)
                      00850c4e    00000002     i2c_test_pe66.oe66 (.const:xdc_runtime_Text_charCnt__C)
                      00850c50    00000002     i2c_test_pe66.oe66 (.const:xdc_runtime_Text_isLoaded__C)
                      00850c52    00000002     i2c_test_pe66.oe66 (.const:xdc_runtime_Text_registryModsLastId__C)
                      00850c54    00000002     i2c_test_pe66.oe66 (.const:xdc_runtime_Text_unnamedModsLastId__C)
    
    .fardata.1 
    *          0    00850c58    00000028     UNINITIALIZED
                      00850c58    00000024     ti.drv.uart.ae66 : UART_soc.oe66 (.fardata:UART_config)
                      00850c7c    00000004     rts6600_elf.lib : _lock.c.obj (.fardata:_lock)
    
    .fardata.2 
    *          0    008534d8    00000028     UNINITIALIZED
                      008534d8    00000024     i2c_test_pe66.oe66 (.fardata:ti_sysbios_BIOS_Module__state__V)
                      008534fc    00000004     rts6600_elf.lib : _lock.c.obj (.fardata:_unlock)
    
    .fardata.3 
    *          0    008541e8    00000018     UNINITIALIZED
                      008541e8    00000018     i2c_test_pe66.oe66 (.fardata:ti_sysbios_family_c64p_Hwi_Object__table__V)
    
    .fardata.4 
    *          0    00854230    00000050     UNINITIALIZED
                      00854230    00000050     i2c_test_pe66.oe66 (.fardata:ti_sysbios_timers_timer64_Timer_Object__table__V)
    
    .fardata.5 
    *          0    008542b0    00000050     UNINITIALIZED
                      008542b0    00000048     I2C_soc.obj (.fardata:i2cInitCfg)
                      008542f8    00000008     i2c_test_pe66.oe66 (.fardata:ti_sysbios_family_c64p_Hwi_Module__root__V)
    
    .fardata.6 
    *          0    00854330    0000177c     UNINITIALIZED
                      00854330    00000680     i2c_test_pe66.oe66 (.fardata:ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_dispatchTab__A)
                      008549b0    00000400     i2c_test_pe66.oe66 (.fardata:ti_sysbios_family_c64p_EventCombiner_Module__state__V)
                      00854db0    000001e0     rts6600_elf.lib : defs.c.obj (.fardata:_ftable)
                      00854f90    000000fc     ti.drv.uart.ae66 : UART_soc.oe66 (.fardata:uartInitCfg)
                      0085508c    00000004     rts6600_elf.lib : defs.c.obj (.fardata)
                      00855090    000000c0     main_test.obj (.fardata:I2c_tests)
                      00855150    000000c0     i2c_test_pe66.oe66 (.fardata:ti_sysbios_timers_timer64_Timer_Module_State_0_device__A)
                      00855210    000000b8     i2c_test_pe66.oe66 (.fardata:ti_sysbios_knl_Task_Object__table__V)
                      008552c8    000000a8     I2C_soc.obj (.fardata:I2C_config)
                      00855370    000000a0     rts6600_elf.lib : write.c.obj (.fardata:_stream)
                      00855410    0000009c     i2c_test_pe66.oe66 (.fardata:ti_uia_loggers_LoggerStopMode_Object__table__V)
                      008554ac    00000098     i2c_test_pe66.oe66 (.fardata:ti_sysbios_utils_Load_Module__state__V)
                      00855544    00000004     rts6600_elf.lib : errno.c.obj (.fardata)
                      00855548    00000080     i2c_test_pe66.oe66 (.fardata:ti_sysbios_knl_Swi_Module_State_0_readyQ__A)
                      008555c8    00000078     rts6600_elf.lib : write.c.obj (.fardata:_device)
                      00855640    0000006c     i2c_test_pe66.oe66 (.fardata:ti_sysbios_family_c64p_Hwi_Module__state__V)
                      008556ac    00000004     i2c_test_pe66.oe66 (.fardata:ti_sysbios_heaps_HeapBuf_Module__state__V)
                      008556b0    00000060     i2c_test_pe66.oe66 (.fardata:ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_hostIntToSysInt__A)
                      00855710    00000048     i2c_test_pe66.oe66 (.fardata:ti_sysbios_knl_Task_Module__state__V)
                      00855758    00000040     i2c_test_pe66.oe66 (.fardata:ti_sysbios_gates_GateMutex_Object__table__V)
                      00855798    00000040     i2c_test_pe66.oe66 (.fardata:ti_sysbios_timers_timer64_Timer_Module_State_0_gctrl__A)
                      008557d8    00000040     i2c_test_pe66.oe66 (.fardata:ti_sysbios_timers_timer64_Timer_Module_State_0_handles__A)
                      00855818    00000040     i2c_test_pe66.oe66 (.fardata:ti_sysbios_timers_timer64_Timer_Module_State_0_intFreqs__A)
                      00855858    00000030     ti.osal.ae66 : Utils_tirtos.oe66 (.fardata:gOsal_HwAttrs)
                      00855888    00000030     i2c_test_pe66.oe66 (.fardata:ti_sysbios_family_c64p_Exception_Module__state__V)
                      008558b8    00000030     i2c_test_pe66.oe66 (.fardata:ti_sysbios_knl_Swi_Object__table__V)
                      008558e8    0000002c     i2c_test_pe66.oe66 (.fardata:ti_sysbios_knl_Clock_Module__state__V)
                      00855914    00000004     i2c_test_pe66.oe66 (.fardata:xdc_runtime_Memory_Module__state__V)
                      00855918    00000020     i2c_test_pe66.oe66 (.fardata:ti_sysbios_knl_Task_Module_State_0_readyQ__A)
                      00855938    00000020     i2c_test_pe66.oe66 (.fardata:xdc_runtime_Error_IgnoreBlock)
                      00855958    00000020     i2c_test_pe66.oe66 (.fardata:xdc_runtime_System_Module_State_0_atexitHandlers__A)
                      00855978    0000001c     i2c_test_pe66.oe66 (.fardata:ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_initSIER__A)
                      00855994    0000001c     i2c_test_pe66.oe66 (.fardata:ti_sysbios_knl_Swi_Module__state__V)
                      008559b0    00000018     i2c_test_pe66.oe66 (.fardata:ti_sysbios_heaps_HeapMem_Object__table__V)
                      008559c8    00000018     i2c_test_pe66.oe66 (.fardata:ti_sysbios_timers_timer64_Timer_Module__state__V)
                      008559e0    00000010     i2c_test_pe66.oe66 (.fardata:ti_sysbios_family_c66_tci66xx_CpIntc_Module__state__V)
                      008559f0    0000000c     rts6600_elf.lib : exit.c.obj (.fardata)
                      008559fc    00000002     i2c_test_pe66.oe66 (.fardata:xdc_runtime_Error_Module__state__V)
                      008559fe    00000002     i2c_test_pe66.oe66 (.fardata:xdc_runtime_Main_Module__root__V)
                      00855a00    0000000c     i2c_test_pe66.oe66 (.fardata:ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_controller__A)
                      00855a0c    0000000c     i2c_test_pe66.oe66 (.fardata:ti_sysbios_knl_Task_Module__root__V)
                      00855a18    0000000c     i2c_test_pe66.oe66 (.fardata:ti_uia_runtime_QueueDescriptor_Module__state__V)
                      00855a24    00000004     --HOLE--
                      00855a28    0000000a     main_test.obj (.fardata:eepromData)
                      00855a32    00000002     --HOLE--
                      00855a34    00000008     i2c_test_pe66.oe66 (.fardata:ti_sysbios_gates_GateHwi_Module__root__V)
                      00855a3c    00000008     i2c_test_pe66.oe66 (.fardata:ti_sysbios_gates_GateMutex_Module__root__V)
                      00855a44    00000004     --HOLE--
                      00855a48    00000008     i2c_test_pe66.oe66 (.fardata:ti_sysbios_hal_Hwi_Object__table__V)
                      00855a50    00000008     i2c_test_pe66.oe66 (.fardata:ti_sysbios_heaps_HeapMem_Module__root__V)
                      00855a58    00000008     i2c_test_pe66.oe66 (.fardata:ti_sysbios_knl_Queue_Module__root__V)
                      00855a60    00000008     i2c_test_pe66.oe66 (.fardata:ti_sysbios_knl_Semaphore_Module__root__V)
                      00855a68    00000008     i2c_test_pe66.oe66 (.fardata:ti_uia_loggers_LoggerStopMode_Module__root__V)
                      00855a70    00000008     ti.drv.uart.ae66 : UART_stdio.oe66 (.fardata:uart_stdio)
                      00855a78    00000008     i2c_test_pe66.oe66 (.fardata:xdc_runtime_Registry_Module__state__V)
                      00855a80    00000008     i2c_test_pe66.oe66 (.fardata:xdc_runtime_Startup_Module__state__V)
                      00855a88    00000008     i2c_test_pe66.oe66 (.fardata:xdc_runtime_System_Module__state__V)
                      00855a90    00000004     i2c_test_pe66.oe66 (.fardata:ti_sysbios_gates_GateHwi_Object__table__V)
                      00855a94    00000004     --HOLE--
                      00855a98    00000004     i2c_test_pe66.oe66 (.fardata:ti_sysbios_knl_Task_Module_State_0_idleTask__A)
                      00855a9c    00000004     --HOLE--
                      00855aa0    00000004     i2c_test_pe66.oe66 (.fardata:ti_sysbios_utils_Load_Module_State_0_runningTask__A)
                      00855aa4    00000004     --HOLE--
                      00855aa8    00000004     i2c_test_pe66.oe66 (.fardata:ti_sysbios_utils_Load_Module_State_0_taskStartTime__A)
    
    .switch.1 
    *          0    00856bd0    00000024     
                      00856bd0    00000024     ti.drv.uart.ae66 : UART_stdio.oe66 (.switch:UART_printf)
    
    .switch.2 
    *          0    00856e00    00000064     
                      00856e00    00000038     rts6600_elf.lib : _printfi.c.obj (.switch:__TI_printfi)
                      00856e38    00000018     ti.drv.i2c.profiling.ae66 : I2C_v0.oe66 (.switch:I2C_v0_hwiFxnSlave$0)
                      00856e50    00000014     ti.drv.uart.ae66 : UART_v0.oe66 (.switch:UART_open_v0$0)
    
    MODULE SUMMARY
    
           Module                       code     ro data   rw data 
           ------                       ----     -------   ------- 
        .\
           main_test.obj                1632     220       202     
           I2C_soc.obj                  320      0         316     
        +--+----------------------------+--------+---------+----------+
           Total:                       1952     220       518     
                                                                   
        C:\ti\pdk_c665x_2_0_16\packages\MyExampleProjects\I2C_BasicExample_C6657_Evm_c66xTestProject\Debug\configPkg\package\cfg\
           i2c_test_pe66.oe66           8928     12018     218336  
        +--+----------------------------+--------+---------+----------+
           Total:                       8928     12018     218336  
                                                                   
        C:\ti\bios_6_76_03_01\packages\ti\targets\rts6000\lib\boot.ae66
           autoinit.oe66                384      0         0       
           boot.oe66                    160      0         0       
        +--+----------------------------+--------+---------+----------+
           Total:                       544      0         0       
                                                                   
        C:\ti\bios_6_76_03_01\packages\ti\targets\rts6000\lib\ti.targets.rts6000.ae66
           System.oe66                  3232     24        0       
           Text.oe66                    1824     64        0       
           Error.oe66                   1184     88        0       
           Startup.oe66                 896      44        0       
           Core-mem.oe66                896      0         0       
           Memory.oe66                  448      0         0       
           Core-smem.oe66               416      0         0       
           SysStd.oe66                  224      0         0       
           Assert.oe66                  192      4         0       
           Core-params.oe66             160      0         0       
           Core-label.oe66              128      0         0       
           Gate.oe66                    64       0         0       
           Registry.oe66                64       0         0       
        +--+----------------------------+--------+---------+----------+
           Total:                       9728     224       0       
                                                                   
        C:\ti\ccs930\ccs\tools\compiler\ti-cgt-c6000_8.3.5\lib\rts6600_elf.lib
           _printfi.c.obj               13440    92        0       
           divd.c.obj                   1536     0         0       
           defs.c.obj                   0        0         804     
           imath64.c.obj                672      0         0       
           trgmsg.c.obj                 224      0         288     
           fputc.c.obj                  480      0         0       
           fflush.c.obj                 448      0         0       
           getdevice.c.obj              448      0         0       
           imath40.c.obj                448      0         0       
           ldexp.c.obj                  448      0         0       
           setvbuf.c.obj                448      0         0       
           frexp.c.obj                  416      0         0       
           hostrename.c.obj             416      0         0       
           write.c.obj                  96       0         280     
           copy_decompress_rle.c.obj    288      0         0       
           exit.c.obj                   256      0         12      
           ctype.c.obj                  0        257       0       
           atoi.c.obj                   256      0         0       
           cpy_tbl.c.obj                256      0         0       
           fclose.c.obj                 256      0         0       
           fseek.c.obj                  256      0         0       
           hostopen.c.obj               224      0         8       
           _io_perm.c.obj               224      0         0       
           _ltoa.c.obj                  224      0         0       
           close.c.obj                  224      0         0       
           hostlseek.c.obj              224      0         0       
           hostwrite.c.obj              224      0         0       
           llshift.c.obj                224      0         0       
           memset.c.obj                 224      0         0       
           divu.asm.obj                 192      0         0       
           hostread.c.obj               192      0         0       
           hostunlink.c.obj             192      0         0       
           sprintf.c.obj                192      0         0       
           tls.c.obj                    192      0         0       
           fopen.c.obj                  160      0         0       
           hostclose.c.obj              160      0         0       
           memcpy64.asm.obj             160      0         0       
           remu.asm.obj                 160      0         0       
           unlink.c.obj                 128      0         0       
           _lock.c.obj                  96       0         8       
           frcmpyd_div.c.obj            96       0         0       
           lseek.c.obj                  96       0         0       
           memccpy.c.obj                96       0         0       
           args_main.c.obj              64       0         0       
           isinf.c.obj                  64       0         0       
           push.asm.obj                 64       0         0       
           strasg.asm.obj               64       0         0       
           wcslen.c.obj                 64       0         0       
           errno.c.obj                  32       0         4       
           _data_synch.c.obj            32       0         0       
           copy_decompress_none.c.obj   32       0         0       
           signbit.c.obj                32       0         0       
           startup.c.obj                32       0         0       
        +--+----------------------------+--------+---------+----------+
           Total:                       25472    349       1404    
                                                                   
        C:\ti\pdk_c665x_2_0_16\packages\ti\board\lib\evmC6657\c66\release\ti.board.ae66
           board_pll.oe66               1312     0         0       
           evmC6657_ddr.oe66            736      0         0       
           board_clock.oe66             384      0         0       
           evmC6657.oe66                320      36        0       
           board_utils.oe66             288      0         0       
           evmC6657_clock.oe66          32       80        0       
           evmC6657_pll.oe66            32       64        0       
           board_lld_init.oe66          32       0         0       
           evmC6657_pinmux.oe66         32       0         0       
        +--+----------------------------+--------+---------+----------+
           Total:                       3168     180       0       
                                                                   
        C:\ti\pdk_c665x_2_0_16\packages\ti\csl\lib\c6657\c66\release\ti.csl.ae66
           uart.oe66                    1248     0         0       
           i2c.oe66                     672      0         0       
        +--+----------------------------+--------+---------+----------+
           Total:                       1920     0         0       
                                                                   
        C:\ti\pdk_c665x_2_0_16\packages\ti\drv\i2c\lib\c66\release\ti.drv.i2c.profiling.ae66
           I2C_v0.oe66                  6016     60        0       
           I2C_drv.oe66                 736      56        4       
        +--+----------------------------+--------+---------+----------+
           Total:                       6752     116       4       
                                                                   
        C:\ti\pdk_c665x_2_0_16\packages\ti\drv\i2c\test\eeprom_read\c6657\c66\bios\src\sysbios\sysbios.ae66
           BIOS.obj                     35488    1304      0       
           c64p_Hwi_disp_always.obj     512      0         0       
           c64p_Exception_asm.obj       384      0         0       
           c62_TaskSupport_asm.obj      224      0         0       
           c64p_Hwi_asm_switch.obj      192      0         0       
           c64p_Hwi_asm.obj             160      0         0       
        +--+----------------------------+--------+---------+----------+
           Total:                       36960    1304      0       
                                                                   
        C:\ti\pdk_c665x_2_0_16\packages\ti\drv\uart\lib\c6657\c66\release\ti.drv.uart.ae66
           UART_v0.oe66                 7456     80        0       
           UART_stdio.oe66              2272     70        8       
           UART_soc.oe66                0        0         632     
           UART_drv.oe66                320      64        4       
        +--+----------------------------+--------+---------+----------+
           Total:                       10048    214       644     
                                                                   
        C:\ti\pdk_c665x_2_0_16\packages\ti\osal\lib\tirtos\c6657\c66\release\ti.osal.ae66
           SemaphoreP_tirtos.oe66       928      32        2880    
           HwiP_tirtos.oe66             928      28        1280    
           RegisterIntr_tirtos.oe66     832      0         0       
           EventCombinerP_tirtos.oe66   800      0         0       
           Utils_tirtos.oe66            448      0         72      
           MuxIntcP_tirtos.oe66         224      0         0       
        +--+----------------------------+--------+---------+----------+
           Total:                       4160     60        4232    
                                                                   
        C:\ti\pdk_c665x_2_0_16\packages\ti\utils\profiling\lib\c66\release\ti.utils.profiling.ae66
           profilingHooksC66.oe66       736      0         67108888
        +--+----------------------------+--------+---------+----------+
           Total:                       736      0         67108888
                                                                   
        C:\ti\uia_2_30_01_02\packages\ti\uia\loggers\lib\release\ti.uia.loggers.ae66
           LoggerStopMode.oe66          1376     0         0       
        +--+----------------------------+--------+---------+----------+
           Total:                       1376     0         0       
                                                                   
        C:\ti\uia_2_30_01_02\packages\ti\uia\runtime\lib\release\ti.uia.runtime.ae66
           QueueDescriptor.oe66         256      0         8       
        +--+----------------------------+--------+---------+----------+
           Total:                       256      0         8       
                                                                   
           Stack:                       0        0         4096    
           Linker Generated:            0        4401      0       
        +--+----------------------------+--------+---------+----------+
           Grand Total:                 112000   19086     67338130
    
    
    LINKER GENERATED COPY TABLES
    
    __TI_cinit_table @ 00857f68 records: 15, size/record: 8, table size: 120
    	.fardata.6: load addr=00856ea8, load size=00000f7f bytes, run addr=00854330, run size=0000177c bytes, compression=rle
    	.fardata.5: load addr=00857e27, load size=00000032 bytes, run addr=008542b0, run size=00000050 bytes, compression=rle
    	.fardata.4: load addr=00857e59, load size=0000002d bytes, run addr=00854230, run size=00000050 bytes, compression=rle
    	.fardata:benchmarking: load addr=00857e86, load size=00000025 bytes, run addr=80000000, run size=04000000 bytes, compression=rle
    	.fardata.1: load addr=00857eab, load size=00000024 bytes, run addr=00850c58, run size=00000028 bytes, compression=rle
    	.fardata.2: load addr=00857ecf, load size=00000023 bytes, run addr=008534d8, run size=00000028 bytes, compression=rle
    	.fardata.3: load addr=00857ef2, load size=00000014 bytes, run addr=008541e8, run size=00000018 bytes, compression=rle
    	systemHeap: load addr=00857f06, load size=0000000d bytes, run addr=00800000, run size=00032000 bytes, compression=rle
    	.neardata: load addr=00857f13, load size=0000000c bytes, run addr=00856e70, run size=00000034 bytes, compression=rle
    	.far.1: load addr=00857f1f, load size=0000000b bytes, run addr=00850c80, run size=00002854 bytes, compression=rle
    	.far.2: load addr=00857f2a, load size=0000000b bytes, run addr=00853500, run size=00000ce4 bytes, compression=rle
    	.bss: load addr=00857f35, load size=00000009 bytes, run addr=00856e64, run size=0000000c bytes, compression=rle
    	.far.3: load addr=00857f3e, load size=00000009 bytes, run addr=00854200, run size=00000030 bytes, compression=rle
    	.far.4: load addr=00857f47, load size=00000009 bytes, run addr=00854280, run size=00000030 bytes, compression=rle
    	.far.5: load addr=00857f50, load size=00000009 bytes, run addr=00854300, run size=00000030 bytes, compression=rle
    
    
    LINKER GENERATED HANDLER TABLE
    
    __TI_handler_table @ 00857f5c records: 2, size/record: 4, table size: 8
    	index: 0, handler: __TI_decompress_rle24
    	index: 1, handler: __TI_decompress_none
    
    
    GLOBAL SYMBOLS: SORTED ALPHABETICALLY BY Name 
    
    address   name                                                                  
    -------   ----                                                                  
    00844ae0  BOARD_delay                                                           
    0083d480  Board_DDR3Init                                                        
    00849960  Board_PLLInit                                                         
    008505e8  Board_ext_clk                                                         
    0084bfa0  Board_getNumPSCconfigs                                                
    0084bfc0  Board_getNumPllcConfigs                                               
    00843660  Board_init                                                            
    00836580  Board_initI2C                                                         
    00842920  Board_moduleClockInit                                                 
    0084bfe0  Board_pinmuxConfig                                                    
    0084c000  Board_uartStdioInit                                                   
    0084c6e0  C$$EXIT                                                               
    0084a018  C$$IO$$                                                               
    00856e64  CurrentTaskHookSetId                                                  
    00848be0  EventCombinerP_GroupRegisterInt                                       
    008437a0  EventCombinerP_SingleRegisterInt                                      
    0084c040  EventCombinerP_disableEvent                                           
    0084c060  EventCombinerP_dispatchPlug                                           
    0084c080  EventCombinerP_enableEvent                                            
    00848c60  EventCombinerP_getHwi                                                 
    00848ce0  EventCombinerP_getIntNum                                              
    00847ba0  HOSTclose                                                             
    008460e0  HOSTlseek                                                             
    008461c0  HOSTopen                                                              
    00846ee0  HOSTread                                                              
    00841f60  HOSTrename                                                            
    00846fa0  HOSTunlink                                                            
    008462a0  HOSTwrite                                                             
    0084c0a0  HwiP_Params_init                                                      
    0084c0c0  HwiP_clearInterrupt                                                   
    0083e880  HwiP_create                                                           
    00847c40  HwiP_delete                                                           
    0084c0e0  HwiP_disable                                                          
    0084c100  HwiP_disableInterrupt                                                 
    0084c120  HwiP_enableInterrupt                                                  
    0084c140  HwiP_restore                                                          
    0084c160  I2CIntVectGet                                                         
    0084c180  I2CMasterBusBusy                                                      
    0084c1a0  I2CMasterControl                                                      
    0084c1c0  I2CMasterDataGet                                                      
    0084c1e0  I2CMasterDataPut                                                      
    0084c200  I2CMasterDisable                                                      
    0084c220  I2CMasterEnable                                                       
    0084c240  I2CMasterErr                                                          
    0084ada0  I2CMasterInitExpClk                                                   
    0084c260  I2CMasterIntClearEx                                                   
    0084c280  I2CMasterIntDisableEx                                                 
    0084c2a0  I2CMasterIntEnableEx                                                  
    0084c2c0  I2CMasterIntStatusEx                                                  
    0084c2e0  I2CMasterSlaveAddrSet                                                 
    0084c300  I2CMasterStart                                                        
    0084c320  I2CMasterStop                                                         
    0084c340  I2CModeControl                                                        
    0084c360  I2COwnAddressSet                                                      
    0084c380  I2CSetDataCount                                                       
    0084c3a0  I2CSlaveEnable                                                        
    008499c0  I2C_Params_init                                                       
    00849a20  I2C_close                                                             
    008552c8  I2C_config                                                            
    0085091c  I2C_defaultParams                                                     
    00850570  I2C_defaultTransaction                                                
    00847060  I2C_init                                                              
    00848d60  I2C_open                                                              
    008438e0  I2C_socGetInitCfg                                                     
    00843974  I2C_socSetInitCfg                                                     
    008369d0  I2C_test_print_test_desc                                              
    00849a80  I2C_transactionInit                                                   
    00848de0  I2C_transfer                                                          
    008508b0  I2C_v0_FxnTable                                                       
    00854198  I2cObjects                                                            
    00836bb0  I2c_appC7xPreInit                                                     
    00855090  I2c_tests                                                             
    00856e68  MaxTaskHookSetId                                                      
    0084c3c0  MuxIntcP_clearInEvent                                                 
    00848e60  MuxIntcP_create                                                       
    0084c3e0  MuxIntcP_disableOutEvent                                              
    0084c400  MuxIntcP_enableOutEvent                                               
    00849b40  Osal_ClearInterrupt                                                   
    0084ae60  Osal_DebugP_assert                                                    
    00847ce0  Osal_DeleteInterrupt                                                  
    0084aea0  Osal_DisableInterrupt                                                 
    0084aee0  Osal_EnableInterrupt                                                  
    00842aa0  Osal_RegisterInterrupt                                                
    0084af20  Osal_RegisterInterrupt_initParams                                     
    00847120  Osal_delay                                                            
    00849ba0  Osal_getHwAttrs                                                       
    00849c00  Osal_getThreadType                                                    
    00849c60  SemaphoreP_Params_init                                                
    0083fe40  SemaphoreP_create                                                     
    00847d80  SemaphoreP_delete                                                     
    00849cc0  SemaphoreP_pend                                                       
    0084af60  SemaphoreP_post                                                       
    0084af60  SemaphoreP_postFromClock                                              
    0084af60  SemaphoreP_postFromISR                                                
    0084c420  TaskRegisterId                                                        
    00850488  UART_FxnTable_v0                                                      
    0084c440  UART_Params_init                                                      
    0084afa0  UART_breakCtl_v0                                                      
    0084afe0  UART_charGetNonBlocking2_v0                                           
    00848ee0  UART_charPut_v0                                                       
    00850c58  UART_config                                                           
    00850410  UART_defaultParams                                                    
    0084c480  UART_divisorLatchDisable_v0                                           
    00849d20  UART_divisorLatchWrite_v0                                             
    00849d80  UART_divisorValCompute_v0                                             
    0084c4a0  UART_fIFOCharPut_v0                                                   
    00848f60  UART_fIFOConfig_v0                                                    
    0084c4c0  UART_fifoEmpty_v0                                                     
    00849de0  UART_fifoWait_v0                                                      
    00847e20  UART_init                                                             
    0084b020  UART_intDisable_v0                                                    
    0084b060  UART_intEnable_v0                                                     
    0084b0a0  UART_intIdentityGet_v0                                                
    00849e40  UART_lineCharacConfig_v0                                              
    0084b0e0  UART_loopbackModeControl_v0                                           
    0084b120  UART_open                                                             
    0084c500  UART_operatingModeSelect_v0                                           
    00837e40  UART_printf                                                           
    0084ac20  UART_putc                                                             
    0084c520  UART_pwremuConfig_v0                                                  
    0084b160  UART_readLineStatus_v0                                                
    008472a0  UART_stdioInit                                                        
    00847ec0  UART_v0_callback                                                      
    0084c540  UART_write                                                            
    0084c560  UART_writePolling                                                     
    00853f00  UartObjects                                                           
    00800000  __ASM__                                                               
    00856ab0  __CIOBUF_                                                             
    00800098  __ISA__                                                               
    008000b0  __PLAT__                                                              
    008000d8  __TARG__                                                              
    00857f68  __TI_CINIT_Base                                                       
    00857fe0  __TI_CINIT_Limit                                                      
    00857f5c  __TI_Handler_Table_Base                                               
    00857f64  __TI_Handler_Table_Limit                                              
    UNDEFED   __TI_INITARRAY_Base                                                   
    UNDEFED   __TI_INITARRAY_Limit                                                  
    00856ab0  __TI_STACK_END                                                        
    00001000  __TI_STACK_SIZE                                                       
    00856e64  __TI_STATIC_BASE                                                      
    UNDEFED   __TI_TLS_INIT_Base                                                    
    UNDEFED   __TI_TLS_INIT_Limit                                                   
    00847f60  __TI_cleanup                                                          
    008559f0  __TI_cleanup_ptr                                                      
    00844fe0  __TI_closefile                                                        
    0084c700  __TI_decompress_none                                                  
    0084c720  __TI_decompress_rle24                                                 
    00847420  __TI_doflush                                                          
    008559f4  __TI_dtors_ptr                                                        
    008559f8  __TI_enable_exit_profile_output                                       
    00849f60  __TI_frcmpyd_div                                                      
    0085508c  __TI_ft_end                                                           
    00846620  __TI_ltoa                                                             
    ffffffff  __TI_pprof_out_hndl                                                   
    00832000  __TI_printfi                                                          
    ffffffff  __TI_prof_data_size                                                   
    ffffffff  __TI_prof_data_start                                                  
    00848fe0  __TI_readmsg                                                          
    00847960  __TI_tls_init                                                         
    00854058  __TI_tmpnams                                                          
    00849fc0  __TI_writemsg                                                         
    00846700  __TI_wrt_ok                                                           
    00800100  __TRDR__                                                              
    ffffffff  __binit__                                                             
    00837840  __c6xabi_divd                                                         
    008474e0  __c6xabi_divu                                                         
    00840fa0  __c6xabi_divul                                                        
    0083eac0  __c6xabi_divull                                                       
    0084c580  __c6xabi_errno_addr                                                   
    0084b1a0  __c6xabi_isinf                                                        
    00849060  __c6xabi_llshl                                                        
    0084a020  __c6xabi_llshru                                                       
    0084c5a0  __c6xabi_pop_rts                                                      
    0084c5c0  __c6xabi_push_rts                                                     
    00848000  __c6xabi_remu                                                         
    0084b220  __c6xabi_strasgi_64plus                                               
    ffffffff  __c_args__                                                            
    008474e0  __divu                                                                
    00855544  __errno                                                               
    0084c5a0  __pop_rts                                                             
    0084c5c0  __push_rts                                                            
    00848000  __remu                                                                
    0084b220  __strasgi_64plus                                                      
    0084b260  _args_main                                                            
    00000000  _argsize                                                              
    00842c20  _auto_init_elf                                                        
    008480a0  _c_int00                                                              
    00850068  _ctypes_                                                              
    008555c8  _device                                                               
    00854db0  _ftable                                                               
    00850c7c  _lock                                                                 
    0084c5e0  _nop                                                                  
    0084c620  _register_lock                                                        
    0084c640  _register_synch_api                                                   
    0084c660  _register_unlock                                                      
    0084c680  _signbit                                                              
    00855ab0  _stack                                                                
    00855370  _stream                                                               
    0084a080  _subcull                                                              
    0084c6a0  _system_post_cinit                                                    
    008534fc  _unlock                                                               
    0084c6e0  abort                                                                 
    008452e0  atoi                                                                  
    ffffffff  binit                                                                 
    008467e0  close                                                                 
    008453e0  copy_in                                                               
    00855a28  eepromData                                                            
    80000000  elemlog                                                               
    00849160  empty_fn                                                              
    00855544  errno                                                                 
    008468c0  exit                                                                  
    008454e0  fflush                                                                
    00848280  finddevice                                                            
    00841320  fputc                                                                 
    0084b320  free                                                                  
    00842100  frexp                                                                 
    00842100  frexpl                                                                
    008455e0  fseek                                                                 
    00856e80  gOsalHwiAllocCnt                                                      
    00856e84  gOsalHwiPeak                                                          
    00856e70  gOsalSemAllocCnt                                                      
    00856e74  gOsalSemPeak                                                          
    00856e78  gOsalTimerAllocCnt                                                    
    00856e7c  gOsalTimerPeak                                                        
    00855858  gOsal_HwAttrs                                                         
    00844660  getdevice                                                             
    008542b0  i2cInitCfg                                                            
    00836a64  i2c_test                                                              
    00839480  init_pll                                                              
    008506c0  keystonePllcRegs                                                      
    008414e0  ldexp                                                                 
    008414e0  ldexpl                                                                
    00856e88  log_idx                                                               
    0084a1a0  lseek                                                                 
    00856e90  lvl                                                                   
    00836b78  main                                                                  
    0084c740  malloc                                                                
    0084a200  memccpy                                                               
    00848320  memcpy                                                                
    008469a0  memset                                                                
    0084a260  mySwitch                                                              
    00856e6c  pElemLog                                                              
    008534c0  parmbuf                                                               
    008506e0  pllcConfigs                                                           
    00850380  pscConfigs                                                            
    00841320  putc                                                                  
    0084c780  putchar                                                               
    008495e0  remove                                                                
    008414e0  scalbn                                                                
    008414e0  scalbnl                                                               
    008416a0  setvbuf                                                               
    0084a2c0  sprintf                                                               
    008534d8  ti_sysbios_BIOS_Module__state__V                                      
    0084c7a0  ti_sysbios_BIOS_RtsGateProxy_enter__E                                 
    0084c7c0  ti_sysbios_BIOS_RtsGateProxy_leave__E                                 
    0084a320  ti_sysbios_BIOS_atExitFunc__I                                         
    0084a380  ti_sysbios_BIOS_errorRaiseHook__I                                     
    0084b360  ti_sysbios_BIOS_exitFunc__I                                           
    0084c7e0  ti_sysbios_BIOS_getCpuFreq__E                                         
    0084c800  ti_sysbios_BIOS_getThreadType__E                                      
    00850064  ti_sysbios_BIOS_installedErrorHook__C                                 
    0084c820  ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E                     
    0084c840  ti_sysbios_BIOS_nullFunc__I                                           
    0084b3a0  ti_sysbios_BIOS_registerRTSLock__I                                    
    0084b3e0  ti_sysbios_BIOS_removeRTSLock__I                                      
    0084a3e0  ti_sysbios_BIOS_rtsLock__I                                            
    00844780  ti_sysbios_BIOS_rtsUnlock__I                                          
    0084c860  ti_sysbios_BIOS_setThreadType__E                                      
    0084b420  ti_sysbios_BIOS_startFunc__I                                          
    0084c880  ti_sysbios_BIOS_start__E                                              
    0084c8a0  ti_sysbios_family_c62_TaskSupport_Module__startupDone__S              
    0084b2e0  ti_sysbios_family_c62_TaskSupport_buildTaskStack                      
    0084c6c0  ti_sysbios_family_c62_TaskSupport_glue                                
    0084a440  ti_sysbios_family_c62_TaskSupport_start__E                            
    008490e0  ti_sysbios_family_c62_TaskSupport_swap__E                             
    00850544  ti_sysbios_family_c64p_EventCombiner_A_invalidEventId__C              
    00850930  ti_sysbios_family_c64p_EventCombiner_EVTMASK__C                       
    008505e4  ti_sysbios_family_c64p_EventCombiner_E_unpluggedEvent__C              
    008506bc  ti_sysbios_family_c64p_EventCombiner_Module__diagsEnabled__C          
    008507fc  ti_sysbios_family_c64p_EventCombiner_Module__diagsIncluded__C         
    00850894  ti_sysbios_family_c64p_EventCombiner_Module__diagsMask__C             
    0084f462  ti_sysbios_family_c64p_EventCombiner_Module__id__C                    
    008549b0  ti_sysbios_family_c64p_EventCombiner_Module__state__V                 
    0084b460  ti_sysbios_family_c64p_EventCombiner_Module_startup__E                
    00842f20  ti_sysbios_family_c64p_EventCombiner_disableEvent__E                  
    00840820  ti_sysbios_family_c64p_EventCombiner_dispatchPlug__E                  
    0083ed00  ti_sysbios_family_c64p_EventCombiner_dispatch__E                      
    008430a0  ti_sysbios_family_c64p_EventCombiner_enableEvent__E                   
    0084a4a0  ti_sysbios_family_c64p_EventCombiner_unused__E                        
    008508c4  ti_sysbios_family_c64p_Exception_E_exceptionMax__C                    
    0085016a  ti_sysbios_family_c64p_Exception_Module__id__C                        
    00855888  ti_sysbios_family_c64p_Exception_Module__state__V                     
    008483c0  ti_sysbios_family_c64p_Exception_Module_startup__E                    
    00842da0  ti_sysbios_family_c64p_Exception_dispatch__E                          
    008508dc  ti_sysbios_family_c64p_Exception_exceptionHook__C                     
    008508f4  ti_sysbios_family_c64p_Exception_externalHook__C                      
    00834880  ti_sysbios_family_c64p_Exception_handler__I                           
    0083ef40  ti_sysbios_family_c64p_Exception_internalHandler__I                   
    0085092c  ti_sysbios_family_c64p_Exception_internalHook__C                      
    0085094c  ti_sysbios_family_c64p_Exception_nmiHook__C                           
    0085095a  ti_sysbios_family_c64p_Exception_useInternalBuffer__C                 
    00856c00  ti_sysbios_family_c64p_Hwi0                                           
    0085095c  ti_sysbios_family_c64p_Hwi_E_alreadyDefined__C                        
    00850998  ti_sysbios_family_c64p_Hwi_E_handleNotFound__C                        
    0085099c  ti_sysbios_family_c64p_Hwi_E_invalidIntNum__C                         
    008456e0  ti_sysbios_family_c64p_Hwi_Instance_finalize__E                       
    008448a0  ti_sysbios_family_c64p_Hwi_Instance_init__E                           
    008509a0  ti_sysbios_family_c64p_Hwi_LD_end__C                                  
    008509a4  ti_sysbios_family_c64p_Hwi_LM_begin__C                                
    008509a8  ti_sysbios_family_c64p_Hwi_Module__diagsEnabled__C                    
    008509ac  ti_sysbios_family_c64p_Hwi_Module__diagsIncluded__C                   
    008509b0  ti_sysbios_family_c64p_Hwi_Module__diagsMask__C                       
    00850c14  ti_sysbios_family_c64p_Hwi_Module__id__C                              
    00850c16  ti_sysbios_family_c64p_Hwi_Module__loggerDefined__C                   
    008509b4  ti_sysbios_family_c64p_Hwi_Module__loggerFxn1__C                      
    008509b8  ti_sysbios_family_c64p_Hwi_Module__loggerFxn8__C                      
    008509bc  ti_sysbios_family_c64p_Hwi_Module__loggerObj__C                       
    008542f8  ti_sysbios_family_c64p_Hwi_Module__root__V                            
    0084b4a0  ti_sysbios_family_c64p_Hwi_Module__startupDone__F                     
    0084c8c0  ti_sysbios_family_c64p_Hwi_Module__startupDone__S                     
    00855640  ti_sysbios_family_c64p_Hwi_Module__state__V                           
    00843a20  ti_sysbios_family_c64p_Hwi_Module_startup__E                          
    00850700  ti_sysbios_family_c64p_Hwi_Object__DESC__C                            
    008504b8  ti_sysbios_family_c64p_Hwi_Object__PARAMS__C                          
    008541e8  ti_sysbios_family_c64p_Hwi_Object__table__V                           
    0084b4e0  ti_sysbios_family_c64p_Hwi_Params__init__S                            
    0084c8e0  ti_sysbios_family_c64p_Hwi_clearInterrupt__E                          
    00848460  ti_sysbios_family_c64p_Hwi_construct                                  
    0084b520  ti_sysbios_family_c64p_Hwi_destruct                                   
    0084b560  ti_sysbios_family_c64p_Hwi_disableInterrupt__E                        
    00840240  ti_sysbios_family_c64p_Hwi_dispatchAlways                             
    00848500  ti_sysbios_family_c64p_Hwi_dispatchC__I                               
    0083df00  ti_sysbios_family_c64p_Hwi_dispatchCore__I                            
    0084b5a0  ti_sysbios_family_c64p_Hwi_enableInterrupt__E                         
    0084b5e0  ti_sysbios_family_c64p_Hwi_getEventId__E                              
    0084c900  ti_sysbios_family_c64p_Hwi_getFunc__E                                 
    0084c920  ti_sysbios_family_c64p_Hwi_getHandle__E                               
    008485a0  ti_sysbios_family_c64p_Hwi_getStackInfo__E                            
    00856c00  ti_sysbios_family_c64p_Hwi_int0                                       
    00856c20  ti_sysbios_family_c64p_Hwi_int1                                       
    00856d40  ti_sysbios_family_c64p_Hwi_int10                                      
    00856d60  ti_sysbios_family_c64p_Hwi_int11                                      
    00856d80  ti_sysbios_family_c64p_Hwi_int12                                      
    00856da0  ti_sysbios_family_c64p_Hwi_int13                                      
    00856dc0  ti_sysbios_family_c64p_Hwi_int14                                      
    00856de0  ti_sysbios_family_c64p_Hwi_int15                                      
    00856c40  ti_sysbios_family_c64p_Hwi_int2                                       
    00856c60  ti_sysbios_family_c64p_Hwi_int3                                       
    00856c80  ti_sysbios_family_c64p_Hwi_int4                                       
    00856ca0  ti_sysbios_family_c64p_Hwi_int5                                       
    00856cc0  ti_sysbios_family_c64p_Hwi_int6                                       
    00856ce0  ti_sysbios_family_c64p_Hwi_int7                                       
    00856d00  ti_sysbios_family_c64p_Hwi_int8                                       
    00856d20  ti_sysbios_family_c64p_Hwi_int9                                       
    008481e0  ti_sysbios_family_c64p_Hwi_plug__E                                    
    0083d9c0  ti_sysbios_family_c64p_Hwi_reconfig__E                                
    0084c940  ti_sysbios_family_c64p_Hwi_startup__E                                 
    0084a0e0  ti_sysbios_family_c64p_Hwi_switchAndDispatch__I                       
    0084c960  ti_sysbios_family_c64p_Hwi_switchFromBootStack__E                     
    0084c980  ti_sysbios_family_c64p_Hwi_unPluggedInterrupt__I                      
    0084c9a0  ti_sysbios_family_c64p_TimestampProvider_Module_startup__E            
    0084c9c0  ti_sysbios_family_c64p_TimestampProvider_get32__E                     
    0084c7e0  ti_sysbios_family_c64p_TimestampProvider_getFreq__E                   
    0084c9e0  ti_sysbios_family_c64p_tci6488_TimerSupport_enable__E                 
    008509c0  ti_sysbios_family_c66_Cache_E_invalidL1CacheSize__C                   
    008509c4  ti_sysbios_family_c66_Cache_E_invalidL2CacheSize__C                   
    00850c18  ti_sysbios_family_c66_Cache_Module__id__C                             
    0084a500  ti_sysbios_family_c66_Cache_Module_startup__E                         
    0084ca00  ti_sysbios_family_c66_Cache_RTSSynchInv__I                            
    0084ca20  ti_sysbios_family_c66_Cache_RTSSynchWbInv__I                          
    0084ca40  ti_sysbios_family_c66_Cache_RTSSynchWb__I                             
    008509c8  ti_sysbios_family_c66_Cache_atomicBlockSize__C                        
    008422a0  ti_sysbios_family_c66_Cache_block__I                                  
    00842440  ti_sysbios_family_c66_Cache_getL2InitSize__I                          
    008491e0  ti_sysbios_family_c66_Cache_invL1pAll__E                              
    00008000  ti_sysbios_family_c66_Cache_l1dSize                                   
    00008000  ti_sysbios_family_c66_Cache_l1pSize                                   
    00000000  ti_sysbios_family_c66_Cache_l2Size                                    
    0084f980  ti_sysbios_family_c66_Cache_marvalues__C                              
    00850c1a  ti_sysbios_family_c66_Cache_registerRTSSynch__C                       
    0083b260  ti_sysbios_family_c66_Cache_startup__I                                
    0084ca60  ti_sysbios_family_c66_Cache_wait__E                                   
    0084ca80  ti_sysbios_family_c66_Cache_wbInv__E                                  
    008509cc  ti_sysbios_family_c66_tci66xx_CpIntc_E_unpluggedSysInt__C             
    00855a00  ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_controller__A     
    00854330  ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_dispatchTab__A    
    008556b0  ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_hostIntToSysInt__A
    00855978  ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_initSIER__A       
    00850c1c  ti_sysbios_family_c66_tci66xx_CpIntc_Module__id__C                    
    008559e0  ti_sysbios_family_c66_tci66xx_CpIntc_Module__state__V                 
    0083bcc0  ti_sysbios_family_c66_tci66xx_CpIntc_Module_startup__E                
    0084caa0  ti_sysbios_family_c66_tci66xx_CpIntc_clearSysInt__E                   
    0084cac0  ti_sysbios_family_c66_tci66xx_CpIntc_disableHostInt__E                
    0084b620  ti_sysbios_family_c66_tci66xx_CpIntc_dispatchPlug__E                  
    00841860  ti_sysbios_family_c66_tci66xx_CpIntc_dispatch__E                      
    0084cae0  ti_sysbios_family_c66_tci66xx_CpIntc_enableHostInt__E                 
    008508c8  ti_sysbios_family_c66_tci66xx_CpIntc_eventId__A                       
    008509d0  ti_sysbios_family_c66_tci66xx_CpIntc_eventId__C                       
    00849260  ti_sysbios_family_c66_tci66xx_CpIntc_getEventId__E                    
    008508e0  ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_0__A            
    008508f8  ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_1__A            
    00850960  ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId__A              
    008509d4  ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId__C              
    00848640  ti_sysbios_family_c66_tci66xx_CpIntc_mapSysIntToHostInt__E            
    008509d8  ti_sysbios_family_c66_tci66xx_CpIntc_numEvents__C                     
    008509dc  ti_sysbios_family_c66_tci66xx_CpIntc_numStatusRegs__C                 
    008509e0  ti_sysbios_family_c66_tci66xx_CpIntc_numSysInts__C                    
    0084fd80  ti_sysbios_family_c66_tci66xx_CpIntc_sysIntToHostInt__A               
    008509e4  ti_sysbios_family_c66_tci66xx_CpIntc_sysIntToHostInt__C               
    0084a560  ti_sysbios_family_c66_tci66xx_CpIntc_unused__E                        
    0084a140  ti_sysbios_family_xxx_Hwi_switchAndRunFunc                            
    0084b660  ti_sysbios_gates_GateHwi_Handle__label__S                             
    0084cb00  ti_sysbios_gates_GateHwi_Instance_init__E                             
    0085060c  ti_sysbios_gates_GateHwi_Module__FXNS__C                              
    00855a34  ti_sysbios_gates_GateHwi_Module__root__V                              
    00850720  ti_sysbios_gates_GateHwi_Object__DESC__C                              
    0085084c  ti_sysbios_gates_GateHwi_Object__PARAMS__C                            
    0084a5c0  ti_sysbios_gates_GateHwi_Object__create__S                            
    0084b6a0  ti_sysbios_gates_GateHwi_Object__delete__S                            
    00855a90  ti_sysbios_gates_GateHwi_Object__table__V                             
    0084cb20  ti_sysbios_gates_GateHwi_enter__E                                     
    0084cb40  ti_sysbios_gates_GateHwi_leave__E                                     
    0084cb60  ti_sysbios_gates_GateHwi_query__E                                     
    008509e8  ti_sysbios_gates_GateMutex_A_badContext__C                            
    0084b6e0  ti_sysbios_gates_GateMutex_Handle__label__S                           
    008509ec  ti_sysbios_gates_GateMutex_Instance_State_sem__O                      
    0084cb80  ti_sysbios_gates_GateMutex_Instance_finalize__E                       
    0084b720  ti_sysbios_gates_GateMutex_Instance_init__E                           
    00850630  ti_sysbios_gates_GateMutex_Module__FXNS__C                            
    008509f0  ti_sysbios_gates_GateMutex_Module__diagsEnabled__C                    
    008509f4  ti_sysbios_gates_GateMutex_Module__diagsIncluded__C                   
    008509f8  ti_sysbios_gates_GateMutex_Module__diagsMask__C                       
    00850c1e  ti_sysbios_gates_GateMutex_Module__id__C                              
    00855a3c  ti_sysbios_gates_GateMutex_Module__root__V                            
    00850740  ti_sysbios_gates_GateMutex_Object__DESC__C                            
    00850864  ti_sysbios_gates_GateMutex_Object__PARAMS__C                          
    0084a620  ti_sysbios_gates_GateMutex_Object__create__S                          
    0084b760  ti_sysbios_gates_GateMutex_Object__delete__S                          
    00855758  ti_sysbios_gates_GateMutex_Object__table__V                           
    00840a00  ti_sysbios_gates_GateMutex_enter__E                                   
    0084b7a0  ti_sysbios_gates_GateMutex_leave__E                                   
    0084cba0  ti_sysbios_gates_GateMutex_query__E                                   
    008509fc  ti_sysbios_hal_Hwi_E_stackOverflow__C                                 
    0084cbc0  ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S                    
    0084cbe0  ti_sysbios_hal_Hwi_HwiProxy_clearInterrupt__E                         
    0084cc00  ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E                       
    0084cc20  ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E                        
    0084b7e0  ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E                           
    0084cc40  ti_sysbios_hal_Hwi_HwiProxy_startup__E                                
    0084cc60  ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E                    
    00850c20  ti_sysbios_hal_Hwi_Module__id__C                                      
    0084cc80  ti_sysbios_hal_Hwi_Module_startup__E                                  
    00855a48  ti_sysbios_hal_Hwi_Object__table__V                                   
    008492e0  ti_sysbios_hal_Hwi_checkStack                                         
    0084cbe0  ti_sysbios_hal_Hwi_clearInterrupt__E                                  
    0084cc00  ti_sysbios_hal_Hwi_disableInterrupt__E                                
    0084cc20  ti_sysbios_hal_Hwi_enableInterrupt__E                                 
    0084b7e0  ti_sysbios_hal_Hwi_getStackInfo__E                                    
    00849360  ti_sysbios_hal_Hwi_initStack                                          
    0084cc40  ti_sysbios_hal_Hwi_startup__E                                         
    0084cc60  ti_sysbios_hal_Hwi_switchFromBootStack__E                             
    00850a00  ti_sysbios_heaps_HeapBuf_Instance_State_freeList__O                   
    008556ac  ti_sysbios_heaps_HeapBuf_Module__state__V                             
    008425e0  ti_sysbios_heaps_HeapBuf_Module_startup__E                            
    00850a04  ti_sysbios_heaps_HeapBuf_Object__count__C                             
    0084b820  ti_sysbios_heaps_HeapBuf_Object__get__S                               
    00850a08  ti_sysbios_heaps_HeapBuf_numConstructedHeaps__C                       
    00850a0c  ti_sysbios_heaps_HeapMem_A_align__C                                   
    00850a10  ti_sysbios_heaps_HeapMem_A_heapSize__C                                
    00850a14  ti_sysbios_heaps_HeapMem_A_invalidFree__C                             
    00850a18  ti_sysbios_heaps_HeapMem_A_zeroBlock__C                               
    00850a1c  ti_sysbios_heaps_HeapMem_E_memory__C                                  
    0084b860  ti_sysbios_heaps_HeapMem_Handle__label__S                             
    00800000  ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A                      
    0083c940  ti_sysbios_heaps_HeapMem_Instance_init__E                             
    0084cca0  ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E                    
    0084ccc0  ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E                    
    0084cce0  ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E                    
    00850598  ti_sysbios_heaps_HeapMem_Module__FXNS__C                              
    00850a20  ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C                      
    00850a24  ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C                     
    00850a28  ti_sysbios_heaps_HeapMem_Module__diagsMask__C                         
    00850a2c  ti_sysbios_heaps_HeapMem_Module__gateObj__C                           
    00850c22  ti_sysbios_heaps_HeapMem_Module__id__C                                
    00855a50  ti_sysbios_heaps_HeapMem_Module__root__V                              
    00850760  ti_sysbios_heaps_HeapMem_Object__DESC__C                              
    00850654  ti_sysbios_heaps_HeapMem_Object__PARAMS__C                            
    00850a30  ti_sysbios_heaps_HeapMem_Object__count__C                             
    0084a680  ti_sysbios_heaps_HeapMem_Object__create__S                            
    0084b8a0  ti_sysbios_heaps_HeapMem_Object__delete__S                            
    0084a6e0  ti_sysbios_heaps_HeapMem_Object__get__S                               
    00850a34  ti_sysbios_heaps_HeapMem_Object__table__C                             
    008559b0  ti_sysbios_heaps_HeapMem_Object__table__V                             
    00837220  ti_sysbios_heaps_HeapMem_allocUnprotected__E                          
    00846a80  ti_sysbios_heaps_HeapMem_alloc__E                                     
    008389e0  ti_sysbios_heaps_HeapMem_freeUnprotected__E                           
    0084a740  ti_sysbios_heaps_HeapMem_free__E                                      
    008475a0  ti_sysbios_heaps_HeapMem_getStats__E                                  
    008493e0  ti_sysbios_heaps_HeapMem_init__I                                      
    0084cd00  ti_sysbios_heaps_HeapMem_isBlocking__E                                
    00850a38  ti_sysbios_heaps_HeapMem_reqAlign__C                                  
    00850a3c  ti_sysbios_knl_Clock_LM_begin__C                                      
    00850a40  ti_sysbios_knl_Clock_LM_tick__C                                       
    00850a44  ti_sysbios_knl_Clock_LW_delayed__C                                    
    00850a48  ti_sysbios_knl_Clock_Module_State_clockQ__O                           
    00850a4c  ti_sysbios_knl_Clock_Module__diagsEnabled__C                          
    00850a50  ti_sysbios_knl_Clock_Module__diagsIncluded__C                         
    00850a54  ti_sysbios_knl_Clock_Module__diagsMask__C                             
    00850c24  ti_sysbios_knl_Clock_Module__id__C                                    
    00850c26  ti_sysbios_knl_Clock_Module__loggerDefined__C                         
    00850a58  ti_sysbios_knl_Clock_Module__loggerFxn1__C                            
    00850a5c  ti_sysbios_knl_Clock_Module__loggerFxn2__C                            
    00850a60  ti_sysbios_knl_Clock_Module__loggerObj__C                             
    008558e8  ti_sysbios_knl_Clock_Module__state__V                                 
    0084a7a0  ti_sysbios_knl_Clock_Module_startup__E                                
    0084cd20  ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S                
    0084cd40  ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E                        
    0084a800  ti_sysbios_knl_Clock_doTick__I                                        
    00847660  ti_sysbios_knl_Clock_logTick__E                                       
    0083d1c0  ti_sysbios_knl_Clock_workFunc__E                                      
    00850968  ti_sysbios_knl_Idle_funcList__A                                       
    00850970  ti_sysbios_knl_Idle_funcList__C                                       
    0084cd60  ti_sysbios_knl_Idle_loop__E                                           
    00849460  ti_sysbios_knl_Idle_run__E                                            
    0084cd80  ti_sysbios_knl_Queue_Instance_init__E                                 
    00855a58  ti_sysbios_knl_Queue_Module__root__V                                  
    00850780  ti_sysbios_knl_Queue_Object__DESC__C                                  
    0085087c  ti_sysbios_knl_Queue_Object__PARAMS__C                                
    0084b920  ti_sysbios_knl_Queue_Object__get__S                                   
    0084a860  ti_sysbios_knl_Queue_construct                                        
    0084b960  ti_sysbios_knl_Queue_destruct                                         
    0084cda0  ti_sysbios_knl_Queue_empty__E                                         
    00850a64  ti_sysbios_knl_Semaphore_A_badContext__C                              
    00850a68  ti_sysbios_knl_Semaphore_A_noEvents__C                                
    00850a6c  ti_sysbios_knl_Semaphore_A_overflow__C                                
    00850a70  ti_sysbios_knl_Semaphore_A_pendTaskDisabled__C                        
    00850a74  ti_sysbios_knl_Semaphore_Instance_State_pendQ__O                      
    0084cdc0  ti_sysbios_knl_Semaphore_Instance_finalize__E                         
    00843b60  ti_sysbios_knl_Semaphore_Instance_init__E                             
    00850a78  ti_sysbios_knl_Semaphore_LM_pend__C                                   
    00850a7c  ti_sysbios_knl_Semaphore_LM_post__C                                   
    00850a80  ti_sysbios_knl_Semaphore_Module__diagsEnabled__C                      
    00850a84  ti_sysbios_knl_Semaphore_Module__diagsIncluded__C                     
    00850a88  ti_sysbios_knl_Semaphore_Module__diagsMask__C                         
    00850c28  ti_sysbios_knl_Semaphore_Module__id__C                                
    00850c2a  ti_sysbios_knl_Semaphore_Module__loggerDefined__C                     
    00850a8c  ti_sysbios_knl_Semaphore_Module__loggerFxn2__C                        
    00850a90  ti_sysbios_knl_Semaphore_Module__loggerFxn4__C                        
    00850a94  ti_sysbios_knl_Semaphore_Module__loggerObj__C                         
    00855a60  ti_sysbios_knl_Semaphore_Module__root__V                              
    008507a0  ti_sysbios_knl_Semaphore_Object__DESC__C                              
    00850678  ti_sysbios_knl_Semaphore_Object__PARAMS__C                            
    0084b9a0  ti_sysbios_knl_Semaphore_Params__init__S                              
    0084a8c0  ti_sysbios_knl_Semaphore_construct                                    
    0084b9e0  ti_sysbios_knl_Semaphore_destruct                                     
    008494e0  ti_sysbios_knl_Semaphore_pendTimeout__I                               
    00835000  ti_sysbios_knl_Semaphore_pend__E                                      
    0083b600  ti_sysbios_knl_Semaphore_post__E                                      
    00850a98  ti_sysbios_knl_Swi_LD_end__C                                          
    00850a9c  ti_sysbios_knl_Swi_LM_begin__C                                        
    00850aa0  ti_sysbios_knl_Swi_LM_post__C                                         
    00855548  ti_sysbios_knl_Swi_Module_State_0_readyQ__A                           
    00850aa4  ti_sysbios_knl_Swi_Module__diagsEnabled__C                            
    00850aa8  ti_sysbios_knl_Swi_Module__diagsIncluded__C                           
    00850aac  ti_sysbios_knl_Swi_Module__diagsMask__C                               
    00850c2c  ti_sysbios_knl_Swi_Module__id__C                                      
    00850c2e  ti_sysbios_knl_Swi_Module__loggerDefined__C                           
    00850ab0  ti_sysbios_knl_Swi_Module__loggerFxn1__C                              
    00850ab4  ti_sysbios_knl_Swi_Module__loggerFxn4__C                              
    00850ab8  ti_sysbios_knl_Swi_Module__loggerObj__C                               
    00855994  ti_sysbios_knl_Swi_Module__state__V                                   
    0084a920  ti_sysbios_knl_Swi_Module_startup__E                                  
    00850abc  ti_sysbios_knl_Swi_Object__count__C                                   
    0084ba20  ti_sysbios_knl_Swi_Object__get__S                                     
    00850ac0  ti_sysbios_knl_Swi_Object__table__C                                   
    008558b8  ti_sysbios_knl_Swi_Object__table__V                                   
    0084cde0  ti_sysbios_knl_Swi_disable__E                                         
    008433a0  ti_sysbios_knl_Swi_post__E                                            
    008449c0  ti_sysbios_knl_Swi_restoreHwi__E                                      
    0083c640  ti_sysbios_knl_Swi_runLoop__I                                         
    0083f3c0  ti_sysbios_knl_Swi_run__I                                             
    008457e0  ti_sysbios_knl_Swi_schedule__I                                        
    00846b60  ti_sysbios_knl_Swi_startup__E                                         
    00850ac4  ti_sysbios_knl_Task_A_badTimeout__C                                   
    00850ac8  ti_sysbios_knl_Task_A_sleepTaskDisabled__C                            
    008534c8  ti_sysbios_knl_Task_Instance_State_0_hookEnv__A                       
    00850c80  ti_sysbios_knl_Task_Instance_State_0_stack__A                         
    008534d0  ti_sysbios_knl_Task_Instance_State_1_hookEnv__A                       
    00851c80  ti_sysbios_knl_Task_Instance_State_1_stack__A                         
    00850acc  ti_sysbios_knl_Task_LD_block__C                                       
    00850ad0  ti_sysbios_knl_Task_LD_exit__C                                        
    00850ad4  ti_sysbios_knl_Task_LD_ready__C                                       
    00850ad8  ti_sysbios_knl_Task_LM_sleep__C                                       
    00850adc  ti_sysbios_knl_Task_LM_switch__C                                      
    00855a98  ti_sysbios_knl_Task_Module_State_0_idleTask__A                        
    00855918  ti_sysbios_knl_Task_Module_State_0_readyQ__A                          
    00850ae0  ti_sysbios_knl_Task_Module_State_inactiveQ__O                         
    00850ae4  ti_sysbios_knl_Task_Module__diagsEnabled__C                           
    00850ae8  ti_sysbios_knl_Task_Module__diagsIncluded__C                          
    00850aec  ti_sysbios_knl_Task_Module__diagsMask__C                              
    00850c30  ti_sysbios_knl_Task_Module__id__C                                     
    00850c32  ti_sysbios_knl_Task_Module__loggerDefined__C                          
    00850af0  ti_sysbios_knl_Task_Module__loggerFxn2__C                             
    00850af4  ti_sysbios_knl_Task_Module__loggerFxn4__C                             
    00850af8  ti_sysbios_knl_Task_Module__loggerObj__C                              
    00855a0c  ti_sysbios_knl_Task_Module__root__V                                   
    00855710  ti_sysbios_knl_Task_Module__state__V                                  
    00843ca0  ti_sysbios_knl_Task_Module_startup__E                                 
    00850afc  ti_sysbios_knl_Task_Object__count__C                                  
    0084a980  ti_sysbios_knl_Task_Object__get__S                                    
    00850b00  ti_sysbios_knl_Task_Object__table__C                                  
    00855210  ti_sysbios_knl_Task_Object__table__V                                  
    0084ce00  ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S               
    0084ce20  ti_sysbios_knl_Task_SupportProxy_start__E                             
    0084ce40  ti_sysbios_knl_Task_SupportProxy_swap__E                              
    00850b04  ti_sysbios_knl_Task_allBlockedFunc__C                                 
    00847720  ti_sysbios_knl_Task_allBlockedFunction__I                             
    00843de0  ti_sysbios_knl_Task_blockI__E                                         
    0084ce60  ti_sysbios_knl_Task_disable__E                                        
    0084a9e0  ti_sysbios_knl_Task_enter__I                                          
    0083e160  ti_sysbios_knl_Task_exit__E                                           
    00850898  ti_sysbios_knl_Task_hooks__A                                          
    00850978  ti_sysbios_knl_Task_hooks__C                                          
    00850b08  ti_sysbios_knl_Task_numConstructedTasks__C                            
    0083dc60  ti_sysbios_knl_Task_postInit__I                                       
    0083f5e0  ti_sysbios_knl_Task_schedule__I                                       
    0084ba60  ti_sysbios_knl_Task_sleepTimeout__I                                   
    00838fa0  ti_sysbios_knl_Task_sleep__E                                          
    00840440  ti_sysbios_knl_Task_startCore__E                                      
    0084ce80  ti_sysbios_knl_Task_startup__E                                        
    008458e0  ti_sysbios_knl_Task_unblockI__E                                       
    00850b0c  ti_sysbios_timers_timer64_Timer_A_notAvailable__C                     
    00850b10  ti_sysbios_timers_timer64_Timer_E_cannotSupport__C                    
    00855150  ti_sysbios_timers_timer64_Timer_Module_State_0_device__A              
    00855798  ti_sysbios_timers_timer64_Timer_Module_State_0_gctrl__A               
    008557d8  ti_sysbios_timers_timer64_Timer_Module_State_0_handles__A             
    00855818  ti_sysbios_timers_timer64_Timer_Module_State_0_intFreqs__A            
    00850b14  ti_sysbios_timers_timer64_Timer_Module__diagsEnabled__C               
    00850b18  ti_sysbios_timers_timer64_Timer_Module__diagsIncluded__C              
    00850b1c  ti_sysbios_timers_timer64_Timer_Module__diagsMask__C                  
    00850c34  ti_sysbios_timers_timer64_Timer_Module__id__C                         
    0084baa0  ti_sysbios_timers_timer64_Timer_Module__startupDone__F                
    0084cea0  ti_sysbios_timers_timer64_Timer_Module__startupDone__S                
    008559c8  ti_sysbios_timers_timer64_Timer_Module__state__V                      
    00835e80  ti_sysbios_timers_timer64_Timer_Module_startup__E                     
    00854230  ti_sysbios_timers_timer64_Timer_Object__table__V                      
    0084cec0  ti_sysbios_timers_timer64_Timer_TimerSupportProxy_enable__E           
    00850b20  ti_sysbios_timers_timer64_Timer_anyMaskHigh__C                        
    00850b24  ti_sysbios_timers_timer64_Timer_anyMask__C                            
    0083c320  ti_sysbios_timers_timer64_Timer_deviceConfig__I                       
    00850b28  ti_sysbios_timers_timer64_Timer_freqDivisor__C                        
    00841a20  ti_sysbios_timers_timer64_Timer_getFreq__E                            
    0084cee0  ti_sysbios_timers_timer64_Timer_getMaxTicks__E                        
    008459e0  ti_sysbios_timers_timer64_Timer_initDevice__I                         
    0084f461  ti_sysbios_timers_timer64_Timer_localTimerBaseId__C                   
    00850b2c  ti_sysbios_timers_timer64_Timer_numLocalTimers__C                     
    00850b30  ti_sysbios_timers_timer64_Timer_numTimerDevices__C                    
    0083f800  ti_sysbios_timers_timer64_Timer_setPeriodMicroSecs__E                 
    00841be0  ti_sysbios_timers_timer64_Timer_start__E                              
    00850c36  ti_sysbios_timers_timer64_Timer_startupNeeded__C                      
    00846c40  ti_sysbios_timers_timer64_Timer_startup__E                            
    008486e0  ti_sysbios_timers_timer64_Timer_stop__E                               
    00850c38  ti_sysbios_timers_timer64_Timer_useTimer64pRegMap__C                  
    00850b34  ti_sysbios_utils_Load_LS_cpuLoad__C                                   
    00855aa0  ti_sysbios_utils_Load_Module_State_0_runningTask__A                   
    00855aa8  ti_sysbios_utils_Load_Module_State_0_taskStartTime__A                 
    00850b38  ti_sysbios_utils_Load_Module__diagsEnabled__C                         
    00850b3c  ti_sysbios_utils_Load_Module__diagsIncluded__C                        
    00850b40  ti_sysbios_utils_Load_Module__diagsMask__C                            
    00850c3a  ti_sysbios_utils_Load_Module__id__C                                   
    00850c3c  ti_sysbios_utils_Load_Module__loggerDefined__C                        
    00850b44  ti_sysbios_utils_Load_Module__loggerFxn1__C                           
    00850b48  ti_sysbios_utils_Load_Module__loggerObj__C                            
    008554ac  ti_sysbios_utils_Load_Module__state__V                                
    00840be0  ti_sysbios_utils_Load_idleFxn__E                                      
    00850b4c  ti_sysbios_utils_Load_postUpdate__C                                   
    00850c3e  ti_sysbios_utils_Load_updateInIdle__C                                 
    0083e3c0  ti_sysbios_utils_Load_updateLoads__E                                  
    0084cf00  ti_sysbios_utils_Load_update__E                                       
    00850b50  ti_sysbios_utils_Load_windowInMs__C                                   
    0084bae0  ti_uia_loggers_LoggerStopMode_Handle__label__S                        
    00854200  ti_uia_loggers_LoggerStopMode_Instance_State_0_hdr__A                 
    00853d00  ti_uia_loggers_LoggerStopMode_Instance_State_0_packetArray__A         
    00854280  ti_uia_loggers_LoggerStopMode_Instance_State_1_hdr__A                 
    00853500  ti_uia_loggers_LoggerStopMode_Instance_State_1_packetArray__A         
    00854300  ti_uia_loggers_LoggerStopMode_Instance_State_2_hdr__A                 
    00853900  ti_uia_loggers_LoggerStopMode_Instance_State_2_packetArray__A         
    0084bb20  ti_uia_loggers_LoggerStopMode_Instance_init__E                        
    008502c8  ti_uia_loggers_LoggerStopMode_Module__FXNS__C                         
    00850b54  ti_uia_loggers_LoggerStopMode_Module__diagsEnabled__C                 
    00850b58  ti_uia_loggers_LoggerStopMode_Module__diagsIncluded__C                
    00850b5c  ti_uia_loggers_LoggerStopMode_Module__diagsMask__C                    
    00850c40  ti_uia_loggers_LoggerStopMode_Module__id__C                           
    00855a68  ti_uia_loggers_LoggerStopMode_Module__root__V                         
    00845ae0  ti_uia_loggers_LoggerStopMode_Module_startup__E                       
    008507c0  ti_uia_loggers_LoggerStopMode_Object__DESC__C                         
    008504e8  ti_uia_loggers_LoggerStopMode_Object__PARAMS__C                       
    00850b60  ti_uia_loggers_LoggerStopMode_Object__count__C                        
    0084aa40  ti_uia_loggers_LoggerStopMode_Object__create__S                       
    0084bb60  ti_uia_loggers_LoggerStopMode_Object__delete__S                       
    0084aaa0  ti_uia_loggers_LoggerStopMode_Object__get__S                          
    00850b64  ti_uia_loggers_LoggerStopMode_Object__table__C                        
    00855410  ti_uia_loggers_LoggerStopMode_Object__table__V                        
    0084bba0  ti_uia_loggers_LoggerStopMode_disable__E                              
    0084bbe0  ti_uia_loggers_LoggerStopMode_enable__E                               
    008477e0  ti_uia_loggers_LoggerStopMode_flush__E                                
    0084cf20  ti_uia_loggers_LoggerStopMode_getContents__E                          
    0084cf40  ti_uia_loggers_LoggerStopMode_getFilterLevel__E                       
    0084cf60  ti_uia_loggers_LoggerStopMode_getInstanceId__E                        
    0084cf80  ti_uia_loggers_LoggerStopMode_getMaxLength__E                         
    0084cfa0  ti_uia_loggers_LoggerStopMode_getPriority__E                          
    0084cfc0  ti_uia_loggers_LoggerStopMode_getTransferType__E                      
    0084ab00  ti_uia_loggers_LoggerStopMode_initBuffer__I                           
    00843f20  ti_uia_loggers_LoggerStopMode_initQueueDescriptor__E                  
    0084cfe0  ti_uia_loggers_LoggerStopMode_isEmpty__E                              
    00850c42  ti_uia_loggers_LoggerStopMode_isTimestampEnabled__C                   
    00850b68  ti_uia_loggers_LoggerStopMode_numCores__C                             
    0084ab60  ti_uia_loggers_LoggerStopMode_reset__E                                
    0084d000  ti_uia_loggers_LoggerStopMode_setFilterLevel__E                       
    0084d020  ti_uia_loggers_LoggerStopMode_setPriority__E                          
    00848780  ti_uia_loggers_LoggerStopMode_write0__E                               
    008478a0  ti_uia_loggers_LoggerStopMode_write1__E                               
    00846d20  ti_uia_loggers_LoggerStopMode_write2__E                               
    00845be0  ti_uia_loggers_LoggerStopMode_write4__E                               
    00844060  ti_uia_loggers_LoggerStopMode_write8__E                               
    0083cc20  ti_uia_loggers_LoggerStopMode_writeMemoryRange__E                     
    00850b6c  ti_uia_runtime_ILoggerSnapshot_Interface__BASE__C                     
    00850b70  ti_uia_runtime_IUIATransfer_Interface__BASE__C                        
    00855a18  ti_uia_runtime_QueueDescriptor_Module__state__V                       
    00845ce0  ti_uia_runtime_QueueDescriptor_addToList__E                           
    00856e94  ti_uia_runtime_QueueDescriptor_gPtrToFirstDescriptor                  
    00856e98  ti_uia_runtime_QueueDescriptor_gUpdateCount                           
    00843220  ti_utils_entry                                                        
    0084abc0  ti_utils_exit                                                         
    00854f90  uartInitCfg                                                           
    00855a70  uart_stdio                                                            
    008495e0  unlink                                                                
    00856e8c  waddress                                                              
    0084bc60  wcslen                                                                
    0084ac80  write                                                                 
    00000001  xdc_rov_runtime_Mon__checksum                                         
    00000001  xdc_rov_runtime_Mon__write                                            
    00850b74  xdc_runtime_Assert_E_assertFailed__C                                  
    00847a20  xdc_runtime_Assert_raise__I                                           
    00850b78  xdc_runtime_Core_A_initializedParams__C                               
    00850b7c  xdc_runtime_Core_Module__diagsEnabled__C                              
    00850b80  xdc_runtime_Core_Module__diagsIncluded__C                             
    00850b84  xdc_runtime_Core_Module__diagsMask__C                                 
    00850c44  xdc_runtime_Core_Module__id__C                                        
    00849660  xdc_runtime_Core_assignLabel__I                                       
    008488c0  xdc_runtime_Core_assignParams__I                                      
    00842780  xdc_runtime_Core_constructObject__I                                   
    0083f180  xdc_runtime_Core_createObject__I                                      
    008441a0  xdc_runtime_Core_deleteObject__I                                      
    00850b88  xdc_runtime_Error_E_memory__C                                         
    00855938  xdc_runtime_Error_IgnoreBlock                                         
    00850b8c  xdc_runtime_Error_Module__diagsEnabled__C                             
    00850b90  xdc_runtime_Error_Module__diagsIncluded__C                            
    00850b94  xdc_runtime_Error_Module__diagsMask__C                                
    00850c46  xdc_runtime_Error_Module__loggerDefined__C                            
    00850b98  xdc_runtime_Error_Module__loggerFxn8__C                               
    00850b9c  xdc_runtime_Error_Module__loggerObj__C                                
    008559fc  xdc_runtime_Error_Module__state__V                                    
    0084bca0  xdc_runtime_Error_check__E                                            
    0084d060  xdc_runtime_Error_getSite__E                                          
    0084bce0  xdc_runtime_Error_init__E                                             
    00850c48  xdc_runtime_Error_maxDepth__C                                         
    0083fa20  xdc_runtime_Error_policyDefault__E                                    
    00850ba0  xdc_runtime_Error_policyFxn__C                                        
    00850ba4  xdc_runtime_Error_policy__C                                           
    00845de0  xdc_runtime_Error_print__E                                            
    00850ba8  xdc_runtime_Error_raiseHook__C                                        
    0084d080  xdc_runtime_Error_raiseX__E                                           
    00847ae0  xdc_runtime_Error_setX__E                                             
    0084d0a0  xdc_runtime_Gate_enterSystem__E                                       
    0084d0c0  xdc_runtime_Gate_leaveSystem__E                                       
    00850bac  xdc_runtime_IFilterLogger_Interface__BASE__C                          
    00850bb0  xdc_runtime_IGateProvider_Interface__BASE__C                          
    00850bb4  xdc_runtime_IHeap_Interface__BASE__C                                  
    00850bb8  xdc_runtime_ILogger_Interface__BASE__C                                
    00850bbc  xdc_runtime_IModule_Interface__BASE__C                                
    00850bc0  xdc_runtime_Log_L_error__C                                            
    00850bc4  xdc_runtime_Main_Module__diagsEnabled__C                              
    00850bc8  xdc_runtime_Main_Module__diagsIncluded__C                             
    00850bcc  xdc_runtime_Main_Module__diagsMask__C                                 
    00850c4a  xdc_runtime_Main_Module__id__C                                        
    008559fe  xdc_runtime_Main_Module__root__V                                      
    0084d0e0  xdc_runtime_Memory_HeapProxy_alloc__E                                 
    0084d100  xdc_runtime_Memory_HeapProxy_free__E                                  
    00850c4c  xdc_runtime_Memory_Module__id__C                                      
    00855914  xdc_runtime_Memory_Module__state__V                                   
    00845ee0  xdc_runtime_Memory_alloc__E                                           
    0084d120  xdc_runtime_Memory_calloc__E                                          
    00850bd0  xdc_runtime_Memory_defaultHeapInstance__C                             
    0084d140  xdc_runtime_Memory_free__E                                            
    0084d160  xdc_runtime_Memory_getMaxDefaultTypeAlign__E                          
    0084ace0  xdc_runtime_Memory_valloc__E                                          
    00855a78  xdc_runtime_Registry_Module__state__V                                 
    0084bda0  xdc_runtime_Registry_findById__E                                      
    00855a80  xdc_runtime_Startup_Module__state__V                                  
    00000001  xdc_runtime_Startup__EXECFXN__C                                       
    00000001  xdc_runtime_Startup__RESETFXN__C                                      
    00850bd4  xdc_runtime_Startup_execImpl__C                                       
    00845fe0  xdc_runtime_Startup_exec__E                                           
    0084bde0  xdc_runtime_Startup_exec__I                                           
    00850980  xdc_runtime_Startup_firstFxns__A                                      
    00850988  xdc_runtime_Startup_firstFxns__C                                      
    00850990  xdc_runtime_Startup_lastFxns__C                                       
    00850bd8  xdc_runtime_Startup_maxPasses__C                                      
    0084d180  xdc_runtime_Startup_reset__I                                          
    0084d1a0  xdc_runtime_Startup_rtsDone__E                                        
    00850800  xdc_runtime_Startup_sfxnRts__A                                        
    00850bdc  xdc_runtime_Startup_sfxnRts__C                                        
    00850450  xdc_runtime_Startup_sfxnTab__A                                        
    00850be0  xdc_runtime_Startup_sfxnTab__C                                        
    00850be4  xdc_runtime_Startup_startModsFxn__C                                   
    0083e620  xdc_runtime_Startup_startMods__I                                      
    008496e0  xdc_runtime_SysStd_abort__E                                           
    0084d1c0  xdc_runtime_SysStd_exit__E                                            
    0084d1e0  xdc_runtime_SysStd_putch__E                                           
    0084d200  xdc_runtime_SysStd_ready__E                                           
    0084d220  xdc_runtime_System_Module_GateProxy_enter__E                          
    0084d240  xdc_runtime_System_Module_GateProxy_leave__E                          
    00855958  xdc_runtime_System_Module_State_0_atexitHandlers__A                   
    00850be8  xdc_runtime_System_Module__gateObj__C                                 
    00855a88  xdc_runtime_System_Module__state__V                                   
    0084d260  xdc_runtime_System_Module_startup__E                                  
    0084d280  xdc_runtime_System_SupportProxy_abort__E                              
    0084d2a0  xdc_runtime_System_SupportProxy_exit__E                               
    0084d2c0  xdc_runtime_System_SupportProxy_putch__E                              
    0084d2e0  xdc_runtime_System_SupportProxy_ready__E                              
    00850bec  xdc_runtime_System_abortFxn__C                                        
    0084c6e0  xdc_runtime_System_abortStd__E                                        
    0084be20  xdc_runtime_System_abort__E                                           
    0084be60  xdc_runtime_System_aprintf__E                                         
    008497e0  xdc_runtime_System_aprintf_va__F                                      
    00849760  xdc_runtime_System_atexit__E                                          
    008497e0  xdc_runtime_System_avprintf__E                                        
    00833fe0  xdc_runtime_System_doPrint__I                                         
    00850bf0  xdc_runtime_System_exitFxn__C                                         
    008468c0  xdc_runtime_System_exitStd__E                                         
    0084bea0  xdc_runtime_System_exit__E                                            
    00850bf4  xdc_runtime_System_extendFxn__C                                       
    00848960  xdc_runtime_System_formatNum__I                                       
    00850bf8  xdc_runtime_System_maxAtexitHandlers__C                               
    0083b960  xdc_runtime_System_printfExtend__I                                    
    0084bee0  xdc_runtime_System_printf__E                                          
    008498e0  xdc_runtime_System_printf_va__F                                       
    00849860  xdc_runtime_System_processAtExit__E                                   
    00848a00  xdc_runtime_System_putchar__I                                         
    0084d300  xdc_runtime_System_snprintf_va__F                                     
    008498e0  xdc_runtime_System_vprintf__E                                         
    0084d300  xdc_runtime_System_vsnprintf__E                                       
    00850c4e  xdc_runtime_Text_charCnt__C                                           
    0084d380  xdc_runtime_Text_charTab__A                                           
    00850bfc  xdc_runtime_Text_charTab__C                                           
    0084ad40  xdc_runtime_Text_cordText__E                                          
    00850c50  xdc_runtime_Text_isLoaded__C                                          
    00850c00  xdc_runtime_Text_nameEmpty__C                                         
    00850c04  xdc_runtime_Text_nameStatic__C                                        
    00850c08  xdc_runtime_Text_nameUnknown__C                                       
    0084ff20  xdc_runtime_Text_nodeTab__A                                           
    00850c0c  xdc_runtime_Text_nodeTab__C                                           
    00848aa0  xdc_runtime_Text_printVisFxn__I                                       
    008442e0  xdc_runtime_Text_putLab__E                                            
    00843500  xdc_runtime_Text_putMod__E                                            
    00840dc0  xdc_runtime_Text_putSite__E                                           
    00850c52  xdc_runtime_Text_registryModsLastId__C                                
    0084d320  xdc_runtime_Text_ropeText__E                                          
    00850c54  xdc_runtime_Text_unnamedModsLastId__C                                 
    00846e00  xdc_runtime_Text_visitRope2__I                                        
    00850c10  xdc_runtime_Text_visitRopeFxn__C                                      
    0084bf20  xdc_runtime_Text_visitRope__I                                         
    00848b40  xdc_runtime_Text_xprintf__I                                           
    0084d340  xdc_runtime_Timestamp_SupportProxy_get32__E                           
    0084d360  xdc_runtime_Timestamp_SupportProxy_getFreq__E                         
    0084d340  xdc_runtime_Timestamp_get32__E                                        
    0084d360  xdc_runtime_Timestamp_getFreq__E                                      
    
    
    GLOBAL SYMBOLS: SORTED BY Symbol Address 
    
    address   name                                                                  
    -------   ----                                                                  
    00000000  _argsize                                                              
    00000000  ti_sysbios_family_c66_Cache_l2Size                                    
    00000001  xdc_rov_runtime_Mon__checksum                                         
    00000001  xdc_rov_runtime_Mon__write                                            
    00000001  xdc_runtime_Startup__EXECFXN__C                                       
    00000001  xdc_runtime_Startup__RESETFXN__C                                      
    00001000  __TI_STACK_SIZE                                                       
    00008000  ti_sysbios_family_c66_Cache_l1dSize                                   
    00008000  ti_sysbios_family_c66_Cache_l1pSize                                   
    00800000  __ASM__                                                               
    00800000  ti_sysbios_heaps_HeapMem_Instance_State_0_buf__A                      
    00800098  __ISA__                                                               
    008000b0  __PLAT__                                                              
    008000d8  __TARG__                                                              
    00800100  __TRDR__                                                              
    00832000  __TI_printfi                                                          
    00833fe0  xdc_runtime_System_doPrint__I                                         
    00834880  ti_sysbios_family_c64p_Exception_handler__I                           
    00835000  ti_sysbios_knl_Semaphore_pend__E                                      
    00835e80  ti_sysbios_timers_timer64_Timer_Module_startup__E                     
    00836580  Board_initI2C                                                         
    008369d0  I2C_test_print_test_desc                                              
    00836a64  i2c_test                                                              
    00836b78  main                                                                  
    00836bb0  I2c_appC7xPreInit                                                     
    00837220  ti_sysbios_heaps_HeapMem_allocUnprotected__E                          
    00837840  __c6xabi_divd                                                         
    00837e40  UART_printf                                                           
    008389e0  ti_sysbios_heaps_HeapMem_freeUnprotected__E                           
    00838fa0  ti_sysbios_knl_Task_sleep__E                                          
    00839480  init_pll                                                              
    0083b260  ti_sysbios_family_c66_Cache_startup__I                                
    0083b600  ti_sysbios_knl_Semaphore_post__E                                      
    0083b960  xdc_runtime_System_printfExtend__I                                    
    0083bcc0  ti_sysbios_family_c66_tci66xx_CpIntc_Module_startup__E                
    0083c320  ti_sysbios_timers_timer64_Timer_deviceConfig__I                       
    0083c640  ti_sysbios_knl_Swi_runLoop__I                                         
    0083c940  ti_sysbios_heaps_HeapMem_Instance_init__E                             
    0083cc20  ti_uia_loggers_LoggerStopMode_writeMemoryRange__E                     
    0083d1c0  ti_sysbios_knl_Clock_workFunc__E                                      
    0083d480  Board_DDR3Init                                                        
    0083d9c0  ti_sysbios_family_c64p_Hwi_reconfig__E                                
    0083dc60  ti_sysbios_knl_Task_postInit__I                                       
    0083df00  ti_sysbios_family_c64p_Hwi_dispatchCore__I                            
    0083e160  ti_sysbios_knl_Task_exit__E                                           
    0083e3c0  ti_sysbios_utils_Load_updateLoads__E                                  
    0083e620  xdc_runtime_Startup_startMods__I                                      
    0083e880  HwiP_create                                                           
    0083eac0  __c6xabi_divull                                                       
    0083ed00  ti_sysbios_family_c64p_EventCombiner_dispatch__E                      
    0083ef40  ti_sysbios_family_c64p_Exception_internalHandler__I                   
    0083f180  xdc_runtime_Core_createObject__I                                      
    0083f3c0  ti_sysbios_knl_Swi_run__I                                             
    0083f5e0  ti_sysbios_knl_Task_schedule__I                                       
    0083f800  ti_sysbios_timers_timer64_Timer_setPeriodMicroSecs__E                 
    0083fa20  xdc_runtime_Error_policyDefault__E                                    
    0083fe40  SemaphoreP_create                                                     
    00840240  ti_sysbios_family_c64p_Hwi_dispatchAlways                             
    00840440  ti_sysbios_knl_Task_startCore__E                                      
    00840820  ti_sysbios_family_c64p_EventCombiner_dispatchPlug__E                  
    00840a00  ti_sysbios_gates_GateMutex_enter__E                                   
    00840be0  ti_sysbios_utils_Load_idleFxn__E                                      
    00840dc0  xdc_runtime_Text_putSite__E                                           
    00840fa0  __c6xabi_divul                                                        
    00841320  fputc                                                                 
    00841320  putc                                                                  
    008414e0  ldexp                                                                 
    008414e0  ldexpl                                                                
    008414e0  scalbn                                                                
    008414e0  scalbnl                                                               
    008416a0  setvbuf                                                               
    00841860  ti_sysbios_family_c66_tci66xx_CpIntc_dispatch__E                      
    00841a20  ti_sysbios_timers_timer64_Timer_getFreq__E                            
    00841be0  ti_sysbios_timers_timer64_Timer_start__E                              
    00841f60  HOSTrename                                                            
    00842100  frexp                                                                 
    00842100  frexpl                                                                
    008422a0  ti_sysbios_family_c66_Cache_block__I                                  
    00842440  ti_sysbios_family_c66_Cache_getL2InitSize__I                          
    008425e0  ti_sysbios_heaps_HeapBuf_Module_startup__E                            
    00842780  xdc_runtime_Core_constructObject__I                                   
    00842920  Board_moduleClockInit                                                 
    00842aa0  Osal_RegisterInterrupt                                                
    00842c20  _auto_init_elf                                                        
    00842da0  ti_sysbios_family_c64p_Exception_dispatch__E                          
    00842f20  ti_sysbios_family_c64p_EventCombiner_disableEvent__E                  
    008430a0  ti_sysbios_family_c64p_EventCombiner_enableEvent__E                   
    00843220  ti_utils_entry                                                        
    008433a0  ti_sysbios_knl_Swi_post__E                                            
    00843500  xdc_runtime_Text_putMod__E                                            
    00843660  Board_init                                                            
    008437a0  EventCombinerP_SingleRegisterInt                                      
    008438e0  I2C_socGetInitCfg                                                     
    00843974  I2C_socSetInitCfg                                                     
    00843a20  ti_sysbios_family_c64p_Hwi_Module_startup__E                          
    00843b60  ti_sysbios_knl_Semaphore_Instance_init__E                             
    00843ca0  ti_sysbios_knl_Task_Module_startup__E                                 
    00843de0  ti_sysbios_knl_Task_blockI__E                                         
    00843f20  ti_uia_loggers_LoggerStopMode_initQueueDescriptor__E                  
    00844060  ti_uia_loggers_LoggerStopMode_write8__E                               
    008441a0  xdc_runtime_Core_deleteObject__I                                      
    008442e0  xdc_runtime_Text_putLab__E                                            
    00844660  getdevice                                                             
    00844780  ti_sysbios_BIOS_rtsUnlock__I                                          
    008448a0  ti_sysbios_family_c64p_Hwi_Instance_init__E                           
    008449c0  ti_sysbios_knl_Swi_restoreHwi__E                                      
    00844ae0  BOARD_delay                                                           
    00844fe0  __TI_closefile                                                        
    008452e0  atoi                                                                  
    008453e0  copy_in                                                               
    008454e0  fflush                                                                
    008455e0  fseek                                                                 
    008456e0  ti_sysbios_family_c64p_Hwi_Instance_finalize__E                       
    008457e0  ti_sysbios_knl_Swi_schedule__I                                        
    008458e0  ti_sysbios_knl_Task_unblockI__E                                       
    008459e0  ti_sysbios_timers_timer64_Timer_initDevice__I                         
    00845ae0  ti_uia_loggers_LoggerStopMode_Module_startup__E                       
    00845be0  ti_uia_loggers_LoggerStopMode_write4__E                               
    00845ce0  ti_uia_runtime_QueueDescriptor_addToList__E                           
    00845de0  xdc_runtime_Error_print__E                                            
    00845ee0  xdc_runtime_Memory_alloc__E                                           
    00845fe0  xdc_runtime_Startup_exec__E                                           
    008460e0  HOSTlseek                                                             
    008461c0  HOSTopen                                                              
    008462a0  HOSTwrite                                                             
    00846620  __TI_ltoa                                                             
    00846700  __TI_wrt_ok                                                           
    008467e0  close                                                                 
    008468c0  exit                                                                  
    008468c0  xdc_runtime_System_exitStd__E                                         
    008469a0  memset                                                                
    00846a80  ti_sysbios_heaps_HeapMem_alloc__E                                     
    00846b60  ti_sysbios_knl_Swi_startup__E                                         
    00846c40  ti_sysbios_timers_timer64_Timer_startup__E                            
    00846d20  ti_uia_loggers_LoggerStopMode_write2__E                               
    00846e00  xdc_runtime_Text_visitRope2__I                                        
    00846ee0  HOSTread                                                              
    00846fa0  HOSTunlink                                                            
    00847060  I2C_init                                                              
    00847120  Osal_delay                                                            
    008472a0  UART_stdioInit                                                        
    00847420  __TI_doflush                                                          
    008474e0  __c6xabi_divu                                                         
    008474e0  __divu                                                                
    008475a0  ti_sysbios_heaps_HeapMem_getStats__E                                  
    00847660  ti_sysbios_knl_Clock_logTick__E                                       
    00847720  ti_sysbios_knl_Task_allBlockedFunction__I                             
    008477e0  ti_uia_loggers_LoggerStopMode_flush__E                                
    008478a0  ti_uia_loggers_LoggerStopMode_write1__E                               
    00847960  __TI_tls_init                                                         
    00847a20  xdc_runtime_Assert_raise__I                                           
    00847ae0  xdc_runtime_Error_setX__E                                             
    00847ba0  HOSTclose                                                             
    00847c40  HwiP_delete                                                           
    00847ce0  Osal_DeleteInterrupt                                                  
    00847d80  SemaphoreP_delete                                                     
    00847e20  UART_init                                                             
    00847ec0  UART_v0_callback                                                      
    00847f60  __TI_cleanup                                                          
    00848000  __c6xabi_remu                                                         
    00848000  __remu                                                                
    008480a0  _c_int00                                                              
    008481e0  ti_sysbios_family_c64p_Hwi_plug__E                                    
    00848280  finddevice                                                            
    00848320  memcpy                                                                
    008483c0  ti_sysbios_family_c64p_Exception_Module_startup__E                    
    00848460  ti_sysbios_family_c64p_Hwi_construct                                  
    00848500  ti_sysbios_family_c64p_Hwi_dispatchC__I                               
    008485a0  ti_sysbios_family_c64p_Hwi_getStackInfo__E                            
    00848640  ti_sysbios_family_c66_tci66xx_CpIntc_mapSysIntToHostInt__E            
    008486e0  ti_sysbios_timers_timer64_Timer_stop__E                               
    00848780  ti_uia_loggers_LoggerStopMode_write0__E                               
    008488c0  xdc_runtime_Core_assignParams__I                                      
    00848960  xdc_runtime_System_formatNum__I                                       
    00848a00  xdc_runtime_System_putchar__I                                         
    00848aa0  xdc_runtime_Text_printVisFxn__I                                       
    00848b40  xdc_runtime_Text_xprintf__I                                           
    00848be0  EventCombinerP_GroupRegisterInt                                       
    00848c60  EventCombinerP_getHwi                                                 
    00848ce0  EventCombinerP_getIntNum                                              
    00848d60  I2C_open                                                              
    00848de0  I2C_transfer                                                          
    00848e60  MuxIntcP_create                                                       
    00848ee0  UART_charPut_v0                                                       
    00848f60  UART_fIFOConfig_v0                                                    
    00848fe0  __TI_readmsg                                                          
    00849060  __c6xabi_llshl                                                        
    008490e0  ti_sysbios_family_c62_TaskSupport_swap__E                             
    00849160  empty_fn                                                              
    008491e0  ti_sysbios_family_c66_Cache_invL1pAll__E                              
    00849260  ti_sysbios_family_c66_tci66xx_CpIntc_getEventId__E                    
    008492e0  ti_sysbios_hal_Hwi_checkStack                                         
    00849360  ti_sysbios_hal_Hwi_initStack                                          
    008493e0  ti_sysbios_heaps_HeapMem_init__I                                      
    00849460  ti_sysbios_knl_Idle_run__E                                            
    008494e0  ti_sysbios_knl_Semaphore_pendTimeout__I                               
    008495e0  remove                                                                
    008495e0  unlink                                                                
    00849660  xdc_runtime_Core_assignLabel__I                                       
    008496e0  xdc_runtime_SysStd_abort__E                                           
    00849760  xdc_runtime_System_atexit__E                                          
    008497e0  xdc_runtime_System_aprintf_va__F                                      
    008497e0  xdc_runtime_System_avprintf__E                                        
    00849860  xdc_runtime_System_processAtExit__E                                   
    008498e0  xdc_runtime_System_printf_va__F                                       
    008498e0  xdc_runtime_System_vprintf__E                                         
    00849960  Board_PLLInit                                                         
    008499c0  I2C_Params_init                                                       
    00849a20  I2C_close                                                             
    00849a80  I2C_transactionInit                                                   
    00849b40  Osal_ClearInterrupt                                                   
    00849ba0  Osal_getHwAttrs                                                       
    00849c00  Osal_getThreadType                                                    
    00849c60  SemaphoreP_Params_init                                                
    00849cc0  SemaphoreP_pend                                                       
    00849d20  UART_divisorLatchWrite_v0                                             
    00849d80  UART_divisorValCompute_v0                                             
    00849de0  UART_fifoWait_v0                                                      
    00849e40  UART_lineCharacConfig_v0                                              
    00849f60  __TI_frcmpyd_div                                                      
    00849fc0  __TI_writemsg                                                         
    0084a018  C$$IO$$                                                               
    0084a020  __c6xabi_llshru                                                       
    0084a080  _subcull                                                              
    0084a0e0  ti_sysbios_family_c64p_Hwi_switchAndDispatch__I                       
    0084a140  ti_sysbios_family_xxx_Hwi_switchAndRunFunc                            
    0084a1a0  lseek                                                                 
    0084a200  memccpy                                                               
    0084a260  mySwitch                                                              
    0084a2c0  sprintf                                                               
    0084a320  ti_sysbios_BIOS_atExitFunc__I                                         
    0084a380  ti_sysbios_BIOS_errorRaiseHook__I                                     
    0084a3e0  ti_sysbios_BIOS_rtsLock__I                                            
    0084a440  ti_sysbios_family_c62_TaskSupport_start__E                            
    0084a4a0  ti_sysbios_family_c64p_EventCombiner_unused__E                        
    0084a500  ti_sysbios_family_c66_Cache_Module_startup__E                         
    0084a560  ti_sysbios_family_c66_tci66xx_CpIntc_unused__E                        
    0084a5c0  ti_sysbios_gates_GateHwi_Object__create__S                            
    0084a620  ti_sysbios_gates_GateMutex_Object__create__S                          
    0084a680  ti_sysbios_heaps_HeapMem_Object__create__S                            
    0084a6e0  ti_sysbios_heaps_HeapMem_Object__get__S                               
    0084a740  ti_sysbios_heaps_HeapMem_free__E                                      
    0084a7a0  ti_sysbios_knl_Clock_Module_startup__E                                
    0084a800  ti_sysbios_knl_Clock_doTick__I                                        
    0084a860  ti_sysbios_knl_Queue_construct                                        
    0084a8c0  ti_sysbios_knl_Semaphore_construct                                    
    0084a920  ti_sysbios_knl_Swi_Module_startup__E                                  
    0084a980  ti_sysbios_knl_Task_Object__get__S                                    
    0084a9e0  ti_sysbios_knl_Task_enter__I                                          
    0084aa40  ti_uia_loggers_LoggerStopMode_Object__create__S                       
    0084aaa0  ti_uia_loggers_LoggerStopMode_Object__get__S                          
    0084ab00  ti_uia_loggers_LoggerStopMode_initBuffer__I                           
    0084ab60  ti_uia_loggers_LoggerStopMode_reset__E                                
    0084abc0  ti_utils_exit                                                         
    0084ac20  UART_putc                                                             
    0084ac80  write                                                                 
    0084ace0  xdc_runtime_Memory_valloc__E                                          
    0084ad40  xdc_runtime_Text_cordText__E                                          
    0084ada0  I2CMasterInitExpClk                                                   
    0084ae60  Osal_DebugP_assert                                                    
    0084aea0  Osal_DisableInterrupt                                                 
    0084aee0  Osal_EnableInterrupt                                                  
    0084af20  Osal_RegisterInterrupt_initParams                                     
    0084af60  SemaphoreP_post                                                       
    0084af60  SemaphoreP_postFromClock                                              
    0084af60  SemaphoreP_postFromISR                                                
    0084afa0  UART_breakCtl_v0                                                      
    0084afe0  UART_charGetNonBlocking2_v0                                           
    0084b020  UART_intDisable_v0                                                    
    0084b060  UART_intEnable_v0                                                     
    0084b0a0  UART_intIdentityGet_v0                                                
    0084b0e0  UART_loopbackModeControl_v0                                           
    0084b120  UART_open                                                             
    0084b160  UART_readLineStatus_v0                                                
    0084b1a0  __c6xabi_isinf                                                        
    0084b220  __c6xabi_strasgi_64plus                                               
    0084b220  __strasgi_64plus                                                      
    0084b260  _args_main                                                            
    0084b2e0  ti_sysbios_family_c62_TaskSupport_buildTaskStack                      
    0084b320  free                                                                  
    0084b360  ti_sysbios_BIOS_exitFunc__I                                           
    0084b3a0  ti_sysbios_BIOS_registerRTSLock__I                                    
    0084b3e0  ti_sysbios_BIOS_removeRTSLock__I                                      
    0084b420  ti_sysbios_BIOS_startFunc__I                                          
    0084b460  ti_sysbios_family_c64p_EventCombiner_Module_startup__E                
    0084b4a0  ti_sysbios_family_c64p_Hwi_Module__startupDone__F                     
    0084b4e0  ti_sysbios_family_c64p_Hwi_Params__init__S                            
    0084b520  ti_sysbios_family_c64p_Hwi_destruct                                   
    0084b560  ti_sysbios_family_c64p_Hwi_disableInterrupt__E                        
    0084b5a0  ti_sysbios_family_c64p_Hwi_enableInterrupt__E                         
    0084b5e0  ti_sysbios_family_c64p_Hwi_getEventId__E                              
    0084b620  ti_sysbios_family_c66_tci66xx_CpIntc_dispatchPlug__E                  
    0084b660  ti_sysbios_gates_GateHwi_Handle__label__S                             
    0084b6a0  ti_sysbios_gates_GateHwi_Object__delete__S                            
    0084b6e0  ti_sysbios_gates_GateMutex_Handle__label__S                           
    0084b720  ti_sysbios_gates_GateMutex_Instance_init__E                           
    0084b760  ti_sysbios_gates_GateMutex_Object__delete__S                          
    0084b7a0  ti_sysbios_gates_GateMutex_leave__E                                   
    0084b7e0  ti_sysbios_hal_Hwi_HwiProxy_getStackInfo__E                           
    0084b7e0  ti_sysbios_hal_Hwi_getStackInfo__E                                    
    0084b820  ti_sysbios_heaps_HeapBuf_Object__get__S                               
    0084b860  ti_sysbios_heaps_HeapMem_Handle__label__S                             
    0084b8a0  ti_sysbios_heaps_HeapMem_Object__delete__S                            
    0084b920  ti_sysbios_knl_Queue_Object__get__S                                   
    0084b960  ti_sysbios_knl_Queue_destruct                                         
    0084b9a0  ti_sysbios_knl_Semaphore_Params__init__S                              
    0084b9e0  ti_sysbios_knl_Semaphore_destruct                                     
    0084ba20  ti_sysbios_knl_Swi_Object__get__S                                     
    0084ba60  ti_sysbios_knl_Task_sleepTimeout__I                                   
    0084baa0  ti_sysbios_timers_timer64_Timer_Module__startupDone__F                
    0084bae0  ti_uia_loggers_LoggerStopMode_Handle__label__S                        
    0084bb20  ti_uia_loggers_LoggerStopMode_Instance_init__E                        
    0084bb60  ti_uia_loggers_LoggerStopMode_Object__delete__S                       
    0084bba0  ti_uia_loggers_LoggerStopMode_disable__E                              
    0084bbe0  ti_uia_loggers_LoggerStopMode_enable__E                               
    0084bc60  wcslen                                                                
    0084bca0  xdc_runtime_Error_check__E                                            
    0084bce0  xdc_runtime_Error_init__E                                             
    0084bda0  xdc_runtime_Registry_findById__E                                      
    0084bde0  xdc_runtime_Startup_exec__I                                           
    0084be20  xdc_runtime_System_abort__E                                           
    0084be60  xdc_runtime_System_aprintf__E                                         
    0084bea0  xdc_runtime_System_exit__E                                            
    0084bee0  xdc_runtime_System_printf__E                                          
    0084bf20  xdc_runtime_Text_visitRope__I                                         
    0084bfa0  Board_getNumPSCconfigs                                                
    0084bfc0  Board_getNumPllcConfigs                                               
    0084bfe0  Board_pinmuxConfig                                                    
    0084c000  Board_uartStdioInit                                                   
    0084c040  EventCombinerP_disableEvent                                           
    0084c060  EventCombinerP_dispatchPlug                                           
    0084c080  EventCombinerP_enableEvent                                            
    0084c0a0  HwiP_Params_init                                                      
    0084c0c0  HwiP_clearInterrupt                                                   
    0084c0e0  HwiP_disable                                                          
    0084c100  HwiP_disableInterrupt                                                 
    0084c120  HwiP_enableInterrupt                                                  
    0084c140  HwiP_restore                                                          
    0084c160  I2CIntVectGet                                                         
    0084c180  I2CMasterBusBusy                                                      
    0084c1a0  I2CMasterControl                                                      
    0084c1c0  I2CMasterDataGet                                                      
    0084c1e0  I2CMasterDataPut                                                      
    0084c200  I2CMasterDisable                                                      
    0084c220  I2CMasterEnable                                                       
    0084c240  I2CMasterErr                                                          
    0084c260  I2CMasterIntClearEx                                                   
    0084c280  I2CMasterIntDisableEx                                                 
    0084c2a0  I2CMasterIntEnableEx                                                  
    0084c2c0  I2CMasterIntStatusEx                                                  
    0084c2e0  I2CMasterSlaveAddrSet                                                 
    0084c300  I2CMasterStart                                                        
    0084c320  I2CMasterStop                                                         
    0084c340  I2CModeControl                                                        
    0084c360  I2COwnAddressSet                                                      
    0084c380  I2CSetDataCount                                                       
    0084c3a0  I2CSlaveEnable                                                        
    0084c3c0  MuxIntcP_clearInEvent                                                 
    0084c3e0  MuxIntcP_disableOutEvent                                              
    0084c400  MuxIntcP_enableOutEvent                                               
    0084c420  TaskRegisterId                                                        
    0084c440  UART_Params_init                                                      
    0084c480  UART_divisorLatchDisable_v0                                           
    0084c4a0  UART_fIFOCharPut_v0                                                   
    0084c4c0  UART_fifoEmpty_v0                                                     
    0084c500  UART_operatingModeSelect_v0                                           
    0084c520  UART_pwremuConfig_v0                                                  
    0084c540  UART_write                                                            
    0084c560  UART_writePolling                                                     
    0084c580  __c6xabi_errno_addr                                                   
    0084c5a0  __c6xabi_pop_rts                                                      
    0084c5a0  __pop_rts                                                             
    0084c5c0  __c6xabi_push_rts                                                     
    0084c5c0  __push_rts                                                            
    0084c5e0  _nop                                                                  
    0084c620  _register_lock                                                        
    0084c640  _register_synch_api                                                   
    0084c660  _register_unlock                                                      
    0084c680  _signbit                                                              
    0084c6a0  _system_post_cinit                                                    
    0084c6c0  ti_sysbios_family_c62_TaskSupport_glue                                
    0084c6e0  C$$EXIT                                                               
    0084c6e0  abort                                                                 
    0084c6e0  xdc_runtime_System_abortStd__E                                        
    0084c700  __TI_decompress_none                                                  
    0084c720  __TI_decompress_rle24                                                 
    0084c740  malloc                                                                
    0084c780  putchar                                                               
    0084c7a0  ti_sysbios_BIOS_RtsGateProxy_enter__E                                 
    0084c7c0  ti_sysbios_BIOS_RtsGateProxy_leave__E                                 
    0084c7e0  ti_sysbios_BIOS_getCpuFreq__E                                         
    0084c7e0  ti_sysbios_family_c64p_TimestampProvider_getFreq__E                   
    0084c800  ti_sysbios_BIOS_getThreadType__E                                      
    0084c820  ti_sysbios_BIOS_linkedWithIncorrectBootLibrary__E                     
    0084c840  ti_sysbios_BIOS_nullFunc__I                                           
    0084c860  ti_sysbios_BIOS_setThreadType__E                                      
    0084c880  ti_sysbios_BIOS_start__E                                              
    0084c8a0  ti_sysbios_family_c62_TaskSupport_Module__startupDone__S              
    0084c8c0  ti_sysbios_family_c64p_Hwi_Module__startupDone__S                     
    0084c8e0  ti_sysbios_family_c64p_Hwi_clearInterrupt__E                          
    0084c900  ti_sysbios_family_c64p_Hwi_getFunc__E                                 
    0084c920  ti_sysbios_family_c64p_Hwi_getHandle__E                               
    0084c940  ti_sysbios_family_c64p_Hwi_startup__E                                 
    0084c960  ti_sysbios_family_c64p_Hwi_switchFromBootStack__E                     
    0084c980  ti_sysbios_family_c64p_Hwi_unPluggedInterrupt__I                      
    0084c9a0  ti_sysbios_family_c64p_TimestampProvider_Module_startup__E            
    0084c9c0  ti_sysbios_family_c64p_TimestampProvider_get32__E                     
    0084c9e0  ti_sysbios_family_c64p_tci6488_TimerSupport_enable__E                 
    0084ca00  ti_sysbios_family_c66_Cache_RTSSynchInv__I                            
    0084ca20  ti_sysbios_family_c66_Cache_RTSSynchWbInv__I                          
    0084ca40  ti_sysbios_family_c66_Cache_RTSSynchWb__I                             
    0084ca60  ti_sysbios_family_c66_Cache_wait__E                                   
    0084ca80  ti_sysbios_family_c66_Cache_wbInv__E                                  
    0084caa0  ti_sysbios_family_c66_tci66xx_CpIntc_clearSysInt__E                   
    0084cac0  ti_sysbios_family_c66_tci66xx_CpIntc_disableHostInt__E                
    0084cae0  ti_sysbios_family_c66_tci66xx_CpIntc_enableHostInt__E                 
    0084cb00  ti_sysbios_gates_GateHwi_Instance_init__E                             
    0084cb20  ti_sysbios_gates_GateHwi_enter__E                                     
    0084cb40  ti_sysbios_gates_GateHwi_leave__E                                     
    0084cb60  ti_sysbios_gates_GateHwi_query__E                                     
    0084cb80  ti_sysbios_gates_GateMutex_Instance_finalize__E                       
    0084cba0  ti_sysbios_gates_GateMutex_query__E                                   
    0084cbc0  ti_sysbios_hal_Hwi_HwiProxy_Module__startupDone__S                    
    0084cbe0  ti_sysbios_hal_Hwi_HwiProxy_clearInterrupt__E                         
    0084cbe0  ti_sysbios_hal_Hwi_clearInterrupt__E                                  
    0084cc00  ti_sysbios_hal_Hwi_HwiProxy_disableInterrupt__E                       
    0084cc00  ti_sysbios_hal_Hwi_disableInterrupt__E                                
    0084cc20  ti_sysbios_hal_Hwi_HwiProxy_enableInterrupt__E                        
    0084cc20  ti_sysbios_hal_Hwi_enableInterrupt__E                                 
    0084cc40  ti_sysbios_hal_Hwi_HwiProxy_startup__E                                
    0084cc40  ti_sysbios_hal_Hwi_startup__E                                         
    0084cc60  ti_sysbios_hal_Hwi_HwiProxy_switchFromBootStack__E                    
    0084cc60  ti_sysbios_hal_Hwi_switchFromBootStack__E                             
    0084cc80  ti_sysbios_hal_Hwi_Module_startup__E                                  
    0084cca0  ti_sysbios_heaps_HeapMem_Module_GateProxy_enter__E                    
    0084ccc0  ti_sysbios_heaps_HeapMem_Module_GateProxy_leave__E                    
    0084cce0  ti_sysbios_heaps_HeapMem_Module_GateProxy_query__E                    
    0084cd00  ti_sysbios_heaps_HeapMem_isBlocking__E                                
    0084cd20  ti_sysbios_knl_Clock_TimerProxy_Module__startupDone__S                
    0084cd40  ti_sysbios_knl_Clock_TimerProxy_getMaxTicks__E                        
    0084cd60  ti_sysbios_knl_Idle_loop__E                                           
    0084cd80  ti_sysbios_knl_Queue_Instance_init__E                                 
    0084cda0  ti_sysbios_knl_Queue_empty__E                                         
    0084cdc0  ti_sysbios_knl_Semaphore_Instance_finalize__E                         
    0084cde0  ti_sysbios_knl_Swi_disable__E                                         
    0084ce00  ti_sysbios_knl_Task_SupportProxy_Module__startupDone__S               
    0084ce20  ti_sysbios_knl_Task_SupportProxy_start__E                             
    0084ce40  ti_sysbios_knl_Task_SupportProxy_swap__E                              
    0084ce60  ti_sysbios_knl_Task_disable__E                                        
    0084ce80  ti_sysbios_knl_Task_startup__E                                        
    0084cea0  ti_sysbios_timers_timer64_Timer_Module__startupDone__S                
    0084cec0  ti_sysbios_timers_timer64_Timer_TimerSupportProxy_enable__E           
    0084cee0  ti_sysbios_timers_timer64_Timer_getMaxTicks__E                        
    0084cf00  ti_sysbios_utils_Load_update__E                                       
    0084cf20  ti_uia_loggers_LoggerStopMode_getContents__E                          
    0084cf40  ti_uia_loggers_LoggerStopMode_getFilterLevel__E                       
    0084cf60  ti_uia_loggers_LoggerStopMode_getInstanceId__E                        
    0084cf80  ti_uia_loggers_LoggerStopMode_getMaxLength__E                         
    0084cfa0  ti_uia_loggers_LoggerStopMode_getPriority__E                          
    0084cfc0  ti_uia_loggers_LoggerStopMode_getTransferType__E                      
    0084cfe0  ti_uia_loggers_LoggerStopMode_isEmpty__E                              
    0084d000  ti_uia_loggers_LoggerStopMode_setFilterLevel__E                       
    0084d020  ti_uia_loggers_LoggerStopMode_setPriority__E                          
    0084d060  xdc_runtime_Error_getSite__E                                          
    0084d080  xdc_runtime_Error_raiseX__E                                           
    0084d0a0  xdc_runtime_Gate_enterSystem__E                                       
    0084d0c0  xdc_runtime_Gate_leaveSystem__E                                       
    0084d0e0  xdc_runtime_Memory_HeapProxy_alloc__E                                 
    0084d100  xdc_runtime_Memory_HeapProxy_free__E                                  
    0084d120  xdc_runtime_Memory_calloc__E                                          
    0084d140  xdc_runtime_Memory_free__E                                            
    0084d160  xdc_runtime_Memory_getMaxDefaultTypeAlign__E                          
    0084d180  xdc_runtime_Startup_reset__I                                          
    0084d1a0  xdc_runtime_Startup_rtsDone__E                                        
    0084d1c0  xdc_runtime_SysStd_exit__E                                            
    0084d1e0  xdc_runtime_SysStd_putch__E                                           
    0084d200  xdc_runtime_SysStd_ready__E                                           
    0084d220  xdc_runtime_System_Module_GateProxy_enter__E                          
    0084d240  xdc_runtime_System_Module_GateProxy_leave__E                          
    0084d260  xdc_runtime_System_Module_startup__E                                  
    0084d280  xdc_runtime_System_SupportProxy_abort__E                              
    0084d2a0  xdc_runtime_System_SupportProxy_exit__E                               
    0084d2c0  xdc_runtime_System_SupportProxy_putch__E                              
    0084d2e0  xdc_runtime_System_SupportProxy_ready__E                              
    0084d300  xdc_runtime_System_snprintf_va__F                                     
    0084d300  xdc_runtime_System_vsnprintf__E                                       
    0084d320  xdc_runtime_Text_ropeText__E                                          
    0084d340  xdc_runtime_Timestamp_SupportProxy_get32__E                           
    0084d340  xdc_runtime_Timestamp_get32__E                                        
    0084d360  xdc_runtime_Timestamp_SupportProxy_getFreq__E                         
    0084d360  xdc_runtime_Timestamp_getFreq__E                                      
    0084d380  xdc_runtime_Text_charTab__A                                           
    0084f461  ti_sysbios_timers_timer64_Timer_localTimerBaseId__C                   
    0084f462  ti_sysbios_family_c64p_EventCombiner_Module__id__C                    
    0084f980  ti_sysbios_family_c66_Cache_marvalues__C                              
    0084fd80  ti_sysbios_family_c66_tci66xx_CpIntc_sysIntToHostInt__A               
    0084ff20  xdc_runtime_Text_nodeTab__A                                           
    00850064  ti_sysbios_BIOS_installedErrorHook__C                                 
    00850068  _ctypes_                                                              
    0085016a  ti_sysbios_family_c64p_Exception_Module__id__C                        
    008502c8  ti_uia_loggers_LoggerStopMode_Module__FXNS__C                         
    00850380  pscConfigs                                                            
    00850410  UART_defaultParams                                                    
    00850450  xdc_runtime_Startup_sfxnTab__A                                        
    00850488  UART_FxnTable_v0                                                      
    008504b8  ti_sysbios_family_c64p_Hwi_Object__PARAMS__C                          
    008504e8  ti_uia_loggers_LoggerStopMode_Object__PARAMS__C                       
    00850544  ti_sysbios_family_c64p_EventCombiner_A_invalidEventId__C              
    00850570  I2C_defaultTransaction                                                
    00850598  ti_sysbios_heaps_HeapMem_Module__FXNS__C                              
    008505e4  ti_sysbios_family_c64p_EventCombiner_E_unpluggedEvent__C              
    008505e8  Board_ext_clk                                                         
    0085060c  ti_sysbios_gates_GateHwi_Module__FXNS__C                              
    00850630  ti_sysbios_gates_GateMutex_Module__FXNS__C                            
    00850654  ti_sysbios_heaps_HeapMem_Object__PARAMS__C                            
    00850678  ti_sysbios_knl_Semaphore_Object__PARAMS__C                            
    008506bc  ti_sysbios_family_c64p_EventCombiner_Module__diagsEnabled__C          
    008506c0  keystonePllcRegs                                                      
    008506e0  pllcConfigs                                                           
    00850700  ti_sysbios_family_c64p_Hwi_Object__DESC__C                            
    00850720  ti_sysbios_gates_GateHwi_Object__DESC__C                              
    00850740  ti_sysbios_gates_GateMutex_Object__DESC__C                            
    00850760  ti_sysbios_heaps_HeapMem_Object__DESC__C                              
    00850780  ti_sysbios_knl_Queue_Object__DESC__C                                  
    008507a0  ti_sysbios_knl_Semaphore_Object__DESC__C                              
    008507c0  ti_uia_loggers_LoggerStopMode_Object__DESC__C                         
    008507fc  ti_sysbios_family_c64p_EventCombiner_Module__diagsIncluded__C         
    00850800  xdc_runtime_Startup_sfxnRts__A                                        
    0085084c  ti_sysbios_gates_GateHwi_Object__PARAMS__C                            
    00850864  ti_sysbios_gates_GateMutex_Object__PARAMS__C                          
    0085087c  ti_sysbios_knl_Queue_Object__PARAMS__C                                
    00850894  ti_sysbios_family_c64p_EventCombiner_Module__diagsMask__C             
    00850898  ti_sysbios_knl_Task_hooks__A                                          
    008508b0  I2C_v0_FxnTable                                                       
    008508c4  ti_sysbios_family_c64p_Exception_E_exceptionMax__C                    
    008508c8  ti_sysbios_family_c66_tci66xx_CpIntc_eventId__A                       
    008508dc  ti_sysbios_family_c64p_Exception_exceptionHook__C                     
    008508e0  ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_0__A            
    008508f4  ti_sysbios_family_c64p_Exception_externalHook__C                      
    008508f8  ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId_1__A            
    0085091c  I2C_defaultParams                                                     
    0085092c  ti_sysbios_family_c64p_Exception_internalHook__C                      
    00850930  ti_sysbios_family_c64p_EventCombiner_EVTMASK__C                       
    0085094c  ti_sysbios_family_c64p_Exception_nmiHook__C                           
    0085095a  ti_sysbios_family_c64p_Exception_useInternalBuffer__C                 
    0085095c  ti_sysbios_family_c64p_Hwi_E_alreadyDefined__C                        
    00850960  ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId__A              
    00850968  ti_sysbios_knl_Idle_funcList__A                                       
    00850970  ti_sysbios_knl_Idle_funcList__C                                       
    00850978  ti_sysbios_knl_Task_hooks__C                                          
    00850980  xdc_runtime_Startup_firstFxns__A                                      
    00850988  xdc_runtime_Startup_firstFxns__C                                      
    00850990  xdc_runtime_Startup_lastFxns__C                                       
    00850998  ti_sysbios_family_c64p_Hwi_E_handleNotFound__C                        
    0085099c  ti_sysbios_family_c64p_Hwi_E_invalidIntNum__C                         
    008509a0  ti_sysbios_family_c64p_Hwi_LD_end__C                                  
    008509a4  ti_sysbios_family_c64p_Hwi_LM_begin__C                                
    008509a8  ti_sysbios_family_c64p_Hwi_Module__diagsEnabled__C                    
    008509ac  ti_sysbios_family_c64p_Hwi_Module__diagsIncluded__C                   
    008509b0  ti_sysbios_family_c64p_Hwi_Module__diagsMask__C                       
    008509b4  ti_sysbios_family_c64p_Hwi_Module__loggerFxn1__C                      
    008509b8  ti_sysbios_family_c64p_Hwi_Module__loggerFxn8__C                      
    008509bc  ti_sysbios_family_c64p_Hwi_Module__loggerObj__C                       
    008509c0  ti_sysbios_family_c66_Cache_E_invalidL1CacheSize__C                   
    008509c4  ti_sysbios_family_c66_Cache_E_invalidL2CacheSize__C                   
    008509c8  ti_sysbios_family_c66_Cache_atomicBlockSize__C                        
    008509cc  ti_sysbios_family_c66_tci66xx_CpIntc_E_unpluggedSysInt__C             
    008509d0  ti_sysbios_family_c66_tci66xx_CpIntc_eventId__C                       
    008509d4  ti_sysbios_family_c66_tci66xx_CpIntc_hostIntToEventId__C              
    008509d8  ti_sysbios_family_c66_tci66xx_CpIntc_numEvents__C                     
    008509dc  ti_sysbios_family_c66_tci66xx_CpIntc_numStatusRegs__C                 
    008509e0  ti_sysbios_family_c66_tci66xx_CpIntc_numSysInts__C                    
    008509e4  ti_sysbios_family_c66_tci66xx_CpIntc_sysIntToHostInt__C               
    008509e8  ti_sysbios_gates_GateMutex_A_badContext__C                            
    008509ec  ti_sysbios_gates_GateMutex_Instance_State_sem__O                      
    008509f0  ti_sysbios_gates_GateMutex_Module__diagsEnabled__C                    
    008509f4  ti_sysbios_gates_GateMutex_Module__diagsIncluded__C                   
    008509f8  ti_sysbios_gates_GateMutex_Module__diagsMask__C                       
    008509fc  ti_sysbios_hal_Hwi_E_stackOverflow__C                                 
    00850a00  ti_sysbios_heaps_HeapBuf_Instance_State_freeList__O                   
    00850a04  ti_sysbios_heaps_HeapBuf_Object__count__C                             
    00850a08  ti_sysbios_heaps_HeapBuf_numConstructedHeaps__C                       
    00850a0c  ti_sysbios_heaps_HeapMem_A_align__C                                   
    00850a10  ti_sysbios_heaps_HeapMem_A_heapSize__C                                
    00850a14  ti_sysbios_heaps_HeapMem_A_invalidFree__C                             
    00850a18  ti_sysbios_heaps_HeapMem_A_zeroBlock__C                               
    00850a1c  ti_sysbios_heaps_HeapMem_E_memory__C                                  
    00850a20  ti_sysbios_heaps_HeapMem_Module__diagsEnabled__C                      
    00850a24  ti_sysbios_heaps_HeapMem_Module__diagsIncluded__C                     
    00850a28  ti_sysbios_heaps_HeapMem_Module__diagsMask__C                         
    00850a2c  ti_sysbios_heaps_HeapMem_Module__gateObj__C                           
    00850a30  ti_sysbios_heaps_HeapMem_Object__count__C                             
    00850a34  ti_sysbios_heaps_HeapMem_Object__table__C                             
    00850a38  ti_sysbios_heaps_HeapMem_reqAlign__C                                  
    00850a3c  ti_sysbios_knl_Clock_LM_begin__C                                      
    00850a40  ti_sysbios_knl_Clock_LM_tick__C                                       
    00850a44  ti_sysbios_knl_Clock_LW_delayed__C                                    
    00850a48  ti_sysbios_knl_Clock_Module_State_clockQ__O                           
    00850a4c  ti_sysbios_knl_Clock_Module__diagsEnabled__C                          
    00850a50  ti_sysbios_knl_Clock_Module__diagsIncluded__C                         
    00850a54  ti_sysbios_knl_Clock_Module__diagsMask__C                             
    00850a58  ti_sysbios_knl_Clock_Module__loggerFxn1__C                            
    00850a5c  ti_sysbios_knl_Clock_Module__loggerFxn2__C                            
    00850a60  ti_sysbios_knl_Clock_Module__loggerObj__C                             
    00850a64  ti_sysbios_knl_Semaphore_A_badContext__C                              
    00850a68  ti_sysbios_knl_Semaphore_A_noEvents__C                                
    00850a6c  ti_sysbios_knl_Semaphore_A_overflow__C                                
    00850a70  ti_sysbios_knl_Semaphore_A_pendTaskDisabled__C                        
    00850a74  ti_sysbios_knl_Semaphore_Instance_State_pendQ__O                      
    00850a78  ti_sysbios_knl_Semaphore_LM_pend__C                                   
    00850a7c  ti_sysbios_knl_Semaphore_LM_post__C                                   
    00850a80  ti_sysbios_knl_Semaphore_Module__diagsEnabled__C                      
    00850a84  ti_sysbios_knl_Semaphore_Module__diagsIncluded__C                     
    00850a88  ti_sysbios_knl_Semaphore_Module__diagsMask__C                         
    00850a8c  ti_sysbios_knl_Semaphore_Module__loggerFxn2__C                        
    00850a90  ti_sysbios_knl_Semaphore_Module__loggerFxn4__C                        
    00850a94  ti_sysbios_knl_Semaphore_Module__loggerObj__C                         
    00850a98  ti_sysbios_knl_Swi_LD_end__C                                          
    00850a9c  ti_sysbios_knl_Swi_LM_begin__C                                        
    00850aa0  ti_sysbios_knl_Swi_LM_post__C                                         
    00850aa4  ti_sysbios_knl_Swi_Module__diagsEnabled__C                            
    00850aa8  ti_sysbios_knl_Swi_Module__diagsIncluded__C                           
    00850aac  ti_sysbios_knl_Swi_Module__diagsMask__C                               
    00850ab0  ti_sysbios_knl_Swi_Module__loggerFxn1__C                              
    00850ab4  ti_sysbios_knl_Swi_Module__loggerFxn4__C                              
    00850ab8  ti_sysbios_knl_Swi_Module__loggerObj__C                               
    00850abc  ti_sysbios_knl_Swi_Object__count__C                                   
    00850ac0  ti_sysbios_knl_Swi_Object__table__C                                   
    00850ac4  ti_sysbios_knl_Task_A_badTimeout__C                                   
    00850ac8  ti_sysbios_knl_Task_A_sleepTaskDisabled__C                            
    00850acc  ti_sysbios_knl_Task_LD_block__C                                       
    00850ad0  ti_sysbios_knl_Task_LD_exit__C                                        
    00850ad4  ti_sysbios_knl_Task_LD_ready__C                                       
    00850ad8  ti_sysbios_knl_Task_LM_sleep__C                                       
    00850adc  ti_sysbios_knl_Task_LM_switch__C                                      
    00850ae0  ti_sysbios_knl_Task_Module_State_inactiveQ__O                         
    00850ae4  ti_sysbios_knl_Task_Module__diagsEnabled__C                           
    00850ae8  ti_sysbios_knl_Task_Module__diagsIncluded__C                          
    00850aec  ti_sysbios_knl_Task_Module__diagsMask__C                              
    00850af0  ti_sysbios_knl_Task_Module__loggerFxn2__C                             
    00850af4  ti_sysbios_knl_Task_Module__loggerFxn4__C                             
    00850af8  ti_sysbios_knl_Task_Module__loggerObj__C                              
    00850afc  ti_sysbios_knl_Task_Object__count__C                                  
    00850b00  ti_sysbios_knl_Task_Object__table__C                                  
    00850b04  ti_sysbios_knl_Task_allBlockedFunc__C                                 
    00850b08  ti_sysbios_knl_Task_numConstructedTasks__C                            
    00850b0c  ti_sysbios_timers_timer64_Timer_A_notAvailable__C                     
    00850b10  ti_sysbios_timers_timer64_Timer_E_cannotSupport__C                    
    00850b14  ti_sysbios_timers_timer64_Timer_Module__diagsEnabled__C               
    00850b18  ti_sysbios_timers_timer64_Timer_Module__diagsIncluded__C              
    00850b1c  ti_sysbios_timers_timer64_Timer_Module__diagsMask__C                  
    00850b20  ti_sysbios_timers_timer64_Timer_anyMaskHigh__C                        
    00850b24  ti_sysbios_timers_timer64_Timer_anyMask__C                            
    00850b28  ti_sysbios_timers_timer64_Timer_freqDivisor__C                        
    00850b2c  ti_sysbios_timers_timer64_Timer_numLocalTimers__C                     
    00850b30  ti_sysbios_timers_timer64_Timer_numTimerDevices__C                    
    00850b34  ti_sysbios_utils_Load_LS_cpuLoad__C                                   
    00850b38  ti_sysbios_utils_Load_Module__diagsEnabled__C                         
    00850b3c  ti_sysbios_utils_Load_Module__diagsIncluded__C                        
    00850b40  ti_sysbios_utils_Load_Module__diagsMask__C                            
    00850b44  ti_sysbios_utils_Load_Module__loggerFxn1__C                           
    00850b48  ti_sysbios_utils_Load_Module__loggerObj__C                            
    00850b4c  ti_sysbios_utils_Load_postUpdate__C                                   
    00850b50  ti_sysbios_utils_Load_windowInMs__C                                   
    00850b54  ti_uia_loggers_LoggerStopMode_Module__diagsEnabled__C                 
    00850b58  ti_uia_loggers_LoggerStopMode_Module__diagsIncluded__C                
    00850b5c  ti_uia_loggers_LoggerStopMode_Module__diagsMask__C                    
    00850b60  ti_uia_loggers_LoggerStopMode_Object__count__C                        
    00850b64  ti_uia_loggers_LoggerStopMode_Object__table__C                        
    00850b68  ti_uia_loggers_LoggerStopMode_numCores__C                             
    00850b6c  ti_uia_runtime_ILoggerSnapshot_Interface__BASE__C                     
    00850b70  ti_uia_runtime_IUIATransfer_Interface__BASE__C                        
    00850b74  xdc_runtime_Assert_E_assertFailed__C                                  
    00850b78  xdc_runtime_Core_A_initializedParams__C                               
    00850b7c  xdc_runtime_Core_Module__diagsEnabled__C                              
    00850b80  xdc_runtime_Core_Module__diagsIncluded__C                             
    00850b84  xdc_runtime_Core_Module__diagsMask__C                                 
    00850b88  xdc_runtime_Error_E_memory__C                                         
    00850b8c  xdc_runtime_Error_Module__diagsEnabled__C                             
    00850b90  xdc_runtime_Error_Module__diagsIncluded__C                            
    00850b94  xdc_runtime_Error_Module__diagsMask__C                                
    00850b98  xdc_runtime_Error_Module__loggerFxn8__C                               
    00850b9c  xdc_runtime_Error_Module__loggerObj__C                                
    00850ba0  xdc_runtime_Error_policyFxn__C                                        
    00850ba4  xdc_runtime_Error_policy__C                                           
    00850ba8  xdc_runtime_Error_raiseHook__C                                        
    00850bac  xdc_runtime_IFilterLogger_Interface__BASE__C                          
    00850bb0  xdc_runtime_IGateProvider_Interface__BASE__C                          
    00850bb4  xdc_runtime_IHeap_Interface__BASE__C                                  
    00850bb8  xdc_runtime_ILogger_Interface__BASE__C                                
    00850bbc  xdc_runtime_IModule_Interface__BASE__C                                
    00850bc0  xdc_runtime_Log_L_error__C                                            
    00850bc4  xdc_runtime_Main_Module__diagsEnabled__C                              
    00850bc8  xdc_runtime_Main_Module__diagsIncluded__C                             
    00850bcc  xdc_runtime_Main_Module__diagsMask__C                                 
    00850bd0  xdc_runtime_Memory_defaultHeapInstance__C                             
    00850bd4  xdc_runtime_Startup_execImpl__C                                       
    00850bd8  xdc_runtime_Startup_maxPasses__C                                      
    00850bdc  xdc_runtime_Startup_sfxnRts__C                                        
    00850be0  xdc_runtime_Startup_sfxnTab__C                                        
    00850be4  xdc_runtime_Startup_startModsFxn__C                                   
    00850be8  xdc_runtime_System_Module__gateObj__C                                 
    00850bec  xdc_runtime_System_abortFxn__C                                        
    00850bf0  xdc_runtime_System_exitFxn__C                                         
    00850bf4  xdc_runtime_System_extendFxn__C                                       
    00850bf8  xdc_runtime_System_maxAtexitHandlers__C                               
    00850bfc  xdc_runtime_Text_charTab__C                                           
    00850c00  xdc_runtime_Text_nameEmpty__C                                         
    00850c04  xdc_runtime_Text_nameStatic__C                                        
    00850c08  xdc_runtime_Text_nameUnknown__C                                       
    00850c0c  xdc_runtime_Text_nodeTab__C                                           
    00850c10  xdc_runtime_Text_visitRopeFxn__C                                      
    00850c14  ti_sysbios_family_c64p_Hwi_Module__id__C                              
    00850c16  ti_sysbios_family_c64p_Hwi_Module__loggerDefined__C                   
    00850c18  ti_sysbios_family_c66_Cache_Module__id__C                             
    00850c1a  ti_sysbios_family_c66_Cache_registerRTSSynch__C                       
    00850c1c  ti_sysbios_family_c66_tci66xx_CpIntc_Module__id__C                    
    00850c1e  ti_sysbios_gates_GateMutex_Module__id__C                              
    00850c20  ti_sysbios_hal_Hwi_Module__id__C                                      
    00850c22  ti_sysbios_heaps_HeapMem_Module__id__C                                
    00850c24  ti_sysbios_knl_Clock_Module__id__C                                    
    00850c26  ti_sysbios_knl_Clock_Module__loggerDefined__C                         
    00850c28  ti_sysbios_knl_Semaphore_Module__id__C                                
    00850c2a  ti_sysbios_knl_Semaphore_Module__loggerDefined__C                     
    00850c2c  ti_sysbios_knl_Swi_Module__id__C                                      
    00850c2e  ti_sysbios_knl_Swi_Module__loggerDefined__C                           
    00850c30  ti_sysbios_knl_Task_Module__id__C                                     
    00850c32  ti_sysbios_knl_Task_Module__loggerDefined__C                          
    00850c34  ti_sysbios_timers_timer64_Timer_Module__id__C                         
    00850c36  ti_sysbios_timers_timer64_Timer_startupNeeded__C                      
    00850c38  ti_sysbios_timers_timer64_Timer_useTimer64pRegMap__C                  
    00850c3a  ti_sysbios_utils_Load_Module__id__C                                   
    00850c3c  ti_sysbios_utils_Load_Module__loggerDefined__C                        
    00850c3e  ti_sysbios_utils_Load_updateInIdle__C                                 
    00850c40  ti_uia_loggers_LoggerStopMode_Module__id__C                           
    00850c42  ti_uia_loggers_LoggerStopMode_isTimestampEnabled__C                   
    00850c44  xdc_runtime_Core_Module__id__C                                        
    00850c46  xdc_runtime_Error_Module__loggerDefined__C                            
    00850c48  xdc_runtime_Error_maxDepth__C                                         
    00850c4a  xdc_runtime_Main_Module__id__C                                        
    00850c4c  xdc_runtime_Memory_Module__id__C                                      
    00850c4e  xdc_runtime_Text_charCnt__C                                           
    00850c50  xdc_runtime_Text_isLoaded__C                                          
    00850c52  xdc_runtime_Text_registryModsLastId__C                                
    00850c54  xdc_runtime_Text_unnamedModsLastId__C                                 
    00850c58  UART_config                                                           
    00850c7c  _lock                                                                 
    00850c80  ti_sysbios_knl_Task_Instance_State_0_stack__A                         
    00851c80  ti_sysbios_knl_Task_Instance_State_1_stack__A                         
    008534c0  parmbuf                                                               
    008534c8  ti_sysbios_knl_Task_Instance_State_0_hookEnv__A                       
    008534d0  ti_sysbios_knl_Task_Instance_State_1_hookEnv__A                       
    008534d8  ti_sysbios_BIOS_Module__state__V                                      
    008534fc  _unlock                                                               
    00853500  ti_uia_loggers_LoggerStopMode_Instance_State_1_packetArray__A         
    00853900  ti_uia_loggers_LoggerStopMode_Instance_State_2_packetArray__A         
    00853d00  ti_uia_loggers_LoggerStopMode_Instance_State_0_packetArray__A         
    00853f00  UartObjects                                                           
    00854058  __TI_tmpnams                                                          
    00854198  I2cObjects                                                            
    008541e8  ti_sysbios_family_c64p_Hwi_Object__table__V                           
    00854200  ti_uia_loggers_LoggerStopMode_Instance_State_0_hdr__A                 
    00854230  ti_sysbios_timers_timer64_Timer_Object__table__V                      
    00854280  ti_uia_loggers_LoggerStopMode_Instance_State_1_hdr__A                 
    008542b0  i2cInitCfg                                                            
    008542f8  ti_sysbios_family_c64p_Hwi_Module__root__V                            
    00854300  ti_uia_loggers_LoggerStopMode_Instance_State_2_hdr__A                 
    00854330  ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_dispatchTab__A    
    008549b0  ti_sysbios_family_c64p_EventCombiner_Module__state__V                 
    00854db0  _ftable                                                               
    00854f90  uartInitCfg                                                           
    0085508c  __TI_ft_end                                                           
    00855090  I2c_tests                                                             
    00855150  ti_sysbios_timers_timer64_Timer_Module_State_0_device__A              
    00855210  ti_sysbios_knl_Task_Object__table__V                                  
    008552c8  I2C_config                                                            
    00855370  _stream                                                               
    00855410  ti_uia_loggers_LoggerStopMode_Object__table__V                        
    008554ac  ti_sysbios_utils_Load_Module__state__V                                
    00855544  __errno                                                               
    00855544  errno                                                                 
    00855548  ti_sysbios_knl_Swi_Module_State_0_readyQ__A                           
    008555c8  _device                                                               
    00855640  ti_sysbios_family_c64p_Hwi_Module__state__V                           
    008556ac  ti_sysbios_heaps_HeapBuf_Module__state__V                             
    008556b0  ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_hostIntToSysInt__A
    00855710  ti_sysbios_knl_Task_Module__state__V                                  
    00855758  ti_sysbios_gates_GateMutex_Object__table__V                           
    00855798  ti_sysbios_timers_timer64_Timer_Module_State_0_gctrl__A               
    008557d8  ti_sysbios_timers_timer64_Timer_Module_State_0_handles__A             
    00855818  ti_sysbios_timers_timer64_Timer_Module_State_0_intFreqs__A            
    00855858  gOsal_HwAttrs                                                         
    00855888  ti_sysbios_family_c64p_Exception_Module__state__V                     
    008558b8  ti_sysbios_knl_Swi_Object__table__V                                   
    008558e8  ti_sysbios_knl_Clock_Module__state__V                                 
    00855914  xdc_runtime_Memory_Module__state__V                                   
    00855918  ti_sysbios_knl_Task_Module_State_0_readyQ__A                          
    00855938  xdc_runtime_Error_IgnoreBlock                                         
    00855958  xdc_runtime_System_Module_State_0_atexitHandlers__A                   
    00855978  ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_initSIER__A       
    00855994  ti_sysbios_knl_Swi_Module__state__V                                   
    008559b0  ti_sysbios_heaps_HeapMem_Object__table__V                             
    008559c8  ti_sysbios_timers_timer64_Timer_Module__state__V                      
    008559e0  ti_sysbios_family_c66_tci66xx_CpIntc_Module__state__V                 
    008559f0  __TI_cleanup_ptr                                                      
    008559f4  __TI_dtors_ptr                                                        
    008559f8  __TI_enable_exit_profile_output                                       
    008559fc  xdc_runtime_Error_Module__state__V                                    
    008559fe  xdc_runtime_Main_Module__root__V                                      
    00855a00  ti_sysbios_family_c66_tci66xx_CpIntc_Module_State_0_controller__A     
    00855a0c  ti_sysbios_knl_Task_Module__root__V                                   
    00855a18  ti_uia_runtime_QueueDescriptor_Module__state__V                       
    00855a28  eepromData                                                            
    00855a34  ti_sysbios_gates_GateHwi_Module__root__V                              
    00855a3c  ti_sysbios_gates_GateMutex_Module__root__V                            
    00855a48  ti_sysbios_hal_Hwi_Object__table__V                                   
    00855a50  ti_sysbios_heaps_HeapMem_Module__root__V                              
    00855a58  ti_sysbios_knl_Queue_Module__root__V                                  
    00855a60  ti_sysbios_knl_Semaphore_Module__root__V                              
    00855a68  ti_uia_loggers_LoggerStopMode_Module__root__V                         
    00855a70  uart_stdio                                                            
    00855a78  xdc_runtime_Registry_Module__state__V                                 
    00855a80  xdc_runtime_Startup_Module__state__V                                  
    00855a88  xdc_runtime_System_Module__state__V                                   
    00855a90  ti_sysbios_gates_GateHwi_Object__table__V                             
    00855a98  ti_sysbios_knl_Task_Module_State_0_idleTask__A                        
    00855aa0  ti_sysbios_utils_Load_Module_State_0_runningTask__A                   
    00855aa8  ti_sysbios_utils_Load_Module_State_0_taskStartTime__A                 
    00855ab0  _stack                                                                
    00856ab0  __CIOBUF_                                                             
    00856ab0  __TI_STACK_END                                                        
    00856c00  ti_sysbios_family_c64p_Hwi0                                           
    00856c00  ti_sysbios_family_c64p_Hwi_int0                                       
    00856c20  ti_sysbios_family_c64p_Hwi_int1                                       
    00856c40  ti_sysbios_family_c64p_Hwi_int2                                       
    00856c60  ti_sysbios_family_c64p_Hwi_int3                                       
    00856c80  ti_sysbios_family_c64p_Hwi_int4                                       
    00856ca0  ti_sysbios_family_c64p_Hwi_int5                                       
    00856cc0  ti_sysbios_family_c64p_Hwi_int6                                       
    00856ce0  ti_sysbios_family_c64p_Hwi_int7                                       
    00856d00  ti_sysbios_family_c64p_Hwi_int8                                       
    00856d20  ti_sysbios_family_c64p_Hwi_int9                                       
    00856d40  ti_sysbios_family_c64p_Hwi_int10                                      
    00856d60  ti_sysbios_family_c64p_Hwi_int11                                      
    00856d80  ti_sysbios_family_c64p_Hwi_int12                                      
    00856da0  ti_sysbios_family_c64p_Hwi_int13                                      
    00856dc0  ti_sysbios_family_c64p_Hwi_int14                                      
    00856de0  ti_sysbios_family_c64p_Hwi_int15                                      
    00856e64  CurrentTaskHookSetId                                                  
    00856e64  __TI_STATIC_BASE                                                      
    00856e68  MaxTaskHookSetId                                                      
    00856e6c  pElemLog                                                              
    00856e70  gOsalSemAllocCnt                                                      
    00856e74  gOsalSemPeak                                                          
    00856e78  gOsalTimerAllocCnt                                                    
    00856e7c  gOsalTimerPeak                                                        
    00856e80  gOsalHwiAllocCnt                                                      
    00856e84  gOsalHwiPeak                                                          
    00856e88  log_idx                                                               
    00856e8c  waddress                                                              
    00856e90  lvl                                                                   
    00856e94  ti_uia_runtime_QueueDescriptor_gPtrToFirstDescriptor                  
    00856e98  ti_uia_runtime_QueueDescriptor_gUpdateCount                           
    00857f5c  __TI_Handler_Table_Base                                               
    00857f64  __TI_Handler_Table_Limit                                              
    00857f68  __TI_CINIT_Base                                                       
    00857fe0  __TI_CINIT_Limit                                                      
    80000000  elemlog                                                               
    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                                                  
    UNDEFED   __TI_TLS_INIT_Base                                                    
    UNDEFED   __TI_TLS_INIT_Limit                                                   
    
    [878 symbols]
    

    Regards

    Shankari G

  • Hi Shankari,

    Sorry if I didn't make myself clear but I wasn't asking how to make a map file, I was asking for the map file of the default RBL which is programmed in the C6657. This is TI's code not mine. I have only the source code you provided but it's not enough to rebuild it.

    Regards,

    Emilie

  • Sorry if I didn't make myself clear but I wasn't asking how to make a map file, I was asking for the map file of the default RBL which is programmed in the C6657. This is TI's code not mine. I have only the source code you provided but it's not enough to rebuild it.

    I guess you mean, the maptool.py. For detailed info on the deployment of your image to boot from the RBL, Please refer the procedure given here.

    https://e2e.ti.com/support/processors-group/processors/f/processors-forum/430837/c6678-evm-how-to-boot-mad-image-directly-from-rbl-without-the-evm-s-ibl/1614992#1614992

    PS: The procedure is similar except that it is for C6678 device and yours is C6657

    Regards

    Shankari G

  • Hello,

    I would like the map file for the boot ROM or symbol table like in the following post except I need it for I2C not UART:

    https://e2e.ti.com/support/processors-group/processors/f/processors-forum/662159/tms320c6657-uart-boot-mode-problems/2443138?tisearch=e2e-sitesearch&keymatch=0x20B11B54#2443138

    Thanks

    Emilie

  • Emilie,

    As far as I know, RBL is proprietary. Only for reference, the source code will be provided with limited informations...

    Let me try to loop in the bootloader experts.

    Regards

    Shankari G

  • Hello,

    Did you get any answers from the bootloader experts?

    Regards,

    Emilie

  • Hello,

    Did you get any answers from the bootloader experts?

    Regards,

    Emilie

  • Emilie,

    I have looped them directly in your post.

    The Bootloader experts might post directly here, if they have any pointers.

    Regards

    Shankari G

  • EMilie,

    I was answered that ROM code could be found only here for C6657:   https://software-dl.ti.com/sdoemb/sdoemb_public_sw/rbl/1_0_C6657/index_FDS.html

    And for security reasons, few codes were purposely removed.

    --

    If you need any further clarification, please post here. We will be able to clarify them.

    Regards

    Shankari G