• Program counter
    I have couple of projects(bootloader @ 0x08000000 and application @ 0x081C00000, each output is converted to hex and packed as one Intel hex and flashed at 0x08000000. I wanted to change the program...
  • Program Counter update
    Note: This was originally posted on 15th June 2009 at http://forums.arm.com In the Architectural Reference Manual for ARMv7 the PC update is described such that it gets update with adding 8 to the current...
  • Cortext M3 Program Counter
    Note: This was originally posted on 21st March 2011 at http://forums.arm.com Hello all, I am using Cortex M3 (which support only Thumb-2 Instruction Set). I want to let the PC to jump to a particular...
  • Question about Program counter
    Note: This was originally posted on 1st October 2012 at http://forums.arm.com [size=2]Hey[/size] [size=2]Can someone please explain why instructions that modify the value of the PC (such as branches or...
  • Set program counter
    Hi, how can i set program counter from variable in C code? void func(void) { uint32_t XADDR; XADDR = __current_pc(); ... // need set PC from XADDR // msr pc, XADDR not compiled } Thanks...