• 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
    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...
  • Program counter location
    Hi i got a problem.I am giving the program aswell as how the program looks in the disassembly window. Area copy, code , readonly ENTRY start LDR r1,=srcstr; pointer to the first string LDR...
  • 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...