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.

CCS/TMS320C6745: TMS320C6745

Part Number: TMS320C6745

Tool/software: Code Composer Studio

Hello ,
  What the address  (  ISTP  after  bootload)  of  allocation  of  Interrupt Table  for   tms320c6745 . 
  • Hi,

    Have a look at this discussion:
    e2e.ti.com/.../173625

    Best Regards,
    Yordan
  • Hi ,   you reference   e2e.ti.com/.../173625    is not  aided .   In general  i  write  a IVT  as segment  of  code , like this 

        .sect "ivt"
         ; .align 1024

    RESET: B Entry_Point          ;RESET [000h]
    NOP
    NOP
    NOP
    NOP
    NOP
    NOP
    NOP
    NOP
    NOP
    NOP
    NOP
    NMI: B NRP                ;NMI [020h]
    NOP
    NOP
    NOP
    NOP
    NOP
    NOP
    NOP
    NOP
    NOP
    NOP
    NOP
    Reserved0: B IRP              ; [040h] 4b/6c
    NOP
    NOP
    NOP
    NOP
    NOP
    NOP
    NOP
    NOP
    NOP
    NOP
    NOP
    Reserved1: B IRP              ; [060h]
    NOP

    ............  and next until  200h  by required . 

    And  i need  a real  address  for set  alignment  in memory by  set in Linker command file by MEMORY/SECTIONS directives.