Sorry, but there are no more tags available to filter with.
  • 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?