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?