This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

MCB2100 and assembly program

Anyone can let me know where I can find assembly program for all the basic interface on MCB 2100 evaluation board.

Parents
  • No, your functions do not get compiled into both Arm and Thumb mode.

    The compiler can generate stub functions for making a Thumb function call an ARM function and reverse, but that is just adjustments to make the call work.

    If your flash is big enough, and you want the extra performance, you can compile all of your own code in ARM mode. The code will still need trunking to access Thumb-mode library functions.

Reply
  • No, your functions do not get compiled into both Arm and Thumb mode.

    The compiler can generate stub functions for making a Thumb function call an ARM function and reverse, but that is just adjustments to make the call work.

    If your flash is big enough, and you want the extra performance, you can compile all of your own code in ARM mode. The code will still need trunking to access Thumb-mode library functions.

Children