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.

Linux/CC2650: Passing string in ASM

Part Number: CC2650

Tool/software: Linux

Hello everyone!

How could I pass a string in an ASM function?

I have this function which jumps to some address which I want to specify as parameter.

void jumpAddr(uint32_t address){
   asm(" MOV R0, #Here_address ");
}

How can I specify the address 10000 as a function parameter?