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

How do I access void pointer in ARM Assembly?

How can I access the void pointer in C, using arm inline assembly. I want to get the address of the pointer. Something like this,

void* funcAddr;

__asm(

      "LDR r0, =funcAddr"

);

Is there any way to do this?