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.

assembly programming

how can i start writing any c code(ex. IIR Filter) in assembly ?.... any beginners link? ant document,tutorial etc

  • You can have the compiler produce a mixed source/asm file or a .asm file.

    Then you will have the complete code in assembly.

    However, if what you are actually asking is: how can I learn to code in assembly?

    Then, the /help/ menu tab, then /utilites/ sub menu selection

    There are, available at TI, documents that describe the target DSP architecture and all the available instructions.

    The write good assembly language files, you will need to be very familiar with the architecture of the target processor as almost all assembly language instructions are manipulating the registers within that architecture OR making either load / shift / store references to L1, L2, or the internal or external address space.