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.

Compiler/PGA900: PGA900

Part Number: PGA900


Tool/software: TI C/C++ Compiler

Hi,

is there a way to translate the pag900_boot.asm to the IAR Workbench?

My IAR Workbench won´t compile this file because it don´t know the  .if __TI_ARM_V7M__ | __TI_ARM_V6M0__ statement and a lot of other statements

  • Mario Schirmer said:
    is there a way to translate the pag900_boot.asm to the IAR Workbench?

    Unfortunately, I am not aware of any automated solution.

    Statements like ...

    Mario Schirmer said:
     .if __TI_ARM_V7M__ | __TI_ARM_V6M0__

    ... are directives.  Directives are specific to the assembler being used.  The directives in this file are documented in the TI ARM assembly tools manual.  Those symbols are documented in the sub-chapter titled Predefined Symbolic Constants.  To change these directives to those supported by the IAR assembler, you need to find similar documentation from IAR.

    Thanks and regards,

    -George

  • hi George,

    thanks for your very fast reply.