I want to jump to the particular address, when I am using hard coded value it’s jumped there but when I am using marco instead of hard coded value. It’s giving error.
Hard Coded Value:
asm("mov #10000, PC");
It's working fine.
Using through Marco:
Where macro contains address
asm("mov APP_ISR_VECTOR_START_ADDR, PC");
apart from this i also want
asm("mov (APP_ISR_VECTOR_START_ADDR + RESERVED0_VECTOR), PC");
Please let me know how to do it.