SLAA534A June 2013 – June 2020
This is the addressing mode typically used to make a function call. You can use immediate addressing to load the address of function "func" into R5.
MOV.W #func, R5 ; immediate
For MSP430/MSP430X with the small code model, the following CALL instruction uses immediate addressing and calls the function beginning at address "func".
CALL #func
For MSP430X with the large code model, the following CALLA instruction is equivalent to the previous CALL instruction.
CALLA #func