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.

How to specify an exact address for _c_int00 of F28035+SYSBIOS6 Project

Other Parts Discussed in Thread: SYSBIOS

Hi,

    My CCS Project is based on  F28035 MCU with SYSBIOS 6_33_05_46 , xdctools_3_23_03_53 , and CCS5.2.1.00018.

    I successfully specified an exact address for _c_int00 in non_BIOS project. by adding  this to CMD file:

   boot > 0x3E8000
   {
       -l rts2800_ml.lib<boot.obj>(.text)
   }

    Now I want to specify an exact address for _c_int00.

    I have read "Accessing c int00" and read other posts about _c_int00,then I did two things:

1)  add           SECTIONS            to CMD file.

                        {

                         .text:_c_int00 > 0x3E8000

                        }

2) Set "-mo" flag "on" in CCS5.

But the result is :fail

Why?How to specify an exact address for _c_int00 of F28035+SYSBIOS6 CCS5 Project?